diff --git a/.gitignore b/.gitignore
index 8e3e2975ef..3c2ae9b019 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,4 +1,3 @@
-dist
node_modules
src/.gitignore
src/package.json
diff --git a/dist/api.d.ts b/dist/api.d.ts
new file mode 100644
index 0000000000..c7ea5f90a3
--- /dev/null
+++ b/dist/api.d.ts
@@ -0,0 +1 @@
+export * from './gen/api';
diff --git a/dist/api.js b/dist/api.js
new file mode 100644
index 0000000000..61b4e14eb0
--- /dev/null
+++ b/dist/api.js
@@ -0,0 +1,5 @@
+"use strict";
+Object.defineProperty(exports, "__esModule", { value: true });
+const tslib_1 = require("tslib");
+tslib_1.__exportStar(require("./gen/api"), exports);
+//# sourceMappingURL=api.js.map
\ No newline at end of file
diff --git a/dist/api.js.map b/dist/api.js.map
new file mode 100644
index 0000000000..7ac126c016
--- /dev/null
+++ b/dist/api.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"api.js","sourceRoot":"","sources":["../src/api.ts"],"names":[],"mappings":";;;AAAA,oDAA0B"}
\ No newline at end of file
diff --git a/dist/attach.d.ts b/dist/attach.d.ts
new file mode 100644
index 0000000000..26c01e5172
--- /dev/null
+++ b/dist/attach.d.ts
@@ -0,0 +1,12 @@
+///
+///
+import WebSocket = require('isomorphic-ws');
+import stream = require('stream');
+import { KubeConfig } from './config';
+import { WebSocketInterface } from './web-socket-handler';
+export declare class Attach {
+ 'handler': WebSocketInterface;
+ private terminalSizeQueue?;
+ constructor(config: KubeConfig, websocketInterface?: WebSocketInterface);
+ attach(namespace: string, podName: string, containerName: string, stdout: stream.Writable | any, stderr: stream.Writable | any, stdin: stream.Readable | any, tty: boolean): Promise;
+}
diff --git a/dist/attach.js b/dist/attach.js
new file mode 100644
index 0000000000..ae10263ec8
--- /dev/null
+++ b/dist/attach.js
@@ -0,0 +1,39 @@
+"use strict";
+Object.defineProperty(exports, "__esModule", { value: true });
+const tslib_1 = require("tslib");
+const querystring = require("querystring");
+const terminal_size_queue_1 = require("./terminal-size-queue");
+const web_socket_handler_1 = require("./web-socket-handler");
+class Attach {
+ constructor(config, websocketInterface) {
+ this.handler = websocketInterface || new web_socket_handler_1.WebSocketHandler(config);
+ }
+ attach(namespace, podName, containerName, stdout, stderr, stdin, tty) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const query = {
+ container: containerName,
+ stderr: stderr != null,
+ stdin: stdin != null,
+ stdout: stdout != null,
+ tty,
+ };
+ const queryStr = querystring.stringify(query);
+ const path = `/api/v1/namespaces/${namespace}/pods/${podName}/attach?${queryStr}`;
+ const conn = yield this.handler.connect(path, null, (streamNum, buff) => {
+ web_socket_handler_1.WebSocketHandler.handleStandardStreams(streamNum, buff, stdout, stderr);
+ return true;
+ });
+ if (stdin != null) {
+ web_socket_handler_1.WebSocketHandler.handleStandardInput(conn, stdin, web_socket_handler_1.WebSocketHandler.StdinStream);
+ }
+ if (terminal_size_queue_1.isResizable(stdout)) {
+ this.terminalSizeQueue = new terminal_size_queue_1.TerminalSizeQueue();
+ web_socket_handler_1.WebSocketHandler.handleStandardInput(conn, this.terminalSizeQueue, web_socket_handler_1.WebSocketHandler.ResizeStream);
+ this.terminalSizeQueue.handleResizes(stdout);
+ }
+ return conn;
+ });
+ }
+}
+exports.Attach = Attach;
+//# sourceMappingURL=attach.js.map
\ No newline at end of file
diff --git a/dist/attach.js.map b/dist/attach.js.map
new file mode 100644
index 0000000000..625ee3c398
--- /dev/null
+++ b/dist/attach.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"attach.js","sourceRoot":"","sources":["../src/attach.ts"],"names":[],"mappings":";;;AACA,2CAA4C;AAI5C,+DAAwF;AACxF,6DAA4E;AAE5E,MAAa,MAAM;IAKf,YAAmB,MAAkB,EAAE,kBAAuC;QAC1E,IAAI,CAAC,OAAO,GAAG,kBAAkB,IAAI,IAAI,qCAAgB,CAAC,MAAM,CAAC,CAAC;IACtE,CAAC;IAEY,MAAM,CACf,SAAiB,EACjB,OAAe,EACf,aAAqB,EACrB,MAA6B,EAC7B,MAA6B,EAC7B,KAA4B,EAC5B,GAAY;;YAEZ,MAAM,KAAK,GAAG;gBACV,SAAS,EAAE,aAAa;gBACxB,MAAM,EAAE,MAAM,IAAI,IAAI;gBACtB,KAAK,EAAE,KAAK,IAAI,IAAI;gBACpB,MAAM,EAAE,MAAM,IAAI,IAAI;gBACtB,GAAG;aACN,CAAC;YACF,MAAM,QAAQ,GAAG,WAAW,CAAC,SAAS,CAAC,KAAK,CAAC,CAAC;YAC9C,MAAM,IAAI,GAAG,sBAAsB,SAAS,SAAS,OAAO,WAAW,QAAQ,EAAE,CAAC;YAClF,MAAM,IAAI,GAAG,MAAM,IAAI,CAAC,OAAO,CAAC,OAAO,CACnC,IAAI,EACJ,IAAI,EACJ,CAAC,SAAiB,EAAE,IAAY,EAAW,EAAE;gBACzC,qCAAgB,CAAC,qBAAqB,CAAC,SAAS,EAAE,IAAI,EAAE,MAAM,EAAE,MAAM,CAAC,CAAC;gBACxE,OAAO,IAAI,CAAC;YAChB,CAAC,CACJ,CAAC;YACF,IAAI,KAAK,IAAI,IAAI,EAAE;gBACf,qCAAgB,CAAC,mBAAmB,CAAC,IAAI,EAAE,KAAK,EAAE,qCAAgB,CAAC,WAAW,CAAC,CAAC;aACnF;YACD,IAAI,iCAAW,CAAC,MAAM,CAAC,EAAE;gBACrB,IAAI,CAAC,iBAAiB,GAAG,IAAI,uCAAiB,EAAE,CAAC;gBACjD,qCAAgB,CAAC,mBAAmB,CAAC,IAAI,EAAE,IAAI,CAAC,iBAAiB,EAAE,qCAAgB,CAAC,YAAY,CAAC,CAAC;gBAClG,IAAI,CAAC,iBAAiB,CAAC,aAAa,CAAE,MAAiC,CAAC,CAAC;aAC5E;YACD,OAAO,IAAI,CAAC;QAChB,CAAC;KAAA;CACJ;AA7CD,wBA6CC"}
\ No newline at end of file
diff --git a/dist/auth.d.ts b/dist/auth.d.ts
new file mode 100644
index 0000000000..18827288b7
--- /dev/null
+++ b/dist/auth.d.ts
@@ -0,0 +1,8 @@
+///
+import https = require('https');
+import request = require('request');
+import { User } from './config_types';
+export interface Authenticator {
+ isAuthProvider(user: User): boolean;
+ applyAuthentication(user: User, opts: request.Options | https.RequestOptions): Promise;
+}
diff --git a/dist/auth.js b/dist/auth.js
new file mode 100644
index 0000000000..1bf08174f7
--- /dev/null
+++ b/dist/auth.js
@@ -0,0 +1,3 @@
+"use strict";
+Object.defineProperty(exports, "__esModule", { value: true });
+//# sourceMappingURL=auth.js.map
\ No newline at end of file
diff --git a/dist/auth.js.map b/dist/auth.js.map
new file mode 100644
index 0000000000..db0341e950
--- /dev/null
+++ b/dist/auth.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"auth.js","sourceRoot":"","sources":["../src/auth.ts"],"names":[],"mappings":""}
\ No newline at end of file
diff --git a/dist/cache.d.ts b/dist/cache.d.ts
new file mode 100644
index 0000000000..1877361b01
--- /dev/null
+++ b/dist/cache.d.ts
@@ -0,0 +1,28 @@
+import { Informer, ListPromise, ObjectCallback } from './informer';
+import { KubernetesObject } from './types';
+import { Watch } from './watch';
+export interface ObjectCache {
+ get(name: string, namespace?: string): T | undefined;
+ list(namespace?: string): ReadonlyArray;
+}
+export declare class ListWatch implements ObjectCache, Informer {
+ private readonly path;
+ private readonly watch;
+ private readonly listFn;
+ private objects;
+ private readonly indexCache;
+ private readonly callbackCache;
+ constructor(path: string, watch: Watch, listFn: ListPromise, autoStart?: boolean);
+ start(): Promise;
+ on(verb: string, cb: ObjectCallback): void;
+ off(verb: string, cb: ObjectCallback): void;
+ get(name: string, namespace?: string): T | undefined;
+ list(namespace?: string | undefined): ReadonlyArray;
+ private doneHandler;
+ private addOrUpdateItems;
+ private indexObj;
+ private watchHandler;
+}
+export declare function deleteItems(oldObjects: T[], newObjects: T[], deleteCallback?: Array>): T[];
+export declare function addOrUpdateObject(objects: T[], obj: T, addCallback?: Array>, updateCallback?: Array>): void;
+export declare function deleteObject(objects: T[], obj: T, deleteCallback?: Array>): void;
diff --git a/dist/cache.js b/dist/cache.js
new file mode 100644
index 0000000000..2399c6da92
--- /dev/null
+++ b/dist/cache.js
@@ -0,0 +1,151 @@
+"use strict";
+Object.defineProperty(exports, "__esModule", { value: true });
+const tslib_1 = require("tslib");
+const informer_1 = require("./informer");
+class ListWatch {
+ constructor(path, watch, listFn, autoStart = true) {
+ this.path = path;
+ this.watch = watch;
+ this.listFn = listFn;
+ this.objects = [];
+ this.indexCache = {};
+ this.callbackCache = {};
+ this.watch = watch;
+ this.listFn = listFn;
+ this.callbackCache[informer_1.ADD] = [];
+ this.callbackCache[informer_1.UPDATE] = [];
+ this.callbackCache[informer_1.DELETE] = [];
+ if (autoStart) {
+ this.doneHandler(null);
+ }
+ }
+ start() {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ yield this.doneHandler(null);
+ });
+ }
+ on(verb, cb) {
+ if (this.callbackCache[verb] === undefined) {
+ throw new Error(`Unknown verb: ${verb}`);
+ }
+ this.callbackCache[verb].push(cb);
+ }
+ off(verb, cb) {
+ if (this.callbackCache[verb] === undefined) {
+ throw new Error(`Unknown verb: ${verb}`);
+ }
+ const indexToRemove = this.callbackCache[verb].findIndex((cachedCb) => cachedCb === cb);
+ if (indexToRemove === -1) {
+ return;
+ }
+ this.callbackCache[verb].splice(indexToRemove, 1);
+ }
+ get(name, namespace) {
+ return this.objects.find((obj) => {
+ return obj.metadata.name === name && (!namespace || obj.metadata.namespace === namespace);
+ });
+ }
+ list(namespace) {
+ if (!namespace) {
+ return this.objects;
+ }
+ return this.indexCache[namespace];
+ }
+ doneHandler(err) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const promise = this.listFn();
+ const result = yield promise;
+ const list = result.body;
+ deleteItems(this.objects, list.items, this.callbackCache[informer_1.DELETE].slice());
+ this.addOrUpdateItems(list.items);
+ this.watch.watch(this.path, { resourceVersion: list.metadata.resourceVersion }, this.watchHandler.bind(this), this.doneHandler.bind(this));
+ });
+ }
+ addOrUpdateItems(items) {
+ items.forEach((obj) => {
+ addOrUpdateObject(this.objects, obj, this.callbackCache[informer_1.ADD].slice(), this.callbackCache[informer_1.UPDATE].slice());
+ if (obj.metadata.namespace) {
+ this.indexObj(obj);
+ }
+ });
+ }
+ indexObj(obj) {
+ let namespaceList = this.indexCache[obj.metadata.namespace];
+ if (!namespaceList) {
+ namespaceList = [];
+ this.indexCache[obj.metadata.namespace] = namespaceList;
+ }
+ addOrUpdateObject(namespaceList, obj);
+ }
+ watchHandler(phase, obj) {
+ switch (phase) {
+ case 'ADDED':
+ case 'MODIFIED':
+ addOrUpdateObject(this.objects, obj, this.callbackCache[informer_1.ADD].slice(), this.callbackCache[informer_1.UPDATE].slice());
+ if (obj.metadata.namespace) {
+ this.indexObj(obj);
+ }
+ break;
+ case 'DELETED':
+ deleteObject(this.objects, obj, this.callbackCache[informer_1.DELETE].slice());
+ if (obj.metadata.namespace) {
+ const namespaceList = this.indexCache[obj.metadata.namespace];
+ if (namespaceList) {
+ deleteObject(namespaceList, obj);
+ }
+ }
+ break;
+ }
+ }
+}
+exports.ListWatch = ListWatch;
+// external for testing
+function deleteItems(oldObjects, newObjects, deleteCallback) {
+ return oldObjects.filter((obj) => {
+ if (findKubernetesObject(newObjects, obj) === -1) {
+ if (deleteCallback) {
+ deleteCallback.forEach((fn) => fn(obj));
+ }
+ return false;
+ }
+ return true;
+ });
+}
+exports.deleteItems = deleteItems;
+// Only public for testing.
+function addOrUpdateObject(objects, obj, addCallback, updateCallback) {
+ const ix = findKubernetesObject(objects, obj);
+ if (ix === -1) {
+ objects.push(obj);
+ if (addCallback) {
+ addCallback.forEach((elt) => elt(obj));
+ }
+ }
+ else {
+ objects[ix] = obj;
+ if (updateCallback) {
+ updateCallback.forEach((elt) => elt(obj));
+ }
+ }
+}
+exports.addOrUpdateObject = addOrUpdateObject;
+function isSameObject(o1, o2) {
+ return o1.metadata.name === o2.metadata.name && o1.metadata.namespace === o2.metadata.namespace;
+}
+function findKubernetesObject(objects, obj) {
+ return objects.findIndex((elt) => {
+ return isSameObject(elt, obj);
+ });
+}
+// Public for testing.
+function deleteObject(objects, obj, deleteCallback) {
+ const ix = findKubernetesObject(objects, obj);
+ if (ix !== -1) {
+ objects.splice(ix, 1);
+ if (deleteCallback) {
+ deleteCallback.forEach((elt) => elt(obj));
+ }
+ }
+}
+exports.deleteObject = deleteObject;
+//# sourceMappingURL=cache.js.map
\ No newline at end of file
diff --git a/dist/cache.js.map b/dist/cache.js.map
new file mode 100644
index 0000000000..da01ba2c1e
--- /dev/null
+++ b/dist/cache.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"cache.js","sourceRoot":"","sources":["../src/cache.ts"],"names":[],"mappings":";;;AAAA,yCAAwF;AASxF,MAAa,SAAS;IAKlB,YACqB,IAAY,EACZ,KAAY,EACZ,MAAsB,EACvC,YAAqB,IAAI;QAHR,SAAI,GAAJ,IAAI,CAAQ;QACZ,UAAK,GAAL,KAAK,CAAO;QACZ,WAAM,GAAN,MAAM,CAAgB;QAPnC,YAAO,GAAQ,EAAE,CAAC;QACT,eAAU,GAA2B,EAAE,CAAC;QACxC,kBAAa,GAAgD,EAAE,CAAC;QAQ7E,IAAI,CAAC,KAAK,GAAG,KAAK,CAAC;QACnB,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC;QACrB,IAAI,CAAC,aAAa,CAAC,cAAG,CAAC,GAAG,EAAE,CAAC;QAC7B,IAAI,CAAC,aAAa,CAAC,iBAAM,CAAC,GAAG,EAAE,CAAC;QAChC,IAAI,CAAC,aAAa,CAAC,iBAAM,CAAC,GAAG,EAAE,CAAC;QAChC,IAAI,SAAS,EAAE;YACX,IAAI,CAAC,WAAW,CAAC,IAAI,CAAC,CAAC;SAC1B;IACL,CAAC;IAEY,KAAK;;YACd,MAAM,IAAI,CAAC,WAAW,CAAC,IAAI,CAAC,CAAC;QACjC,CAAC;KAAA;IAEM,EAAE,CAAC,IAAY,EAAE,EAAqB;QACzC,IAAI,IAAI,CAAC,aAAa,CAAC,IAAI,CAAC,KAAK,SAAS,EAAE;YACxC,MAAM,IAAI,KAAK,CAAC,iBAAiB,IAAI,EAAE,CAAC,CAAC;SAC5C;QACD,IAAI,CAAC,aAAa,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC;IACtC,CAAC;IAEM,GAAG,CAAC,IAAY,EAAE,EAAqB;QAC1C,IAAI,IAAI,CAAC,aAAa,CAAC,IAAI,CAAC,KAAK,SAAS,EAAE;YACxC,MAAM,IAAI,KAAK,CAAC,iBAAiB,IAAI,EAAE,CAAC,CAAC;SAC5C;QACD,MAAM,aAAa,GAAW,IAAI,CAAC,aAAa,CAAC,IAAI,CAAC,CAAC,SAAS,CAC5D,CAAC,QAA2B,EAAE,EAAE,CAAC,QAAQ,KAAK,EAAE,CACnD,CAAC;QACF,IAAI,aAAa,KAAK,CAAC,CAAC,EAAE;YACtB,OAAO;SACV;QACD,IAAI,CAAC,aAAa,CAAC,IAAI,CAAC,CAAC,MAAM,CAAC,aAAa,EAAE,CAAC,CAAC,CAAC;IACtD,CAAC;IAEM,GAAG,CAAC,IAAY,EAAE,SAAkB;QACvC,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CACpB,CAAC,GAAM,EAAW,EAAE;YAChB,OAAO,GAAG,CAAC,QAAS,CAAC,IAAI,KAAK,IAAI,IAAI,CAAC,CAAC,SAAS,IAAI,GAAG,CAAC,QAAS,CAAC,SAAS,KAAK,SAAS,CAAC,CAAC;QAChG,CAAC,CACJ,CAAC;IACN,CAAC;IAEM,IAAI,CAAC,SAA8B;QACtC,IAAI,CAAC,SAAS,EAAE;YACZ,OAAO,IAAI,CAAC,OAAO,CAAC;SACvB;QACD,OAAO,IAAI,CAAC,UAAU,CAAC,SAAS,CAAqB,CAAC;IAC1D,CAAC;IAEa,WAAW,CAAC,GAAQ;;YAC9B,MAAM,OAAO,GAAG,IAAI,CAAC,MAAM,EAAE,CAAC;YAC9B,MAAM,MAAM,GAAG,MAAM,OAAO,CAAC;YAC7B,MAAM,IAAI,GAAG,MAAM,CAAC,IAAI,CAAC;YACzB,WAAW,CAAC,IAAI,CAAC,OAAO,EAAE,IAAI,CAAC,KAAK,EAAE,IAAI,CAAC,aAAa,CAAC,iBAAM,CAAC,CAAC,KAAK,EAAE,CAAC,CAAC;YAC1E,IAAI,CAAC,gBAAgB,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;YAClC,IAAI,CAAC,KAAK,CAAC,KAAK,CACZ,IAAI,CAAC,IAAI,EACT,EAAE,eAAe,EAAE,IAAI,CAAC,QAAS,CAAC,eAAe,EAAE,EACnD,IAAI,CAAC,YAAY,CAAC,IAAI,CAAC,IAAI,CAAC,EAC5B,IAAI,CAAC,WAAW,CAAC,IAAI,CAAC,IAAI,CAAC,CAC9B,CAAC;QACN,CAAC;KAAA;IAEO,gBAAgB,CAAC,KAAU;QAC/B,KAAK,CAAC,OAAO,CAAC,CAAC,GAAM,EAAE,EAAE;YACrB,iBAAiB,CACb,IAAI,CAAC,OAAO,EACZ,GAAG,EACH,IAAI,CAAC,aAAa,CAAC,cAAG,CAAC,CAAC,KAAK,EAAE,EAC/B,IAAI,CAAC,aAAa,CAAC,iBAAM,CAAC,CAAC,KAAK,EAAE,CACrC,CAAC;YACF,IAAI,GAAG,CAAC,QAAS,CAAC,SAAS,EAAE;gBACzB,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAC;aACtB;QACL,CAAC,CAAC,CAAC;IACP,CAAC;IAEO,QAAQ,CAAC,GAAM;QACnB,IAAI,aAAa,GAAG,IAAI,CAAC,UAAU,CAAC,GAAG,CAAC,QAAS,CAAC,SAAU,CAAQ,CAAC;QACrE,IAAI,CAAC,aAAa,EAAE;YAChB,aAAa,GAAG,EAAE,CAAC;YACnB,IAAI,CAAC,UAAU,CAAC,GAAG,CAAC,QAAS,CAAC,SAAU,CAAC,GAAG,aAAa,CAAC;SAC7D;QACD,iBAAiB,CAAC,aAAa,EAAE,GAAG,CAAC,CAAC;IAC1C,CAAC;IAEO,YAAY,CAAC,KAAa,EAAE,GAAM;QACtC,QAAQ,KAAK,EAAE;YACX,KAAK,OAAO,CAAC;YACb,KAAK,UAAU;gBACX,iBAAiB,CACb,IAAI,CAAC,OAAO,EACZ,GAAG,EACH,IAAI,CAAC,aAAa,CAAC,cAAG,CAAC,CAAC,KAAK,EAAE,EAC/B,IAAI,CAAC,aAAa,CAAC,iBAAM,CAAC,CAAC,KAAK,EAAE,CACrC,CAAC;gBACF,IAAI,GAAG,CAAC,QAAS,CAAC,SAAS,EAAE;oBACzB,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAC;iBACtB;gBACD,MAAM;YACV,KAAK,SAAS;gBACV,YAAY,CAAC,IAAI,CAAC,OAAO,EAAE,GAAG,EAAE,IAAI,CAAC,aAAa,CAAC,iBAAM,CAAC,CAAC,KAAK,EAAE,CAAC,CAAC;gBACpE,IAAI,GAAG,CAAC,QAAS,CAAC,SAAS,EAAE;oBACzB,MAAM,aAAa,GAAG,IAAI,CAAC,UAAU,CAAC,GAAG,CAAC,QAAS,CAAC,SAAU,CAAQ,CAAC;oBACvE,IAAI,aAAa,EAAE;wBACf,YAAY,CAAC,aAAa,EAAE,GAAG,CAAC,CAAC;qBACpC;iBACJ;gBACD,MAAM;SACb;IACL,CAAC;CACJ;AA1HD,8BA0HC;AAED,uBAAuB;AACvB,SAAgB,WAAW,CACvB,UAAe,EACf,UAAe,EACf,cAAyC;IAEzC,OAAO,UAAU,CAAC,MAAM,CAAC,CAAC,GAAM,EAAE,EAAE;QAChC,IAAI,oBAAoB,CAAC,UAAU,EAAE,GAAG,CAAC,KAAK,CAAC,CAAC,EAAE;YAC9C,IAAI,cAAc,EAAE;gBAChB,cAAc,CAAC,OAAO,CAAC,CAAC,EAAqB,EAAE,EAAE,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC;aAC9D;YACD,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,IAAI,CAAC;IAChB,CAAC,CAAC,CAAC;AACP,CAAC;AAdD,kCAcC;AAED,2BAA2B;AAC3B,SAAgB,iBAAiB,CAC7B,OAAY,EACZ,GAAM,EACN,WAAsC,EACtC,cAAyC;IAEzC,MAAM,EAAE,GAAG,oBAAoB,CAAC,OAAO,EAAE,GAAG,CAAC,CAAC;IAC9C,IAAI,EAAE,KAAK,CAAC,CAAC,EAAE;QACX,OAAO,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;QAClB,IAAI,WAAW,EAAE;YACb,WAAW,CAAC,OAAO,CAAC,CAAC,GAAsB,EAAE,EAAE,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,CAAC;SAC7D;KACJ;SAAM;QACH,OAAO,CAAC,EAAE,CAAC,GAAG,GAAG,CAAC;QAClB,IAAI,cAAc,EAAE;YAChB,cAAc,CAAC,OAAO,CAAC,CAAC,GAAsB,EAAE,EAAE,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,CAAC;SAChE;KACJ;AACL,CAAC;AAlBD,8CAkBC;AAED,SAAS,YAAY,CAA6B,EAAK,EAAE,EAAK;IAC1D,OAAO,EAAE,CAAC,QAAS,CAAC,IAAI,KAAK,EAAE,CAAC,QAAS,CAAC,IAAI,IAAI,EAAE,CAAC,QAAS,CAAC,SAAS,KAAK,EAAE,CAAC,QAAS,CAAC,SAAS,CAAC;AACxG,CAAC;AAED,SAAS,oBAAoB,CAA6B,OAAY,EAAE,GAAM;IAC1E,OAAO,OAAO,CAAC,SAAS,CAAC,CAAC,GAAM,EAAE,EAAE;QAChC,OAAO,YAAY,CAAC,GAAG,EAAE,GAAG,CAAC,CAAC;IAClC,CAAC,CAAC,CAAC;AACP,CAAC;AAED,sBAAsB;AACtB,SAAgB,YAAY,CACxB,OAAY,EACZ,GAAM,EACN,cAAyC;IAEzC,MAAM,EAAE,GAAG,oBAAoB,CAAC,OAAO,EAAE,GAAG,CAAC,CAAC;IAC9C,IAAI,EAAE,KAAK,CAAC,CAAC,EAAE;QACX,OAAO,CAAC,MAAM,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC;QACtB,IAAI,cAAc,EAAE;YAChB,cAAc,CAAC,OAAO,CAAC,CAAC,GAAsB,EAAE,EAAE,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,CAAC;SAChE;KACJ;AACL,CAAC;AAZD,oCAYC"}
\ No newline at end of file
diff --git a/dist/cloud_auth.d.ts b/dist/cloud_auth.d.ts
new file mode 100644
index 0000000000..48be3e5ae4
--- /dev/null
+++ b/dist/cloud_auth.d.ts
@@ -0,0 +1,12 @@
+///
+import https = require('https');
+import request = require('request');
+import { Authenticator } from './auth';
+import { User } from './config_types';
+export declare class CloudAuth implements Authenticator {
+ isAuthProvider(user: User): boolean;
+ applyAuthentication(user: User, opts: request.Options | https.RequestOptions): Promise;
+ private getToken;
+ private isExpired;
+ private updateAccessToken;
+}
diff --git a/dist/cloud_auth.js b/dist/cloud_auth.js
new file mode 100644
index 0000000000..2bcba2311f
--- /dev/null
+++ b/dist/cloud_auth.js
@@ -0,0 +1,74 @@
+"use strict";
+Object.defineProperty(exports, "__esModule", { value: true });
+const tslib_1 = require("tslib");
+const proc = require("child_process");
+const jsonpath = require("jsonpath-plus");
+class CloudAuth {
+ isAuthProvider(user) {
+ if (!user || !user.authProvider) {
+ return false;
+ }
+ return user.authProvider.name === 'azure' || user.authProvider.name === 'gcp';
+ }
+ applyAuthentication(user, opts) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const token = this.getToken(user);
+ if (token) {
+ opts.headers.Authorization = `Bearer ${token}`;
+ }
+ });
+ }
+ getToken(user) {
+ const config = user.authProvider.config;
+ if (this.isExpired(config)) {
+ this.updateAccessToken(config);
+ }
+ return config['access-token'];
+ }
+ isExpired(config) {
+ const token = config['access-token'];
+ const expiry = config.expiry;
+ if (!token) {
+ return true;
+ }
+ if (!expiry) {
+ return false;
+ }
+ const expiration = Date.parse(expiry);
+ if (expiration < Date.now()) {
+ return true;
+ }
+ return false;
+ }
+ updateAccessToken(config) {
+ let cmd = config['cmd-path'];
+ if (!cmd) {
+ throw new Error('Token is expired!');
+ }
+ // Wrap cmd in quotes to make it cope with spaces in path
+ cmd = `"${cmd}"`;
+ const args = config['cmd-args'];
+ if (args) {
+ cmd = cmd + ' ' + args;
+ }
+ // TODO: Cache to file?
+ // TODO: do this asynchronously
+ let output;
+ try {
+ output = proc.execSync(cmd);
+ }
+ catch (err) {
+ throw new Error('Failed to refresh token: ' + err.message);
+ }
+ const resultObj = JSON.parse(output);
+ const tokenPathKeyInConfig = config['token-key'];
+ const expiryPathKeyInConfig = config['expiry-key'];
+ // Format in file is {}, so slice it out and add '$'
+ const tokenPathKey = '$' + tokenPathKeyInConfig.slice(1, -1);
+ const expiryPathKey = '$' + expiryPathKeyInConfig.slice(1, -1);
+ config['access-token'] = jsonpath.JSONPath(tokenPathKey, resultObj);
+ config.expiry = jsonpath.JSONPath(expiryPathKey, resultObj);
+ }
+}
+exports.CloudAuth = CloudAuth;
+//# sourceMappingURL=cloud_auth.js.map
\ No newline at end of file
diff --git a/dist/cloud_auth.js.map b/dist/cloud_auth.js.map
new file mode 100644
index 0000000000..c3d6ed7562
--- /dev/null
+++ b/dist/cloud_auth.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"cloud_auth.js","sourceRoot":"","sources":["../src/cloud_auth.ts"],"names":[],"mappings":"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"}
\ No newline at end of file
diff --git a/dist/config.d.ts b/dist/config.d.ts
new file mode 100644
index 0000000000..d4f878f5ac
--- /dev/null
+++ b/dist/config.d.ts
@@ -0,0 +1,77 @@
+///
+import https = require('https');
+import request = require('request');
+import * as api from './api';
+import { Cluster, Context, User } from './config_types';
+export declare class KubeConfig {
+ private static authenticators;
+ /**
+ * The list of all known clusters
+ */
+ 'clusters': Cluster[];
+ /**
+ * The list of all known users
+ */
+ 'users': User[];
+ /**
+ * The list of all known contexts
+ */
+ 'contexts': Context[];
+ /**
+ * The name of the current context
+ */
+ 'currentContext': string;
+ constructor();
+ getContexts(): Context[];
+ getClusters(): Cluster[];
+ getUsers(): User[];
+ getCurrentContext(): string;
+ setCurrentContext(context: string): void;
+ getContextObject(name: string): Context | null;
+ getCurrentCluster(): Cluster | null;
+ getCluster(name: string): Cluster | null;
+ getCurrentUser(): User | null;
+ getUser(name: string): User | null;
+ loadFromFile(file: string): void;
+ applytoHTTPSOptions(opts: https.RequestOptions): Promise;
+ applyToRequest(opts: request.Options): Promise;
+ loadFromString(config: string): void;
+ loadFromOptions(options: any): void;
+ loadFromClusterAndUser(cluster: Cluster, user: User): void;
+ loadFromCluster(pathPrefix?: string): void;
+ mergeConfig(config: KubeConfig): void;
+ addCluster(cluster: Cluster): void;
+ addUser(user: User): void;
+ addContext(ctx: Context): void;
+ loadFromDefault(): void;
+ makeApiClient(apiClientType: ApiConstructor): T;
+ makePathsAbsolute(rootDirectory: string): void;
+ exportConfig(): string;
+ private getCurrentContextObject;
+ private applyHTTPSOptions;
+ private applyAuthorizationHeader;
+ private applyOptions;
+}
+export interface ApiType {
+ setDefaultAuthentication(config: api.Authentication): any;
+}
+declare type ApiConstructor = new (server: string) => T;
+export declare class Config {
+ static SERVICEACCOUNT_ROOT: string;
+ static SERVICEACCOUNT_CA_PATH: string;
+ static SERVICEACCOUNT_TOKEN_PATH: string;
+ static fromFile(filename: string): api.CoreV1Api;
+ static fromCluster(): api.CoreV1Api;
+ static defaultClient(): api.CoreV1Api;
+ static apiFromFile(filename: string, apiClientType: ApiConstructor): T;
+ static apiFromCluster(apiClientType: ApiConstructor): T;
+ static apiFromDefaultClient(apiClientType: ApiConstructor): T;
+}
+export declare function makeAbsolutePath(root: string, file: string): string;
+export declare function bufferFromFileOrString(file?: string, data?: string): Buffer | null;
+export declare function findHomeDir(): string | null;
+export interface Named {
+ name: string;
+}
+export declare function findObject(list: T[], name: string, key: string): T | null;
+export {};
diff --git a/dist/config.js b/dist/config.js
new file mode 100644
index 0000000000..e0c14713a7
--- /dev/null
+++ b/dist/config.js
@@ -0,0 +1,447 @@
+"use strict";
+Object.defineProperty(exports, "__esModule", { value: true });
+const tslib_1 = require("tslib");
+const execa = require("execa");
+const fs = require("fs");
+const path = require("path");
+const yaml = require("js-yaml");
+const shelljs = require("shelljs");
+const api = require("./api");
+const cloud_auth_1 = require("./cloud_auth");
+const config_types_1 = require("./config_types");
+const exec_auth_1 = require("./exec_auth");
+const file_auth_1 = require("./file_auth");
+const oidc_auth_1 = require("./oidc_auth");
+// fs.existsSync was removed in node 10
+function fileExists(filepath) {
+ try {
+ fs.accessSync(filepath);
+ return true;
+ // tslint:disable-next-line:no-empty
+ }
+ catch (ignore) { }
+ return false;
+}
+class KubeConfig {
+ constructor() {
+ this.contexts = [];
+ this.clusters = [];
+ this.users = [];
+ }
+ getContexts() {
+ return this.contexts;
+ }
+ getClusters() {
+ return this.clusters;
+ }
+ getUsers() {
+ return this.users;
+ }
+ getCurrentContext() {
+ return this.currentContext;
+ }
+ setCurrentContext(context) {
+ this.currentContext = context;
+ }
+ getContextObject(name) {
+ if (!this.contexts) {
+ return null;
+ }
+ return findObject(this.contexts, name, 'context');
+ }
+ getCurrentCluster() {
+ const context = this.getCurrentContextObject();
+ if (!context) {
+ return null;
+ }
+ return this.getCluster(context.cluster);
+ }
+ getCluster(name) {
+ return findObject(this.clusters, name, 'cluster');
+ }
+ getCurrentUser() {
+ const ctx = this.getCurrentContextObject();
+ if (!ctx) {
+ return null;
+ }
+ return this.getUser(ctx.user);
+ }
+ getUser(name) {
+ return findObject(this.users, name, 'user');
+ }
+ loadFromFile(file) {
+ const rootDirectory = path.dirname(file);
+ this.loadFromString(fs.readFileSync(file, 'utf8'));
+ this.makePathsAbsolute(rootDirectory);
+ }
+ applytoHTTPSOptions(opts) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const user = this.getCurrentUser();
+ yield this.applyOptions(opts);
+ if (user && user.username) {
+ opts.auth = `${user.username}:${user.password}`;
+ }
+ });
+ }
+ applyToRequest(opts) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const cluster = this.getCurrentCluster();
+ const user = this.getCurrentUser();
+ yield this.applyOptions(opts);
+ if (cluster && cluster.skipTLSVerify) {
+ opts.strictSSL = false;
+ }
+ if (user && user.username) {
+ opts.auth = {
+ password: user.password,
+ username: user.username,
+ };
+ }
+ });
+ }
+ loadFromString(config) {
+ const obj = yaml.safeLoad(config);
+ if (obj.apiVersion !== 'v1') {
+ throw new TypeError('unknown version: ' + obj.apiVersion);
+ }
+ this.clusters = config_types_1.newClusters(obj.clusters);
+ this.contexts = config_types_1.newContexts(obj.contexts);
+ this.users = config_types_1.newUsers(obj.users);
+ this.currentContext = obj['current-context'];
+ }
+ loadFromOptions(options) {
+ this.clusters = options.clusters;
+ this.contexts = options.contexts;
+ this.users = options.users;
+ this.currentContext = options.currentContext;
+ }
+ loadFromClusterAndUser(cluster, user) {
+ this.clusters = [cluster];
+ this.users = [user];
+ this.currentContext = 'loaded-context';
+ this.contexts = [
+ {
+ cluster: cluster.name,
+ user: user.name,
+ name: this.currentContext,
+ },
+ ];
+ }
+ loadFromCluster(pathPrefix = '') {
+ const host = process.env.KUBERNETES_SERVICE_HOST;
+ const port = process.env.KUBERNETES_SERVICE_PORT;
+ const clusterName = 'inCluster';
+ const userName = 'inClusterUser';
+ const contextName = 'inClusterContext';
+ let scheme = 'https';
+ if (port === '80' || port === '8080' || port === '8001') {
+ scheme = 'http';
+ }
+ this.clusters = [
+ {
+ name: clusterName,
+ caFile: `${pathPrefix}${Config.SERVICEACCOUNT_CA_PATH}`,
+ server: `${scheme}://${host}:${port}`,
+ skipTLSVerify: false,
+ },
+ ];
+ this.users = [
+ {
+ name: userName,
+ authProvider: {
+ name: 'tokenFile',
+ config: {
+ tokenFile: `${pathPrefix}${Config.SERVICEACCOUNT_TOKEN_PATH}`,
+ },
+ },
+ },
+ ];
+ this.contexts = [
+ {
+ cluster: clusterName,
+ name: contextName,
+ user: userName,
+ },
+ ];
+ this.currentContext = contextName;
+ }
+ mergeConfig(config) {
+ this.currentContext = config.currentContext;
+ config.clusters.forEach((cluster) => {
+ this.addCluster(cluster);
+ });
+ config.users.forEach((user) => {
+ this.addUser(user);
+ });
+ config.contexts.forEach((ctx) => {
+ this.addContext(ctx);
+ });
+ }
+ addCluster(cluster) {
+ if (!this.clusters) {
+ this.clusters = [];
+ }
+ this.clusters.forEach((c, ix) => {
+ if (c.name === cluster.name) {
+ throw new Error(`Duplicate cluster: ${c.name}`);
+ }
+ });
+ this.clusters.push(cluster);
+ }
+ addUser(user) {
+ if (!this.users) {
+ this.users = [];
+ }
+ this.users.forEach((c, ix) => {
+ if (c.name === user.name) {
+ throw new Error(`Duplicate user: ${c.name}`);
+ }
+ });
+ this.users.push(user);
+ }
+ addContext(ctx) {
+ if (!this.contexts) {
+ this.contexts = [];
+ }
+ this.contexts.forEach((c, ix) => {
+ if (c.name === ctx.name) {
+ throw new Error(`Duplicate context: ${c.name}`);
+ }
+ });
+ this.contexts.push(ctx);
+ }
+ loadFromDefault() {
+ if (process.env.KUBECONFIG && process.env.KUBECONFIG.length > 0) {
+ const files = process.env.KUBECONFIG.split(path.delimiter);
+ this.loadFromFile(files[0]);
+ for (let i = 1; i < files.length; i++) {
+ const kc = new KubeConfig();
+ kc.loadFromFile(files[i]);
+ this.mergeConfig(kc);
+ }
+ return;
+ }
+ const home = findHomeDir();
+ if (home) {
+ const config = path.join(home, '.kube', 'config');
+ if (fileExists(config)) {
+ this.loadFromFile(config);
+ return;
+ }
+ }
+ if (process.platform === 'win32' && shelljs.which('wsl.exe')) {
+ // TODO: Handle if someome set $KUBECONFIG in wsl here...
+ try {
+ const result = execa.sync('wsl.exe', ['cat', shelljs.homedir() + '/.kube/config']);
+ if (result.code === 0) {
+ this.loadFromString(result.stdout);
+ return;
+ }
+ }
+ catch (err) {
+ // Falling back to alternative auth
+ }
+ }
+ if (fileExists(Config.SERVICEACCOUNT_TOKEN_PATH)) {
+ this.loadFromCluster();
+ return;
+ }
+ this.loadFromClusterAndUser({ name: 'cluster', server: 'http://localhost:8080/' }, { name: 'user' });
+ }
+ makeApiClient(apiClientType) {
+ const cluster = this.getCurrentCluster();
+ if (!cluster) {
+ throw new Error('No active cluster!');
+ }
+ const apiClient = new apiClientType(cluster.server);
+ apiClient.setDefaultAuthentication(this);
+ return apiClient;
+ }
+ makePathsAbsolute(rootDirectory) {
+ this.clusters.forEach((cluster) => {
+ if (cluster.caFile) {
+ cluster.caFile = makeAbsolutePath(rootDirectory, cluster.caFile);
+ }
+ });
+ this.users.forEach((user) => {
+ if (user.certFile) {
+ user.certFile = makeAbsolutePath(rootDirectory, user.certFile);
+ }
+ if (user.keyFile) {
+ user.keyFile = makeAbsolutePath(rootDirectory, user.keyFile);
+ }
+ });
+ }
+ exportConfig() {
+ const configObj = {
+ apiVersion: 'v1',
+ kind: 'Config',
+ clusters: this.clusters.map(config_types_1.exportCluster),
+ users: this.users.map(config_types_1.exportUser),
+ contexts: this.contexts.map(config_types_1.exportContext),
+ preferences: {},
+ 'current-context': this.getCurrentContext(),
+ };
+ return JSON.stringify(configObj);
+ }
+ getCurrentContextObject() {
+ return this.getContextObject(this.currentContext);
+ }
+ applyHTTPSOptions(opts) {
+ const cluster = this.getCurrentCluster();
+ const user = this.getCurrentUser();
+ if (!user) {
+ return;
+ }
+ if (cluster != null && cluster.skipTLSVerify) {
+ opts.rejectUnauthorized = false;
+ }
+ const ca = cluster != null ? bufferFromFileOrString(cluster.caFile, cluster.caData) : null;
+ if (ca) {
+ opts.ca = ca;
+ }
+ const cert = bufferFromFileOrString(user.certFile, user.certData);
+ if (cert) {
+ opts.cert = cert;
+ }
+ const key = bufferFromFileOrString(user.keyFile, user.keyData);
+ if (key) {
+ opts.key = key;
+ }
+ }
+ applyAuthorizationHeader(opts) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const user = this.getCurrentUser();
+ if (!user) {
+ return;
+ }
+ const authenticator = KubeConfig.authenticators.find((elt) => {
+ return elt.isAuthProvider(user);
+ });
+ if (!opts.headers) {
+ opts.headers = [];
+ }
+ if (authenticator) {
+ yield authenticator.applyAuthentication(user, opts);
+ }
+ if (user.token) {
+ opts.headers.Authorization = `Bearer ${user.token}`;
+ }
+ });
+ }
+ applyOptions(opts) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ this.applyHTTPSOptions(opts);
+ yield this.applyAuthorizationHeader(opts);
+ });
+ }
+}
+KubeConfig.authenticators = [
+ new cloud_auth_1.CloudAuth(),
+ new exec_auth_1.ExecAuth(),
+ new file_auth_1.FileAuth(),
+ new oidc_auth_1.OpenIDConnectAuth(),
+];
+exports.KubeConfig = KubeConfig;
+// This class is deprecated and will eventually be removed.
+class Config {
+ static fromFile(filename) {
+ return Config.apiFromFile(filename, api.CoreV1Api);
+ }
+ static fromCluster() {
+ return Config.apiFromCluster(api.CoreV1Api);
+ }
+ static defaultClient() {
+ return Config.apiFromDefaultClient(api.CoreV1Api);
+ }
+ static apiFromFile(filename, apiClientType) {
+ const kc = new KubeConfig();
+ kc.loadFromFile(filename);
+ return kc.makeApiClient(apiClientType);
+ }
+ static apiFromCluster(apiClientType) {
+ const kc = new KubeConfig();
+ kc.loadFromCluster();
+ const cluster = kc.getCurrentCluster();
+ if (!cluster) {
+ throw new Error('No active cluster!');
+ }
+ const k8sApi = new apiClientType(cluster.server);
+ k8sApi.setDefaultAuthentication(kc);
+ return k8sApi;
+ }
+ static apiFromDefaultClient(apiClientType) {
+ const kc = new KubeConfig();
+ kc.loadFromDefault();
+ return kc.makeApiClient(apiClientType);
+ }
+}
+Config.SERVICEACCOUNT_ROOT = '/var/run/secrets/kubernetes.io/serviceaccount';
+Config.SERVICEACCOUNT_CA_PATH = Config.SERVICEACCOUNT_ROOT + '/ca.crt';
+Config.SERVICEACCOUNT_TOKEN_PATH = Config.SERVICEACCOUNT_ROOT + '/token';
+exports.Config = Config;
+function makeAbsolutePath(root, file) {
+ if (!root || path.isAbsolute(file)) {
+ return file;
+ }
+ return path.join(root, file);
+}
+exports.makeAbsolutePath = makeAbsolutePath;
+// This is public really only for testing.
+function bufferFromFileOrString(file, data) {
+ if (file) {
+ return fs.readFileSync(file);
+ }
+ if (data) {
+ return Buffer.from(data, 'base64');
+ }
+ return null;
+}
+exports.bufferFromFileOrString = bufferFromFileOrString;
+// Only public for testing.
+function findHomeDir() {
+ if (process.env.HOME) {
+ try {
+ fs.accessSync(process.env.HOME);
+ return process.env.HOME;
+ // tslint:disable-next-line:no-empty
+ }
+ catch (ignore) { }
+ }
+ if (process.platform !== 'win32') {
+ return null;
+ }
+ if (process.env.HOMEDRIVE && process.env.HOMEPATH) {
+ const dir = path.join(process.env.HOMEDRIVE, process.env.HOMEPATH);
+ try {
+ fs.accessSync(dir);
+ return dir;
+ // tslint:disable-next-line:no-empty
+ }
+ catch (ignore) { }
+ }
+ if (process.env.USERPROFILE) {
+ try {
+ fs.accessSync(process.env.USERPROFILE);
+ return process.env.USERPROFILE;
+ // tslint:disable-next-line:no-empty
+ }
+ catch (ignore) { }
+ }
+ return null;
+}
+exports.findHomeDir = findHomeDir;
+// Only really public for testing...
+function findObject(list, name, key) {
+ for (const obj of list) {
+ if (obj.name === name) {
+ if (obj[key]) {
+ return obj[key];
+ }
+ return obj;
+ }
+ }
+ return null;
+}
+exports.findObject = findObject;
+//# sourceMappingURL=config.js.map
\ No newline at end of file
diff --git a/dist/config.js.map b/dist/config.js.map
new file mode 100644
index 0000000000..2447a68dcc
--- /dev/null
+++ b/dist/config.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"config.js","sourceRoot":"","sources":["../src/config.ts"],"names":[],"mappings":"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"}
\ No newline at end of file
diff --git a/dist/config_types.d.ts b/dist/config_types.d.ts
new file mode 100644
index 0000000000..4815773b49
--- /dev/null
+++ b/dist/config_types.d.ts
@@ -0,0 +1,31 @@
+export interface Cluster {
+ readonly name: string;
+ readonly caData?: string;
+ caFile?: string;
+ readonly server: string;
+ readonly skipTLSVerify: boolean;
+}
+export declare function newClusters(a: any): Cluster[];
+export declare function exportCluster(cluster: Cluster): any;
+export interface User {
+ readonly name: string;
+ readonly certData?: string;
+ certFile?: string;
+ readonly exec?: any;
+ readonly keyData?: string;
+ keyFile?: string;
+ readonly authProvider?: any;
+ readonly token?: string;
+ readonly username?: string;
+ readonly password?: string;
+}
+export declare function newUsers(a: any): User[];
+export declare function exportUser(user: User): any;
+export interface Context {
+ readonly cluster: string;
+ readonly user: string;
+ readonly name: string;
+ readonly namespace?: string;
+}
+export declare function newContexts(a: any): Context[];
+export declare function exportContext(ctx: Context): any;
diff --git a/dist/config_types.js b/dist/config_types.js
new file mode 100644
index 0000000000..009da6f963
--- /dev/null
+++ b/dist/config_types.js
@@ -0,0 +1,121 @@
+"use strict";
+Object.defineProperty(exports, "__esModule", { value: true });
+const fs = require("fs");
+const u = require("underscore");
+function newClusters(a) {
+ return u.map(a, clusterIterator());
+}
+exports.newClusters = newClusters;
+function exportCluster(cluster) {
+ return {
+ name: cluster.name,
+ cluster: {
+ server: cluster.server,
+ 'certificate-authority-data': cluster.caData,
+ 'certificate-authority': cluster.caFile,
+ 'insecure-skip-tls-verify': cluster.skipTLSVerify,
+ },
+ };
+}
+exports.exportCluster = exportCluster;
+function clusterIterator() {
+ return (elt, i, list) => {
+ if (!elt.name) {
+ throw new Error(`clusters[${i}].name is missing`);
+ }
+ if (!elt.cluster) {
+ throw new Error(`clusters[${i}].cluster is missing`);
+ }
+ if (!elt.cluster.server) {
+ throw new Error(`clusters[${i}].cluster.server is missing`);
+ }
+ return {
+ caData: elt.cluster['certificate-authority-data'],
+ caFile: elt.cluster['certificate-authority'],
+ name: elt.name,
+ server: elt.cluster.server,
+ skipTLSVerify: elt.cluster['insecure-skip-tls-verify'] === true,
+ };
+ };
+}
+function newUsers(a) {
+ return u.map(a, userIterator());
+}
+exports.newUsers = newUsers;
+function exportUser(user) {
+ return {
+ name: user.name,
+ user: {
+ 'auth-provider': user.authProvider,
+ 'client-certificate-data': user.certData,
+ 'client-certificate': user.certFile,
+ exec: user.exec,
+ 'client-key-data': user.keyData,
+ 'client-key': user.keyFile,
+ token: user.token,
+ password: user.password,
+ username: user.username,
+ },
+ };
+}
+exports.exportUser = exportUser;
+function userIterator() {
+ return (elt, i, list) => {
+ if (!elt.name) {
+ throw new Error(`users[${i}].name is missing`);
+ }
+ return {
+ authProvider: elt.user ? elt.user['auth-provider'] : null,
+ certData: elt.user ? elt.user['client-certificate-data'] : null,
+ certFile: elt.user ? elt.user['client-certificate'] : null,
+ exec: elt.user ? elt.user.exec : null,
+ keyData: elt.user ? elt.user['client-key-data'] : null,
+ keyFile: elt.user ? elt.user['client-key'] : null,
+ name: elt.name,
+ token: findToken(elt.user),
+ password: elt.user ? elt.user.password : null,
+ username: elt.user ? elt.user.username : null,
+ };
+ };
+}
+function findToken(user) {
+ if (user) {
+ if (user.token) {
+ return user.token;
+ }
+ if (user['token-file']) {
+ return fs.readFileSync(user['token-file']).toString();
+ }
+ }
+}
+function newContexts(a) {
+ return u.map(a, contextIterator());
+}
+exports.newContexts = newContexts;
+function exportContext(ctx) {
+ return {
+ name: ctx.name,
+ context: ctx,
+ };
+}
+exports.exportContext = exportContext;
+function contextIterator() {
+ return (elt, i, list) => {
+ if (!elt.name) {
+ throw new Error(`contexts[${i}].name is missing`);
+ }
+ if (!elt.context) {
+ throw new Error(`contexts[${i}].context is missing`);
+ }
+ if (!elt.context.cluster) {
+ throw new Error(`contexts[${i}].context.cluster is missing`);
+ }
+ return {
+ cluster: elt.context.cluster,
+ name: elt.name,
+ user: elt.context.user || undefined,
+ namespace: elt.context.namespace || undefined,
+ };
+ };
+}
+//# sourceMappingURL=config_types.js.map
\ No newline at end of file
diff --git a/dist/config_types.js.map b/dist/config_types.js.map
new file mode 100644
index 0000000000..afd8fccffd
--- /dev/null
+++ b/dist/config_types.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"config_types.js","sourceRoot":"","sources":["../src/config_types.ts"],"names":[],"mappings":"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"}
\ No newline at end of file
diff --git a/dist/exec.d.ts b/dist/exec.d.ts
new file mode 100644
index 0000000000..6aa6d4a2ad
--- /dev/null
+++ b/dist/exec.d.ts
@@ -0,0 +1,26 @@
+///
+///
+import WebSocket = require('isomorphic-ws');
+import stream = require('stream');
+import { V1Status } from './api';
+import { KubeConfig } from './config';
+import { WebSocketInterface } from './web-socket-handler';
+export declare class Exec {
+ 'handler': WebSocketInterface;
+ private terminalSizeQueue?;
+ constructor(config: KubeConfig, wsInterface?: WebSocketInterface);
+ /**
+ * @param {string} namespace - The namespace of the pod to exec the command inside.
+ * @param {string} podName - The name of the pod to exec the command inside.
+ * @param {string} containerName - The name of the container in the pod to exec the command inside.
+ * @param {(string|string[])} command - The command or command and arguments to execute.
+ * @param {stream.Writable} stdout - The stream to write stdout data from the command.
+ * @param {stream.Writable} stderr - The stream to write stderr data from the command.
+ * @param {stream.Readable} stdin - The strream to write stdin data into the command.
+ * @param {boolean} tty - Should the command execute in a TTY enabled session.
+ * @param {(V1Status) => void} statusCallback -
+ * A callback to received the status (e.g. exit code) from the command, optional.
+ * @return {string} This is the result
+ */
+ exec(namespace: string, podName: string, containerName: string, command: string | string[], stdout: stream.Writable | null, stderr: stream.Writable | null, stdin: stream.Readable | null, tty: boolean, statusCallback?: (status: V1Status) => void): Promise;
+}
diff --git a/dist/exec.js b/dist/exec.js
new file mode 100644
index 0000000000..7ef77af580
--- /dev/null
+++ b/dist/exec.js
@@ -0,0 +1,59 @@
+"use strict";
+Object.defineProperty(exports, "__esModule", { value: true });
+const tslib_1 = require("tslib");
+const querystring = require("querystring");
+const terminal_size_queue_1 = require("./terminal-size-queue");
+const web_socket_handler_1 = require("./web-socket-handler");
+class Exec {
+ constructor(config, wsInterface) {
+ this.handler = wsInterface || new web_socket_handler_1.WebSocketHandler(config);
+ }
+ /**
+ * @param {string} namespace - The namespace of the pod to exec the command inside.
+ * @param {string} podName - The name of the pod to exec the command inside.
+ * @param {string} containerName - The name of the container in the pod to exec the command inside.
+ * @param {(string|string[])} command - The command or command and arguments to execute.
+ * @param {stream.Writable} stdout - The stream to write stdout data from the command.
+ * @param {stream.Writable} stderr - The stream to write stderr data from the command.
+ * @param {stream.Readable} stdin - The strream to write stdin data into the command.
+ * @param {boolean} tty - Should the command execute in a TTY enabled session.
+ * @param {(V1Status) => void} statusCallback -
+ * A callback to received the status (e.g. exit code) from the command, optional.
+ * @return {string} This is the result
+ */
+ exec(namespace, podName, containerName, command, stdout, stderr, stdin, tty, statusCallback) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const query = {
+ stdout: stdout != null,
+ stderr: stderr != null,
+ stdin: stdin != null,
+ tty,
+ command,
+ container: containerName,
+ };
+ const queryStr = querystring.stringify(query);
+ const path = `/api/v1/namespaces/${namespace}/pods/${podName}/exec?${queryStr}`;
+ const conn = yield this.handler.connect(path, null, (streamNum, buff) => {
+ const status = web_socket_handler_1.WebSocketHandler.handleStandardStreams(streamNum, buff, stdout, stderr);
+ if (status != null) {
+ if (statusCallback) {
+ statusCallback(status);
+ }
+ return false;
+ }
+ return true;
+ });
+ if (stdin != null) {
+ web_socket_handler_1.WebSocketHandler.handleStandardInput(conn, stdin, web_socket_handler_1.WebSocketHandler.StdinStream);
+ }
+ if (terminal_size_queue_1.isResizable(stdout)) {
+ this.terminalSizeQueue = new terminal_size_queue_1.TerminalSizeQueue();
+ web_socket_handler_1.WebSocketHandler.handleStandardInput(conn, this.terminalSizeQueue, web_socket_handler_1.WebSocketHandler.ResizeStream);
+ this.terminalSizeQueue.handleResizes(stdout);
+ }
+ return conn;
+ });
+ }
+}
+exports.Exec = Exec;
+//# sourceMappingURL=exec.js.map
\ No newline at end of file
diff --git a/dist/exec.js.map b/dist/exec.js.map
new file mode 100644
index 0000000000..98ef115a66
--- /dev/null
+++ b/dist/exec.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"exec.js","sourceRoot":"","sources":["../src/exec.ts"],"names":[],"mappings":";;;AACA,2CAA4C;AAK5C,+DAAwF;AACxF,6DAA4E;AAE5E,MAAa,IAAI;IAKb,YAAmB,MAAkB,EAAE,WAAgC;QACnE,IAAI,CAAC,OAAO,GAAG,WAAW,IAAI,IAAI,qCAAgB,CAAC,MAAM,CAAC,CAAC;IAC/D,CAAC;IAED;;;;;;;;;;;;OAYG;IACU,IAAI,CACb,SAAiB,EACjB,OAAe,EACf,aAAqB,EACrB,OAA0B,EAC1B,MAA8B,EAC9B,MAA8B,EAC9B,KAA6B,EAC7B,GAAY,EACZ,cAA2C;;YAE3C,MAAM,KAAK,GAAG;gBACV,MAAM,EAAE,MAAM,IAAI,IAAI;gBACtB,MAAM,EAAE,MAAM,IAAI,IAAI;gBACtB,KAAK,EAAE,KAAK,IAAI,IAAI;gBACpB,GAAG;gBACH,OAAO;gBACP,SAAS,EAAE,aAAa;aAC3B,CAAC;YACF,MAAM,QAAQ,GAAG,WAAW,CAAC,SAAS,CAAC,KAAK,CAAC,CAAC;YAC9C,MAAM,IAAI,GAAG,sBAAsB,SAAS,SAAS,OAAO,SAAS,QAAQ,EAAE,CAAC;YAChF,MAAM,IAAI,GAAG,MAAM,IAAI,CAAC,OAAO,CAAC,OAAO,CACnC,IAAI,EACJ,IAAI,EACJ,CAAC,SAAiB,EAAE,IAAY,EAAW,EAAE;gBACzC,MAAM,MAAM,GAAG,qCAAgB,CAAC,qBAAqB,CAAC,SAAS,EAAE,IAAI,EAAE,MAAM,EAAE,MAAM,CAAC,CAAC;gBACvF,IAAI,MAAM,IAAI,IAAI,EAAE;oBAChB,IAAI,cAAc,EAAE;wBAChB,cAAc,CAAC,MAAM,CAAC,CAAC;qBAC1B;oBACD,OAAO,KAAK,CAAC;iBAChB;gBACD,OAAO,IAAI,CAAC;YAChB,CAAC,CACJ,CAAC;YACF,IAAI,KAAK,IAAI,IAAI,EAAE;gBACf,qCAAgB,CAAC,mBAAmB,CAAC,IAAI,EAAE,KAAK,EAAE,qCAAgB,CAAC,WAAW,CAAC,CAAC;aACnF;YACD,IAAI,iCAAW,CAAC,MAAM,CAAC,EAAE;gBACrB,IAAI,CAAC,iBAAiB,GAAG,IAAI,uCAAiB,EAAE,CAAC;gBACjD,qCAAgB,CAAC,mBAAmB,CAAC,IAAI,EAAE,IAAI,CAAC,iBAAiB,EAAE,qCAAgB,CAAC,YAAY,CAAC,CAAC;gBAClG,IAAI,CAAC,iBAAiB,CAAC,aAAa,CAAE,MAAiC,CAAC,CAAC;aAC5E;YACD,OAAO,IAAI,CAAC;QAChB,CAAC;KAAA;CACJ;AAnED,oBAmEC"}
\ No newline at end of file
diff --git a/dist/exec_auth.d.ts b/dist/exec_auth.d.ts
new file mode 100644
index 0000000000..60e8ca93d2
--- /dev/null
+++ b/dist/exec_auth.d.ts
@@ -0,0 +1,22 @@
+///
+import https = require('https');
+import request = require('request');
+import { Authenticator } from './auth';
+import { User } from './config_types';
+export interface CredentialStatus {
+ readonly token: string;
+ readonly clientCertificateData: string;
+ readonly clientKeyData: string;
+ readonly expirationTimestamp: string;
+}
+export interface Credential {
+ readonly status: CredentialStatus;
+}
+export declare class ExecAuth implements Authenticator {
+ private readonly tokenCache;
+ private execFn;
+ isAuthProvider(user: User): boolean;
+ applyAuthentication(user: User, opts: request.Options | https.RequestOptions): Promise;
+ private getToken;
+ private getCredential;
+}
diff --git a/dist/exec_auth.js b/dist/exec_auth.js
new file mode 100644
index 0000000000..5c997bb307
--- /dev/null
+++ b/dist/exec_auth.js
@@ -0,0 +1,91 @@
+"use strict";
+Object.defineProperty(exports, "__esModule", { value: true });
+const tslib_1 = require("tslib");
+const execa = require("execa");
+class ExecAuth {
+ constructor() {
+ this.tokenCache = {};
+ this.execFn = execa.sync;
+ }
+ isAuthProvider(user) {
+ if (!user) {
+ return false;
+ }
+ if (user.exec) {
+ return true;
+ }
+ if (!user.authProvider) {
+ return false;
+ }
+ return (user.authProvider.name === 'exec' || !!(user.authProvider.config && user.authProvider.config.exec));
+ }
+ applyAuthentication(user, opts) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const credential = this.getCredential(user);
+ if (!credential) {
+ return;
+ }
+ if (credential.status.clientCertificateData) {
+ opts.cert = credential.status.clientCertificateData;
+ }
+ if (credential.status.clientKeyData) {
+ opts.key = credential.status.clientKeyData;
+ }
+ const token = this.getToken(credential);
+ if (token) {
+ if (!opts.headers) {
+ opts.headers = [];
+ }
+ opts.headers.Authorization = `Bearer ${token}`;
+ }
+ });
+ }
+ getToken(credential) {
+ if (!credential) {
+ return null;
+ }
+ if (credential.status.token) {
+ return credential.status.token;
+ }
+ return null;
+ }
+ getCredential(user) {
+ // TODO: Add a unit test for token caching.
+ const cachedToken = this.tokenCache[user.name];
+ if (cachedToken) {
+ const date = Date.parse(cachedToken.status.expirationTimestamp);
+ if (date > Date.now()) {
+ return cachedToken;
+ }
+ this.tokenCache[user.name] = null;
+ }
+ let exec = null;
+ if (user.authProvider && user.authProvider.config) {
+ exec = user.authProvider.config.exec;
+ }
+ if (user.exec) {
+ exec = user.exec;
+ }
+ if (!exec) {
+ return null;
+ }
+ if (!exec.command) {
+ throw new Error('No command was specified for exec authProvider!');
+ }
+ let opts = {};
+ if (exec.env) {
+ const env = process.env;
+ exec.env.forEach((elt) => (env[elt.name] = elt.value));
+ opts = Object.assign({}, opts, { env });
+ }
+ const result = this.execFn(exec.command, exec.args, opts);
+ if (result.code === 0) {
+ const obj = JSON.parse(result.stdout);
+ this.tokenCache[user.name] = obj;
+ return obj;
+ }
+ throw new Error(result.stderr);
+ }
+}
+exports.ExecAuth = ExecAuth;
+//# sourceMappingURL=exec_auth.js.map
\ No newline at end of file
diff --git a/dist/exec_auth.js.map b/dist/exec_auth.js.map
new file mode 100644
index 0000000000..f1e00ce381
--- /dev/null
+++ b/dist/exec_auth.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"exec_auth.js","sourceRoot":"","sources":["../src/exec_auth.ts"],"names":[],"mappings":"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"}
\ No newline at end of file
diff --git a/dist/file_auth.d.ts b/dist/file_auth.d.ts
new file mode 100644
index 0000000000..3df039d2b7
--- /dev/null
+++ b/dist/file_auth.d.ts
@@ -0,0 +1,13 @@
+///
+import https = require('https');
+import request = require('request');
+import { Authenticator } from './auth';
+import { User } from './config_types';
+export declare class FileAuth implements Authenticator {
+ private token;
+ private lastRead;
+ isAuthProvider(user: User): boolean;
+ applyAuthentication(user: User, opts: request.Options | https.RequestOptions): Promise;
+ private refreshToken;
+ private isTokenExpired;
+}
diff --git a/dist/file_auth.js b/dist/file_auth.js
new file mode 100644
index 0000000000..65007d7ad1
--- /dev/null
+++ b/dist/file_auth.js
@@ -0,0 +1,45 @@
+"use strict";
+Object.defineProperty(exports, "__esModule", { value: true });
+const tslib_1 = require("tslib");
+const fs = require("fs");
+class FileAuth {
+ constructor() {
+ this.token = null;
+ this.lastRead = null;
+ }
+ isAuthProvider(user) {
+ return user.authProvider && user.authProvider.config && user.authProvider.config.tokenFile;
+ }
+ applyAuthentication(user, opts) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ if (this.token == null) {
+ this.refreshToken(user.authProvider.config.tokenFile);
+ }
+ if (this.isTokenExpired()) {
+ this.refreshToken(user.authProvider.config.tokenFile);
+ }
+ if (this.token) {
+ opts.headers.Authorization = `Bearer ${this.token}`;
+ }
+ });
+ }
+ refreshToken(filePath) {
+ // TODO make this async?
+ this.token = fs.readFileSync(filePath).toString('UTF-8');
+ this.lastRead = new Date();
+ }
+ isTokenExpired() {
+ if (this.lastRead === null) {
+ return true;
+ }
+ const now = new Date();
+ const delta = (now.getTime() - this.lastRead.getTime()) / 1000;
+ // For now just refresh every 60 seconds. This is imperfect since the token
+ // could be out of date for this time, but it is unlikely and it's also what
+ // the client-go library does.
+ // TODO: Use file notifications instead?
+ return delta > 60;
+ }
+}
+exports.FileAuth = FileAuth;
+//# sourceMappingURL=file_auth.js.map
\ No newline at end of file
diff --git a/dist/file_auth.js.map b/dist/file_auth.js.map
new file mode 100644
index 0000000000..ab3047014e
--- /dev/null
+++ b/dist/file_auth.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"file_auth.js","sourceRoot":"","sources":["../src/file_auth.ts"],"names":[],"mappings":";;;AAAA,yBAA0B;AAO1B,MAAa,QAAQ;IAArB;QACY,UAAK,GAAkB,IAAI,CAAC;QAC5B,aAAQ,GAAgB,IAAI,CAAC;IAoCzC,CAAC;IAlCU,cAAc,CAAC,IAAU;QAC5B,OAAO,IAAI,CAAC,YAAY,IAAI,IAAI,CAAC,YAAY,CAAC,MAAM,IAAI,IAAI,CAAC,YAAY,CAAC,MAAM,CAAC,SAAS,CAAC;IAC/F,CAAC;IAEY,mBAAmB,CAAC,IAAU,EAAE,IAA4C;;YACrF,IAAI,IAAI,CAAC,KAAK,IAAI,IAAI,EAAE;gBACpB,IAAI,CAAC,YAAY,CAAC,IAAI,CAAC,YAAY,CAAC,MAAM,CAAC,SAAS,CAAC,CAAC;aACzD;YACD,IAAI,IAAI,CAAC,cAAc,EAAE,EAAE;gBACvB,IAAI,CAAC,YAAY,CAAC,IAAI,CAAC,YAAY,CAAC,MAAM,CAAC,SAAS,CAAC,CAAC;aACzD;YACD,IAAI,IAAI,CAAC,KAAK,EAAE;gBACZ,IAAI,CAAC,OAAQ,CAAC,aAAa,GAAG,UAAU,IAAI,CAAC,KAAK,EAAE,CAAC;aACxD;QACL,CAAC;KAAA;IAEO,YAAY,CAAC,QAAgB;QACjC,wBAAwB;QACxB,IAAI,CAAC,KAAK,GAAG,EAAE,CAAC,YAAY,CAAC,QAAQ,CAAC,CAAC,QAAQ,CAAC,OAAO,CAAC,CAAC;QACzD,IAAI,CAAC,QAAQ,GAAG,IAAI,IAAI,EAAE,CAAC;IAC/B,CAAC;IAEO,cAAc;QAClB,IAAI,IAAI,CAAC,QAAQ,KAAK,IAAI,EAAE;YACxB,OAAO,IAAI,CAAC;SACf;QACD,MAAM,GAAG,GAAG,IAAI,IAAI,EAAE,CAAC;QACvB,MAAM,KAAK,GAAG,CAAC,GAAG,CAAC,OAAO,EAAE,GAAG,IAAI,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,GAAG,IAAI,CAAC;QAC/D,2EAA2E;QAC3E,4EAA4E;QAC5E,8BAA8B;QAC9B,wCAAwC;QACxC,OAAO,KAAK,GAAG,EAAE,CAAC;IACtB,CAAC;CACJ;AAtCD,4BAsCC"}
\ No newline at end of file
diff --git a/dist/gen/api.d.ts b/dist/gen/api.d.ts
new file mode 100644
index 0000000000..9766b33f6b
--- /dev/null
+++ b/dist/gen/api.d.ts
@@ -0,0 +1,2 @@
+export * from './api/apis';
+export * from './model/models';
diff --git a/dist/gen/api.js b/dist/gen/api.js
new file mode 100644
index 0000000000..6cf9fec7bf
--- /dev/null
+++ b/dist/gen/api.js
@@ -0,0 +1,7 @@
+"use strict";
+Object.defineProperty(exports, "__esModule", { value: true });
+const tslib_1 = require("tslib");
+// This is the entrypoint for the package
+tslib_1.__exportStar(require("./api/apis"), exports);
+tslib_1.__exportStar(require("./model/models"), exports);
+//# sourceMappingURL=api.js.map
\ No newline at end of file
diff --git a/dist/gen/api.js.map b/dist/gen/api.js.map
new file mode 100644
index 0000000000..a20ef3fc0d
--- /dev/null
+++ b/dist/gen/api.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"api.js","sourceRoot":"","sources":["../../src/gen/api.ts"],"names":[],"mappings":";;;AAAA,yCAAyC;AACzC,qDAA2B;AAC3B,yDAA+B"}
\ No newline at end of file
diff --git a/dist/gen/api/admissionregistrationApi.d.ts b/dist/gen/api/admissionregistrationApi.d.ts
new file mode 100644
index 0000000000..e07b50482e
--- /dev/null
+++ b/dist/gen/api/admissionregistrationApi.d.ts
@@ -0,0 +1,44 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+///
+import http = require('http');
+import { V1APIGroup } from '../model/v1APIGroup';
+import { Authentication } from '../model/models';
+import { ApiKeyAuth } from '../model/models';
+export declare enum AdmissionregistrationApiApiKeys {
+ BearerToken = 0
+}
+export declare class AdmissionregistrationApi {
+ protected _basePath: string;
+ protected defaultHeaders: any;
+ protected _useQuerystring: boolean;
+ protected authentications: {
+ 'default': Authentication;
+ 'BearerToken': ApiKeyAuth;
+ };
+ constructor(basePath?: string);
+ useQuerystring: boolean;
+ basePath: string;
+ setDefaultAuthentication(auth: Authentication): void;
+ setApiKey(key: AdmissionregistrationApiApiKeys, value: string): void;
+ /**
+ * get information of a group
+ */
+ getAPIGroup(options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1APIGroup;
+ }>;
+}
diff --git a/dist/gen/api/admissionregistrationApi.js b/dist/gen/api/admissionregistrationApi.js
new file mode 100644
index 0000000000..00b2083004
--- /dev/null
+++ b/dist/gen/api/admissionregistrationApi.js
@@ -0,0 +1,113 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+const tslib_1 = require("tslib");
+const localVarRequest = require("request");
+const models_1 = require("../model/models");
+const models_2 = require("../model/models");
+let defaultBasePath = 'http://localhost/';
+// ===============================================
+// This file is autogenerated - Please do not edit
+// ===============================================
+var AdmissionregistrationApiApiKeys;
+(function (AdmissionregistrationApiApiKeys) {
+ AdmissionregistrationApiApiKeys[AdmissionregistrationApiApiKeys["BearerToken"] = 0] = "BearerToken";
+})(AdmissionregistrationApiApiKeys = exports.AdmissionregistrationApiApiKeys || (exports.AdmissionregistrationApiApiKeys = {}));
+class AdmissionregistrationApi {
+ constructor(basePathOrUsername, password, basePath) {
+ this._basePath = defaultBasePath;
+ this.defaultHeaders = {};
+ this._useQuerystring = false;
+ this.authentications = {
+ 'default': new models_1.VoidAuth(),
+ 'BearerToken': new models_2.ApiKeyAuth('header', 'authorization'),
+ };
+ if (password) {
+ if (basePath) {
+ this.basePath = basePath;
+ }
+ }
+ else {
+ if (basePathOrUsername) {
+ this.basePath = basePathOrUsername;
+ }
+ }
+ }
+ set useQuerystring(value) {
+ this._useQuerystring = value;
+ }
+ set basePath(basePath) {
+ this._basePath = basePath;
+ }
+ get basePath() {
+ return this._basePath;
+ }
+ setDefaultAuthentication(auth) {
+ this.authentications.default = auth;
+ }
+ setApiKey(key, value) {
+ this.authentications[AdmissionregistrationApiApiKeys[key]].apiKey = value;
+ }
+ /**
+ * get information of a group
+ */
+ getAPIGroup(options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/admissionregistration.k8s.io/';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1APIGroup");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+}
+exports.AdmissionregistrationApi = AdmissionregistrationApi;
+//# sourceMappingURL=admissionregistrationApi.js.map
\ No newline at end of file
diff --git a/dist/gen/api/admissionregistrationApi.js.map b/dist/gen/api/admissionregistrationApi.js.map
new file mode 100644
index 0000000000..4015c924e8
--- /dev/null
+++ b/dist/gen/api/admissionregistrationApi.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"admissionregistrationApi.js","sourceRoot":"","sources":["../../../src/gen/api/admissionregistrationApi.ts"],"names":[],"mappings":"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"}
\ No newline at end of file
diff --git a/dist/gen/api/admissionregistrationV1beta1Api.d.ts b/dist/gen/api/admissionregistrationV1beta1Api.d.ts
new file mode 100644
index 0000000000..b28db70f9c
--- /dev/null
+++ b/dist/gen/api/admissionregistrationV1beta1Api.d.ts
@@ -0,0 +1,302 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+///
+import http = require('http');
+import { V1APIResourceList } from '../model/v1APIResourceList';
+import { V1DeleteOptions } from '../model/v1DeleteOptions';
+import { V1Status } from '../model/v1Status';
+import { V1beta1MutatingWebhookConfiguration } from '../model/v1beta1MutatingWebhookConfiguration';
+import { V1beta1MutatingWebhookConfigurationList } from '../model/v1beta1MutatingWebhookConfigurationList';
+import { V1beta1ValidatingWebhookConfiguration } from '../model/v1beta1ValidatingWebhookConfiguration';
+import { V1beta1ValidatingWebhookConfigurationList } from '../model/v1beta1ValidatingWebhookConfigurationList';
+import { Authentication } from '../model/models';
+import { ApiKeyAuth } from '../model/models';
+export declare enum AdmissionregistrationV1beta1ApiApiKeys {
+ BearerToken = 0
+}
+export declare class AdmissionregistrationV1beta1Api {
+ protected _basePath: string;
+ protected defaultHeaders: any;
+ protected _useQuerystring: boolean;
+ protected authentications: {
+ 'default': Authentication;
+ 'BearerToken': ApiKeyAuth;
+ };
+ constructor(basePath?: string);
+ useQuerystring: boolean;
+ basePath: string;
+ setDefaultAuthentication(auth: Authentication): void;
+ setApiKey(key: AdmissionregistrationV1beta1ApiApiKeys, value: string): void;
+ /**
+ * create a MutatingWebhookConfiguration
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createMutatingWebhookConfiguration(body: V1beta1MutatingWebhookConfiguration, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1MutatingWebhookConfiguration;
+ }>;
+ /**
+ * create a ValidatingWebhookConfiguration
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createValidatingWebhookConfiguration(body: V1beta1ValidatingWebhookConfiguration, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1ValidatingWebhookConfiguration;
+ }>;
+ /**
+ * delete collection of MutatingWebhookConfiguration
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionMutatingWebhookConfiguration(pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, dryRun?: string, fieldSelector?: string, gracePeriodSeconds?: number, labelSelector?: string, limit?: number, orphanDependents?: boolean, propagationPolicy?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete collection of ValidatingWebhookConfiguration
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionValidatingWebhookConfiguration(pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, dryRun?: string, fieldSelector?: string, gracePeriodSeconds?: number, labelSelector?: string, limit?: number, orphanDependents?: boolean, propagationPolicy?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete a MutatingWebhookConfiguration
+ * @param name name of the MutatingWebhookConfiguration
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteMutatingWebhookConfiguration(name: string, pretty?: string, dryRun?: string, gracePeriodSeconds?: number, orphanDependents?: boolean, propagationPolicy?: string, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete a ValidatingWebhookConfiguration
+ * @param name name of the ValidatingWebhookConfiguration
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteValidatingWebhookConfiguration(name: string, pretty?: string, dryRun?: string, gracePeriodSeconds?: number, orphanDependents?: boolean, propagationPolicy?: string, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * get available resources
+ */
+ getAPIResources(options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1APIResourceList;
+ }>;
+ /**
+ * list or watch objects of kind MutatingWebhookConfiguration
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listMutatingWebhookConfiguration(pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1MutatingWebhookConfigurationList;
+ }>;
+ /**
+ * list or watch objects of kind ValidatingWebhookConfiguration
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listValidatingWebhookConfiguration(pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1ValidatingWebhookConfigurationList;
+ }>;
+ /**
+ * partially update the specified MutatingWebhookConfiguration
+ * @param name name of the MutatingWebhookConfiguration
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchMutatingWebhookConfiguration(name: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1MutatingWebhookConfiguration;
+ }>;
+ /**
+ * partially update the specified ValidatingWebhookConfiguration
+ * @param name name of the ValidatingWebhookConfiguration
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchValidatingWebhookConfiguration(name: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1ValidatingWebhookConfiguration;
+ }>;
+ /**
+ * read the specified MutatingWebhookConfiguration
+ * @param name name of the MutatingWebhookConfiguration
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readMutatingWebhookConfiguration(name: string, pretty?: string, exact?: boolean, _export?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1MutatingWebhookConfiguration;
+ }>;
+ /**
+ * read the specified ValidatingWebhookConfiguration
+ * @param name name of the ValidatingWebhookConfiguration
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readValidatingWebhookConfiguration(name: string, pretty?: string, exact?: boolean, _export?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1ValidatingWebhookConfiguration;
+ }>;
+ /**
+ * replace the specified MutatingWebhookConfiguration
+ * @param name name of the MutatingWebhookConfiguration
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceMutatingWebhookConfiguration(name: string, body: V1beta1MutatingWebhookConfiguration, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1MutatingWebhookConfiguration;
+ }>;
+ /**
+ * replace the specified ValidatingWebhookConfiguration
+ * @param name name of the ValidatingWebhookConfiguration
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceValidatingWebhookConfiguration(name: string, body: V1beta1ValidatingWebhookConfiguration, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1ValidatingWebhookConfiguration;
+ }>;
+}
diff --git a/dist/gen/api/admissionregistrationV1beta1Api.js b/dist/gen/api/admissionregistrationV1beta1Api.js
new file mode 100644
index 0000000000..57c1478c61
--- /dev/null
+++ b/dist/gen/api/admissionregistrationV1beta1Api.js
@@ -0,0 +1,1225 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+const tslib_1 = require("tslib");
+const localVarRequest = require("request");
+const models_1 = require("../model/models");
+const models_2 = require("../model/models");
+let defaultBasePath = 'http://localhost/';
+// ===============================================
+// This file is autogenerated - Please do not edit
+// ===============================================
+var AdmissionregistrationV1beta1ApiApiKeys;
+(function (AdmissionregistrationV1beta1ApiApiKeys) {
+ AdmissionregistrationV1beta1ApiApiKeys[AdmissionregistrationV1beta1ApiApiKeys["BearerToken"] = 0] = "BearerToken";
+})(AdmissionregistrationV1beta1ApiApiKeys = exports.AdmissionregistrationV1beta1ApiApiKeys || (exports.AdmissionregistrationV1beta1ApiApiKeys = {}));
+class AdmissionregistrationV1beta1Api {
+ constructor(basePathOrUsername, password, basePath) {
+ this._basePath = defaultBasePath;
+ this.defaultHeaders = {};
+ this._useQuerystring = false;
+ this.authentications = {
+ 'default': new models_1.VoidAuth(),
+ 'BearerToken': new models_2.ApiKeyAuth('header', 'authorization'),
+ };
+ if (password) {
+ if (basePath) {
+ this.basePath = basePath;
+ }
+ }
+ else {
+ if (basePathOrUsername) {
+ this.basePath = basePathOrUsername;
+ }
+ }
+ }
+ set useQuerystring(value) {
+ this._useQuerystring = value;
+ }
+ set basePath(basePath) {
+ this._basePath = basePath;
+ }
+ get basePath() {
+ return this._basePath;
+ }
+ setDefaultAuthentication(auth) {
+ this.authentications.default = auth;
+ }
+ setApiKey(key, value) {
+ this.authentications[AdmissionregistrationV1beta1ApiApiKeys[key]].apiKey = value;
+ }
+ /**
+ * create a MutatingWebhookConfiguration
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createMutatingWebhookConfiguration(body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/admissionregistration.k8s.io/v1beta1/mutatingwebhookconfigurations';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling createMutatingWebhookConfiguration.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'POST',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1beta1MutatingWebhookConfiguration")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1MutatingWebhookConfiguration");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * create a ValidatingWebhookConfiguration
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createValidatingWebhookConfiguration(body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/admissionregistration.k8s.io/v1beta1/validatingwebhookconfigurations';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling createValidatingWebhookConfiguration.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'POST',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1beta1ValidatingWebhookConfiguration")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1ValidatingWebhookConfiguration");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete collection of MutatingWebhookConfiguration
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionMutatingWebhookConfiguration(pretty, allowWatchBookmarks, _continue, dryRun, fieldSelector, gracePeriodSeconds, labelSelector, limit, orphanDependents, propagationPolicy, resourceVersion, timeoutSeconds, watch, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/admissionregistration.k8s.io/v1beta1/mutatingwebhookconfigurations';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete collection of ValidatingWebhookConfiguration
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionValidatingWebhookConfiguration(pretty, allowWatchBookmarks, _continue, dryRun, fieldSelector, gracePeriodSeconds, labelSelector, limit, orphanDependents, propagationPolicy, resourceVersion, timeoutSeconds, watch, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/admissionregistration.k8s.io/v1beta1/validatingwebhookconfigurations';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete a MutatingWebhookConfiguration
+ * @param name name of the MutatingWebhookConfiguration
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteMutatingWebhookConfiguration(name, pretty, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/admissionregistration.k8s.io/v1beta1/mutatingwebhookconfigurations/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling deleteMutatingWebhookConfiguration.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete a ValidatingWebhookConfiguration
+ * @param name name of the ValidatingWebhookConfiguration
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteValidatingWebhookConfiguration(name, pretty, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/admissionregistration.k8s.io/v1beta1/validatingwebhookconfigurations/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling deleteValidatingWebhookConfiguration.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * get available resources
+ */
+ getAPIResources(options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/admissionregistration.k8s.io/v1beta1/';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1APIResourceList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind MutatingWebhookConfiguration
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listMutatingWebhookConfiguration(pretty, allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/admissionregistration.k8s.io/v1beta1/mutatingwebhookconfigurations';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1MutatingWebhookConfigurationList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind ValidatingWebhookConfiguration
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listValidatingWebhookConfiguration(pretty, allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/admissionregistration.k8s.io/v1beta1/validatingwebhookconfigurations';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1ValidatingWebhookConfigurationList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update the specified MutatingWebhookConfiguration
+ * @param name name of the MutatingWebhookConfiguration
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchMutatingWebhookConfiguration(name, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/admissionregistration.k8s.io/v1beta1/mutatingwebhookconfigurations/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchMutatingWebhookConfiguration.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchMutatingWebhookConfiguration.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1MutatingWebhookConfiguration");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update the specified ValidatingWebhookConfiguration
+ * @param name name of the ValidatingWebhookConfiguration
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchValidatingWebhookConfiguration(name, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/admissionregistration.k8s.io/v1beta1/validatingwebhookconfigurations/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchValidatingWebhookConfiguration.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchValidatingWebhookConfiguration.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1ValidatingWebhookConfiguration");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read the specified MutatingWebhookConfiguration
+ * @param name name of the MutatingWebhookConfiguration
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readMutatingWebhookConfiguration(name, pretty, exact, _export, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/admissionregistration.k8s.io/v1beta1/mutatingwebhookconfigurations/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readMutatingWebhookConfiguration.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (exact !== undefined) {
+ localVarQueryParameters['exact'] = models_1.ObjectSerializer.serialize(exact, "boolean");
+ }
+ if (_export !== undefined) {
+ localVarQueryParameters['export'] = models_1.ObjectSerializer.serialize(_export, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1MutatingWebhookConfiguration");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read the specified ValidatingWebhookConfiguration
+ * @param name name of the ValidatingWebhookConfiguration
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readValidatingWebhookConfiguration(name, pretty, exact, _export, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/admissionregistration.k8s.io/v1beta1/validatingwebhookconfigurations/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readValidatingWebhookConfiguration.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (exact !== undefined) {
+ localVarQueryParameters['exact'] = models_1.ObjectSerializer.serialize(exact, "boolean");
+ }
+ if (_export !== undefined) {
+ localVarQueryParameters['export'] = models_1.ObjectSerializer.serialize(_export, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1ValidatingWebhookConfiguration");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace the specified MutatingWebhookConfiguration
+ * @param name name of the MutatingWebhookConfiguration
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceMutatingWebhookConfiguration(name, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/admissionregistration.k8s.io/v1beta1/mutatingwebhookconfigurations/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceMutatingWebhookConfiguration.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceMutatingWebhookConfiguration.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1beta1MutatingWebhookConfiguration")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1MutatingWebhookConfiguration");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace the specified ValidatingWebhookConfiguration
+ * @param name name of the ValidatingWebhookConfiguration
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceValidatingWebhookConfiguration(name, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/admissionregistration.k8s.io/v1beta1/validatingwebhookconfigurations/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceValidatingWebhookConfiguration.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceValidatingWebhookConfiguration.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1beta1ValidatingWebhookConfiguration")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1ValidatingWebhookConfiguration");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+}
+exports.AdmissionregistrationV1beta1Api = AdmissionregistrationV1beta1Api;
+//# sourceMappingURL=admissionregistrationV1beta1Api.js.map
\ No newline at end of file
diff --git a/dist/gen/api/admissionregistrationV1beta1Api.js.map b/dist/gen/api/admissionregistrationV1beta1Api.js.map
new file mode 100644
index 0000000000..92bc6cbc9d
--- /dev/null
+++ b/dist/gen/api/admissionregistrationV1beta1Api.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"admissionregistrationV1beta1Api.js","sourceRoot":"","sources":["../../../src/gen/api/admissionregistrationV1beta1Api.ts"],"names":[],"mappings":"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"}
\ No newline at end of file
diff --git a/dist/gen/api/apiextensionsApi.d.ts b/dist/gen/api/apiextensionsApi.d.ts
new file mode 100644
index 0000000000..d09a3e4bfc
--- /dev/null
+++ b/dist/gen/api/apiextensionsApi.d.ts
@@ -0,0 +1,44 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+///
+import http = require('http');
+import { V1APIGroup } from '../model/v1APIGroup';
+import { Authentication } from '../model/models';
+import { ApiKeyAuth } from '../model/models';
+export declare enum ApiextensionsApiApiKeys {
+ BearerToken = 0
+}
+export declare class ApiextensionsApi {
+ protected _basePath: string;
+ protected defaultHeaders: any;
+ protected _useQuerystring: boolean;
+ protected authentications: {
+ 'default': Authentication;
+ 'BearerToken': ApiKeyAuth;
+ };
+ constructor(basePath?: string);
+ useQuerystring: boolean;
+ basePath: string;
+ setDefaultAuthentication(auth: Authentication): void;
+ setApiKey(key: ApiextensionsApiApiKeys, value: string): void;
+ /**
+ * get information of a group
+ */
+ getAPIGroup(options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1APIGroup;
+ }>;
+}
diff --git a/dist/gen/api/apiextensionsApi.js b/dist/gen/api/apiextensionsApi.js
new file mode 100644
index 0000000000..b399c5b960
--- /dev/null
+++ b/dist/gen/api/apiextensionsApi.js
@@ -0,0 +1,113 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+const tslib_1 = require("tslib");
+const localVarRequest = require("request");
+const models_1 = require("../model/models");
+const models_2 = require("../model/models");
+let defaultBasePath = 'http://localhost/';
+// ===============================================
+// This file is autogenerated - Please do not edit
+// ===============================================
+var ApiextensionsApiApiKeys;
+(function (ApiextensionsApiApiKeys) {
+ ApiextensionsApiApiKeys[ApiextensionsApiApiKeys["BearerToken"] = 0] = "BearerToken";
+})(ApiextensionsApiApiKeys = exports.ApiextensionsApiApiKeys || (exports.ApiextensionsApiApiKeys = {}));
+class ApiextensionsApi {
+ constructor(basePathOrUsername, password, basePath) {
+ this._basePath = defaultBasePath;
+ this.defaultHeaders = {};
+ this._useQuerystring = false;
+ this.authentications = {
+ 'default': new models_1.VoidAuth(),
+ 'BearerToken': new models_2.ApiKeyAuth('header', 'authorization'),
+ };
+ if (password) {
+ if (basePath) {
+ this.basePath = basePath;
+ }
+ }
+ else {
+ if (basePathOrUsername) {
+ this.basePath = basePathOrUsername;
+ }
+ }
+ }
+ set useQuerystring(value) {
+ this._useQuerystring = value;
+ }
+ set basePath(basePath) {
+ this._basePath = basePath;
+ }
+ get basePath() {
+ return this._basePath;
+ }
+ setDefaultAuthentication(auth) {
+ this.authentications.default = auth;
+ }
+ setApiKey(key, value) {
+ this.authentications[ApiextensionsApiApiKeys[key]].apiKey = value;
+ }
+ /**
+ * get information of a group
+ */
+ getAPIGroup(options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apiextensions.k8s.io/';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1APIGroup");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+}
+exports.ApiextensionsApi = ApiextensionsApi;
+//# sourceMappingURL=apiextensionsApi.js.map
\ No newline at end of file
diff --git a/dist/gen/api/apiextensionsApi.js.map b/dist/gen/api/apiextensionsApi.js.map
new file mode 100644
index 0000000000..eb492efd5d
--- /dev/null
+++ b/dist/gen/api/apiextensionsApi.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"apiextensionsApi.js","sourceRoot":"","sources":["../../../src/gen/api/apiextensionsApi.ts"],"names":[],"mappings":"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"}
\ No newline at end of file
diff --git a/dist/gen/api/apiextensionsV1beta1Api.d.ts b/dist/gen/api/apiextensionsV1beta1Api.d.ts
new file mode 100644
index 0000000000..87c7b2a2dd
--- /dev/null
+++ b/dist/gen/api/apiextensionsV1beta1Api.d.ts
@@ -0,0 +1,220 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+///
+import http = require('http');
+import { V1APIResourceList } from '../model/v1APIResourceList';
+import { V1DeleteOptions } from '../model/v1DeleteOptions';
+import { V1Status } from '../model/v1Status';
+import { V1beta1CustomResourceDefinition } from '../model/v1beta1CustomResourceDefinition';
+import { V1beta1CustomResourceDefinitionList } from '../model/v1beta1CustomResourceDefinitionList';
+import { Authentication } from '../model/models';
+import { ApiKeyAuth } from '../model/models';
+export declare enum ApiextensionsV1beta1ApiApiKeys {
+ BearerToken = 0
+}
+export declare class ApiextensionsV1beta1Api {
+ protected _basePath: string;
+ protected defaultHeaders: any;
+ protected _useQuerystring: boolean;
+ protected authentications: {
+ 'default': Authentication;
+ 'BearerToken': ApiKeyAuth;
+ };
+ constructor(basePath?: string);
+ useQuerystring: boolean;
+ basePath: string;
+ setDefaultAuthentication(auth: Authentication): void;
+ setApiKey(key: ApiextensionsV1beta1ApiApiKeys, value: string): void;
+ /**
+ * create a CustomResourceDefinition
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createCustomResourceDefinition(body: V1beta1CustomResourceDefinition, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1CustomResourceDefinition;
+ }>;
+ /**
+ * delete collection of CustomResourceDefinition
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionCustomResourceDefinition(pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, dryRun?: string, fieldSelector?: string, gracePeriodSeconds?: number, labelSelector?: string, limit?: number, orphanDependents?: boolean, propagationPolicy?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete a CustomResourceDefinition
+ * @param name name of the CustomResourceDefinition
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteCustomResourceDefinition(name: string, pretty?: string, dryRun?: string, gracePeriodSeconds?: number, orphanDependents?: boolean, propagationPolicy?: string, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * get available resources
+ */
+ getAPIResources(options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1APIResourceList;
+ }>;
+ /**
+ * list or watch objects of kind CustomResourceDefinition
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listCustomResourceDefinition(pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1CustomResourceDefinitionList;
+ }>;
+ /**
+ * partially update the specified CustomResourceDefinition
+ * @param name name of the CustomResourceDefinition
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchCustomResourceDefinition(name: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1CustomResourceDefinition;
+ }>;
+ /**
+ * partially update status of the specified CustomResourceDefinition
+ * @param name name of the CustomResourceDefinition
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchCustomResourceDefinitionStatus(name: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1CustomResourceDefinition;
+ }>;
+ /**
+ * read the specified CustomResourceDefinition
+ * @param name name of the CustomResourceDefinition
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readCustomResourceDefinition(name: string, pretty?: string, exact?: boolean, _export?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1CustomResourceDefinition;
+ }>;
+ /**
+ * read status of the specified CustomResourceDefinition
+ * @param name name of the CustomResourceDefinition
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readCustomResourceDefinitionStatus(name: string, pretty?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1CustomResourceDefinition;
+ }>;
+ /**
+ * replace the specified CustomResourceDefinition
+ * @param name name of the CustomResourceDefinition
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceCustomResourceDefinition(name: string, body: V1beta1CustomResourceDefinition, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1CustomResourceDefinition;
+ }>;
+ /**
+ * replace status of the specified CustomResourceDefinition
+ * @param name name of the CustomResourceDefinition
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceCustomResourceDefinitionStatus(name: string, body: V1beta1CustomResourceDefinition, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1CustomResourceDefinition;
+ }>;
+}
diff --git a/dist/gen/api/apiextensionsV1beta1Api.js b/dist/gen/api/apiextensionsV1beta1Api.js
new file mode 100644
index 0000000000..7e91856bfb
--- /dev/null
+++ b/dist/gen/api/apiextensionsV1beta1Api.js
@@ -0,0 +1,881 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+const tslib_1 = require("tslib");
+const localVarRequest = require("request");
+const models_1 = require("../model/models");
+const models_2 = require("../model/models");
+let defaultBasePath = 'http://localhost/';
+// ===============================================
+// This file is autogenerated - Please do not edit
+// ===============================================
+var ApiextensionsV1beta1ApiApiKeys;
+(function (ApiextensionsV1beta1ApiApiKeys) {
+ ApiextensionsV1beta1ApiApiKeys[ApiextensionsV1beta1ApiApiKeys["BearerToken"] = 0] = "BearerToken";
+})(ApiextensionsV1beta1ApiApiKeys = exports.ApiextensionsV1beta1ApiApiKeys || (exports.ApiextensionsV1beta1ApiApiKeys = {}));
+class ApiextensionsV1beta1Api {
+ constructor(basePathOrUsername, password, basePath) {
+ this._basePath = defaultBasePath;
+ this.defaultHeaders = {};
+ this._useQuerystring = false;
+ this.authentications = {
+ 'default': new models_1.VoidAuth(),
+ 'BearerToken': new models_2.ApiKeyAuth('header', 'authorization'),
+ };
+ if (password) {
+ if (basePath) {
+ this.basePath = basePath;
+ }
+ }
+ else {
+ if (basePathOrUsername) {
+ this.basePath = basePathOrUsername;
+ }
+ }
+ }
+ set useQuerystring(value) {
+ this._useQuerystring = value;
+ }
+ set basePath(basePath) {
+ this._basePath = basePath;
+ }
+ get basePath() {
+ return this._basePath;
+ }
+ setDefaultAuthentication(auth) {
+ this.authentications.default = auth;
+ }
+ setApiKey(key, value) {
+ this.authentications[ApiextensionsV1beta1ApiApiKeys[key]].apiKey = value;
+ }
+ /**
+ * create a CustomResourceDefinition
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createCustomResourceDefinition(body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling createCustomResourceDefinition.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'POST',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1beta1CustomResourceDefinition")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1CustomResourceDefinition");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete collection of CustomResourceDefinition
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionCustomResourceDefinition(pretty, allowWatchBookmarks, _continue, dryRun, fieldSelector, gracePeriodSeconds, labelSelector, limit, orphanDependents, propagationPolicy, resourceVersion, timeoutSeconds, watch, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete a CustomResourceDefinition
+ * @param name name of the CustomResourceDefinition
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteCustomResourceDefinition(name, pretty, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling deleteCustomResourceDefinition.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * get available resources
+ */
+ getAPIResources(options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apiextensions.k8s.io/v1beta1/';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1APIResourceList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind CustomResourceDefinition
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listCustomResourceDefinition(pretty, allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1CustomResourceDefinitionList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update the specified CustomResourceDefinition
+ * @param name name of the CustomResourceDefinition
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchCustomResourceDefinition(name, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchCustomResourceDefinition.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchCustomResourceDefinition.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1CustomResourceDefinition");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update status of the specified CustomResourceDefinition
+ * @param name name of the CustomResourceDefinition
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchCustomResourceDefinitionStatus(name, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions/{name}/status'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchCustomResourceDefinitionStatus.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchCustomResourceDefinitionStatus.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1CustomResourceDefinition");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read the specified CustomResourceDefinition
+ * @param name name of the CustomResourceDefinition
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readCustomResourceDefinition(name, pretty, exact, _export, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readCustomResourceDefinition.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (exact !== undefined) {
+ localVarQueryParameters['exact'] = models_1.ObjectSerializer.serialize(exact, "boolean");
+ }
+ if (_export !== undefined) {
+ localVarQueryParameters['export'] = models_1.ObjectSerializer.serialize(_export, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1CustomResourceDefinition");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read status of the specified CustomResourceDefinition
+ * @param name name of the CustomResourceDefinition
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readCustomResourceDefinitionStatus(name, pretty, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions/{name}/status'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readCustomResourceDefinitionStatus.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1CustomResourceDefinition");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace the specified CustomResourceDefinition
+ * @param name name of the CustomResourceDefinition
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceCustomResourceDefinition(name, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceCustomResourceDefinition.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceCustomResourceDefinition.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1beta1CustomResourceDefinition")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1CustomResourceDefinition");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace status of the specified CustomResourceDefinition
+ * @param name name of the CustomResourceDefinition
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceCustomResourceDefinitionStatus(name, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions/{name}/status'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceCustomResourceDefinitionStatus.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceCustomResourceDefinitionStatus.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1beta1CustomResourceDefinition")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1CustomResourceDefinition");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+}
+exports.ApiextensionsV1beta1Api = ApiextensionsV1beta1Api;
+//# sourceMappingURL=apiextensionsV1beta1Api.js.map
\ No newline at end of file
diff --git a/dist/gen/api/apiextensionsV1beta1Api.js.map b/dist/gen/api/apiextensionsV1beta1Api.js.map
new file mode 100644
index 0000000000..b158fffd31
--- /dev/null
+++ b/dist/gen/api/apiextensionsV1beta1Api.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"apiextensionsV1beta1Api.js","sourceRoot":"","sources":["../../../src/gen/api/apiextensionsV1beta1Api.ts"],"names":[],"mappings":"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"}
\ No newline at end of file
diff --git a/dist/gen/api/apiregistrationApi.d.ts b/dist/gen/api/apiregistrationApi.d.ts
new file mode 100644
index 0000000000..2e08ec4f6f
--- /dev/null
+++ b/dist/gen/api/apiregistrationApi.d.ts
@@ -0,0 +1,44 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+///
+import http = require('http');
+import { V1APIGroup } from '../model/v1APIGroup';
+import { Authentication } from '../model/models';
+import { ApiKeyAuth } from '../model/models';
+export declare enum ApiregistrationApiApiKeys {
+ BearerToken = 0
+}
+export declare class ApiregistrationApi {
+ protected _basePath: string;
+ protected defaultHeaders: any;
+ protected _useQuerystring: boolean;
+ protected authentications: {
+ 'default': Authentication;
+ 'BearerToken': ApiKeyAuth;
+ };
+ constructor(basePath?: string);
+ useQuerystring: boolean;
+ basePath: string;
+ setDefaultAuthentication(auth: Authentication): void;
+ setApiKey(key: ApiregistrationApiApiKeys, value: string): void;
+ /**
+ * get information of a group
+ */
+ getAPIGroup(options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1APIGroup;
+ }>;
+}
diff --git a/dist/gen/api/apiregistrationApi.js b/dist/gen/api/apiregistrationApi.js
new file mode 100644
index 0000000000..6248839f2f
--- /dev/null
+++ b/dist/gen/api/apiregistrationApi.js
@@ -0,0 +1,113 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+const tslib_1 = require("tslib");
+const localVarRequest = require("request");
+const models_1 = require("../model/models");
+const models_2 = require("../model/models");
+let defaultBasePath = 'http://localhost/';
+// ===============================================
+// This file is autogenerated - Please do not edit
+// ===============================================
+var ApiregistrationApiApiKeys;
+(function (ApiregistrationApiApiKeys) {
+ ApiregistrationApiApiKeys[ApiregistrationApiApiKeys["BearerToken"] = 0] = "BearerToken";
+})(ApiregistrationApiApiKeys = exports.ApiregistrationApiApiKeys || (exports.ApiregistrationApiApiKeys = {}));
+class ApiregistrationApi {
+ constructor(basePathOrUsername, password, basePath) {
+ this._basePath = defaultBasePath;
+ this.defaultHeaders = {};
+ this._useQuerystring = false;
+ this.authentications = {
+ 'default': new models_1.VoidAuth(),
+ 'BearerToken': new models_2.ApiKeyAuth('header', 'authorization'),
+ };
+ if (password) {
+ if (basePath) {
+ this.basePath = basePath;
+ }
+ }
+ else {
+ if (basePathOrUsername) {
+ this.basePath = basePathOrUsername;
+ }
+ }
+ }
+ set useQuerystring(value) {
+ this._useQuerystring = value;
+ }
+ set basePath(basePath) {
+ this._basePath = basePath;
+ }
+ get basePath() {
+ return this._basePath;
+ }
+ setDefaultAuthentication(auth) {
+ this.authentications.default = auth;
+ }
+ setApiKey(key, value) {
+ this.authentications[ApiregistrationApiApiKeys[key]].apiKey = value;
+ }
+ /**
+ * get information of a group
+ */
+ getAPIGroup(options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apiregistration.k8s.io/';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1APIGroup");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+}
+exports.ApiregistrationApi = ApiregistrationApi;
+//# sourceMappingURL=apiregistrationApi.js.map
\ No newline at end of file
diff --git a/dist/gen/api/apiregistrationApi.js.map b/dist/gen/api/apiregistrationApi.js.map
new file mode 100644
index 0000000000..271f36e460
--- /dev/null
+++ b/dist/gen/api/apiregistrationApi.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"apiregistrationApi.js","sourceRoot":"","sources":["../../../src/gen/api/apiregistrationApi.ts"],"names":[],"mappings":"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"}
\ No newline at end of file
diff --git a/dist/gen/api/apiregistrationV1Api.d.ts b/dist/gen/api/apiregistrationV1Api.d.ts
new file mode 100644
index 0000000000..db2866aa04
--- /dev/null
+++ b/dist/gen/api/apiregistrationV1Api.d.ts
@@ -0,0 +1,220 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+///
+import http = require('http');
+import { V1APIResourceList } from '../model/v1APIResourceList';
+import { V1APIService } from '../model/v1APIService';
+import { V1APIServiceList } from '../model/v1APIServiceList';
+import { V1DeleteOptions } from '../model/v1DeleteOptions';
+import { V1Status } from '../model/v1Status';
+import { Authentication } from '../model/models';
+import { ApiKeyAuth } from '../model/models';
+export declare enum ApiregistrationV1ApiApiKeys {
+ BearerToken = 0
+}
+export declare class ApiregistrationV1Api {
+ protected _basePath: string;
+ protected defaultHeaders: any;
+ protected _useQuerystring: boolean;
+ protected authentications: {
+ 'default': Authentication;
+ 'BearerToken': ApiKeyAuth;
+ };
+ constructor(basePath?: string);
+ useQuerystring: boolean;
+ basePath: string;
+ setDefaultAuthentication(auth: Authentication): void;
+ setApiKey(key: ApiregistrationV1ApiApiKeys, value: string): void;
+ /**
+ * create an APIService
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createAPIService(body: V1APIService, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1APIService;
+ }>;
+ /**
+ * delete an APIService
+ * @param name name of the APIService
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteAPIService(name: string, pretty?: string, dryRun?: string, gracePeriodSeconds?: number, orphanDependents?: boolean, propagationPolicy?: string, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete collection of APIService
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionAPIService(pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, dryRun?: string, fieldSelector?: string, gracePeriodSeconds?: number, labelSelector?: string, limit?: number, orphanDependents?: boolean, propagationPolicy?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * get available resources
+ */
+ getAPIResources(options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1APIResourceList;
+ }>;
+ /**
+ * list or watch objects of kind APIService
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listAPIService(pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1APIServiceList;
+ }>;
+ /**
+ * partially update the specified APIService
+ * @param name name of the APIService
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchAPIService(name: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1APIService;
+ }>;
+ /**
+ * partially update status of the specified APIService
+ * @param name name of the APIService
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchAPIServiceStatus(name: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1APIService;
+ }>;
+ /**
+ * read the specified APIService
+ * @param name name of the APIService
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readAPIService(name: string, pretty?: string, exact?: boolean, _export?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1APIService;
+ }>;
+ /**
+ * read status of the specified APIService
+ * @param name name of the APIService
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readAPIServiceStatus(name: string, pretty?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1APIService;
+ }>;
+ /**
+ * replace the specified APIService
+ * @param name name of the APIService
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceAPIService(name: string, body: V1APIService, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1APIService;
+ }>;
+ /**
+ * replace status of the specified APIService
+ * @param name name of the APIService
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceAPIServiceStatus(name: string, body: V1APIService, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1APIService;
+ }>;
+}
diff --git a/dist/gen/api/apiregistrationV1Api.js b/dist/gen/api/apiregistrationV1Api.js
new file mode 100644
index 0000000000..956572a8f6
--- /dev/null
+++ b/dist/gen/api/apiregistrationV1Api.js
@@ -0,0 +1,881 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+const tslib_1 = require("tslib");
+const localVarRequest = require("request");
+const models_1 = require("../model/models");
+const models_2 = require("../model/models");
+let defaultBasePath = 'http://localhost/';
+// ===============================================
+// This file is autogenerated - Please do not edit
+// ===============================================
+var ApiregistrationV1ApiApiKeys;
+(function (ApiregistrationV1ApiApiKeys) {
+ ApiregistrationV1ApiApiKeys[ApiregistrationV1ApiApiKeys["BearerToken"] = 0] = "BearerToken";
+})(ApiregistrationV1ApiApiKeys = exports.ApiregistrationV1ApiApiKeys || (exports.ApiregistrationV1ApiApiKeys = {}));
+class ApiregistrationV1Api {
+ constructor(basePathOrUsername, password, basePath) {
+ this._basePath = defaultBasePath;
+ this.defaultHeaders = {};
+ this._useQuerystring = false;
+ this.authentications = {
+ 'default': new models_1.VoidAuth(),
+ 'BearerToken': new models_2.ApiKeyAuth('header', 'authorization'),
+ };
+ if (password) {
+ if (basePath) {
+ this.basePath = basePath;
+ }
+ }
+ else {
+ if (basePathOrUsername) {
+ this.basePath = basePathOrUsername;
+ }
+ }
+ }
+ set useQuerystring(value) {
+ this._useQuerystring = value;
+ }
+ set basePath(basePath) {
+ this._basePath = basePath;
+ }
+ get basePath() {
+ return this._basePath;
+ }
+ setDefaultAuthentication(auth) {
+ this.authentications.default = auth;
+ }
+ setApiKey(key, value) {
+ this.authentications[ApiregistrationV1ApiApiKeys[key]].apiKey = value;
+ }
+ /**
+ * create an APIService
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createAPIService(body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apiregistration.k8s.io/v1/apiservices';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling createAPIService.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'POST',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1APIService")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1APIService");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete an APIService
+ * @param name name of the APIService
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteAPIService(name, pretty, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apiregistration.k8s.io/v1/apiservices/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling deleteAPIService.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete collection of APIService
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionAPIService(pretty, allowWatchBookmarks, _continue, dryRun, fieldSelector, gracePeriodSeconds, labelSelector, limit, orphanDependents, propagationPolicy, resourceVersion, timeoutSeconds, watch, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apiregistration.k8s.io/v1/apiservices';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * get available resources
+ */
+ getAPIResources(options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apiregistration.k8s.io/v1/';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1APIResourceList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind APIService
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listAPIService(pretty, allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apiregistration.k8s.io/v1/apiservices';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1APIServiceList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update the specified APIService
+ * @param name name of the APIService
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchAPIService(name, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apiregistration.k8s.io/v1/apiservices/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchAPIService.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchAPIService.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1APIService");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update status of the specified APIService
+ * @param name name of the APIService
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchAPIServiceStatus(name, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apiregistration.k8s.io/v1/apiservices/{name}/status'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchAPIServiceStatus.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchAPIServiceStatus.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1APIService");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read the specified APIService
+ * @param name name of the APIService
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readAPIService(name, pretty, exact, _export, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apiregistration.k8s.io/v1/apiservices/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readAPIService.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (exact !== undefined) {
+ localVarQueryParameters['exact'] = models_1.ObjectSerializer.serialize(exact, "boolean");
+ }
+ if (_export !== undefined) {
+ localVarQueryParameters['export'] = models_1.ObjectSerializer.serialize(_export, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1APIService");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read status of the specified APIService
+ * @param name name of the APIService
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readAPIServiceStatus(name, pretty, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apiregistration.k8s.io/v1/apiservices/{name}/status'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readAPIServiceStatus.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1APIService");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace the specified APIService
+ * @param name name of the APIService
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceAPIService(name, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apiregistration.k8s.io/v1/apiservices/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceAPIService.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceAPIService.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1APIService")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1APIService");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace status of the specified APIService
+ * @param name name of the APIService
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceAPIServiceStatus(name, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apiregistration.k8s.io/v1/apiservices/{name}/status'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceAPIServiceStatus.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceAPIServiceStatus.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1APIService")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1APIService");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+}
+exports.ApiregistrationV1Api = ApiregistrationV1Api;
+//# sourceMappingURL=apiregistrationV1Api.js.map
\ No newline at end of file
diff --git a/dist/gen/api/apiregistrationV1Api.js.map b/dist/gen/api/apiregistrationV1Api.js.map
new file mode 100644
index 0000000000..48cf05f99a
--- /dev/null
+++ b/dist/gen/api/apiregistrationV1Api.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"apiregistrationV1Api.js","sourceRoot":"","sources":["../../../src/gen/api/apiregistrationV1Api.ts"],"names":[],"mappings":"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"}
\ No newline at end of file
diff --git a/dist/gen/api/apiregistrationV1beta1Api.d.ts b/dist/gen/api/apiregistrationV1beta1Api.d.ts
new file mode 100644
index 0000000000..0726764a11
--- /dev/null
+++ b/dist/gen/api/apiregistrationV1beta1Api.d.ts
@@ -0,0 +1,220 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+///
+import http = require('http');
+import { V1APIResourceList } from '../model/v1APIResourceList';
+import { V1DeleteOptions } from '../model/v1DeleteOptions';
+import { V1Status } from '../model/v1Status';
+import { V1beta1APIService } from '../model/v1beta1APIService';
+import { V1beta1APIServiceList } from '../model/v1beta1APIServiceList';
+import { Authentication } from '../model/models';
+import { ApiKeyAuth } from '../model/models';
+export declare enum ApiregistrationV1beta1ApiApiKeys {
+ BearerToken = 0
+}
+export declare class ApiregistrationV1beta1Api {
+ protected _basePath: string;
+ protected defaultHeaders: any;
+ protected _useQuerystring: boolean;
+ protected authentications: {
+ 'default': Authentication;
+ 'BearerToken': ApiKeyAuth;
+ };
+ constructor(basePath?: string);
+ useQuerystring: boolean;
+ basePath: string;
+ setDefaultAuthentication(auth: Authentication): void;
+ setApiKey(key: ApiregistrationV1beta1ApiApiKeys, value: string): void;
+ /**
+ * create an APIService
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createAPIService(body: V1beta1APIService, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1APIService;
+ }>;
+ /**
+ * delete an APIService
+ * @param name name of the APIService
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteAPIService(name: string, pretty?: string, dryRun?: string, gracePeriodSeconds?: number, orphanDependents?: boolean, propagationPolicy?: string, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete collection of APIService
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionAPIService(pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, dryRun?: string, fieldSelector?: string, gracePeriodSeconds?: number, labelSelector?: string, limit?: number, orphanDependents?: boolean, propagationPolicy?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * get available resources
+ */
+ getAPIResources(options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1APIResourceList;
+ }>;
+ /**
+ * list or watch objects of kind APIService
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listAPIService(pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1APIServiceList;
+ }>;
+ /**
+ * partially update the specified APIService
+ * @param name name of the APIService
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchAPIService(name: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1APIService;
+ }>;
+ /**
+ * partially update status of the specified APIService
+ * @param name name of the APIService
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchAPIServiceStatus(name: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1APIService;
+ }>;
+ /**
+ * read the specified APIService
+ * @param name name of the APIService
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readAPIService(name: string, pretty?: string, exact?: boolean, _export?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1APIService;
+ }>;
+ /**
+ * read status of the specified APIService
+ * @param name name of the APIService
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readAPIServiceStatus(name: string, pretty?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1APIService;
+ }>;
+ /**
+ * replace the specified APIService
+ * @param name name of the APIService
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceAPIService(name: string, body: V1beta1APIService, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1APIService;
+ }>;
+ /**
+ * replace status of the specified APIService
+ * @param name name of the APIService
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceAPIServiceStatus(name: string, body: V1beta1APIService, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1APIService;
+ }>;
+}
diff --git a/dist/gen/api/apiregistrationV1beta1Api.js b/dist/gen/api/apiregistrationV1beta1Api.js
new file mode 100644
index 0000000000..b13bf046ec
--- /dev/null
+++ b/dist/gen/api/apiregistrationV1beta1Api.js
@@ -0,0 +1,881 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+const tslib_1 = require("tslib");
+const localVarRequest = require("request");
+const models_1 = require("../model/models");
+const models_2 = require("../model/models");
+let defaultBasePath = 'http://localhost/';
+// ===============================================
+// This file is autogenerated - Please do not edit
+// ===============================================
+var ApiregistrationV1beta1ApiApiKeys;
+(function (ApiregistrationV1beta1ApiApiKeys) {
+ ApiregistrationV1beta1ApiApiKeys[ApiregistrationV1beta1ApiApiKeys["BearerToken"] = 0] = "BearerToken";
+})(ApiregistrationV1beta1ApiApiKeys = exports.ApiregistrationV1beta1ApiApiKeys || (exports.ApiregistrationV1beta1ApiApiKeys = {}));
+class ApiregistrationV1beta1Api {
+ constructor(basePathOrUsername, password, basePath) {
+ this._basePath = defaultBasePath;
+ this.defaultHeaders = {};
+ this._useQuerystring = false;
+ this.authentications = {
+ 'default': new models_1.VoidAuth(),
+ 'BearerToken': new models_2.ApiKeyAuth('header', 'authorization'),
+ };
+ if (password) {
+ if (basePath) {
+ this.basePath = basePath;
+ }
+ }
+ else {
+ if (basePathOrUsername) {
+ this.basePath = basePathOrUsername;
+ }
+ }
+ }
+ set useQuerystring(value) {
+ this._useQuerystring = value;
+ }
+ set basePath(basePath) {
+ this._basePath = basePath;
+ }
+ get basePath() {
+ return this._basePath;
+ }
+ setDefaultAuthentication(auth) {
+ this.authentications.default = auth;
+ }
+ setApiKey(key, value) {
+ this.authentications[ApiregistrationV1beta1ApiApiKeys[key]].apiKey = value;
+ }
+ /**
+ * create an APIService
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createAPIService(body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apiregistration.k8s.io/v1beta1/apiservices';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling createAPIService.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'POST',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1beta1APIService")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1APIService");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete an APIService
+ * @param name name of the APIService
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteAPIService(name, pretty, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apiregistration.k8s.io/v1beta1/apiservices/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling deleteAPIService.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete collection of APIService
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionAPIService(pretty, allowWatchBookmarks, _continue, dryRun, fieldSelector, gracePeriodSeconds, labelSelector, limit, orphanDependents, propagationPolicy, resourceVersion, timeoutSeconds, watch, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apiregistration.k8s.io/v1beta1/apiservices';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * get available resources
+ */
+ getAPIResources(options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apiregistration.k8s.io/v1beta1/';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1APIResourceList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind APIService
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listAPIService(pretty, allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apiregistration.k8s.io/v1beta1/apiservices';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1APIServiceList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update the specified APIService
+ * @param name name of the APIService
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchAPIService(name, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apiregistration.k8s.io/v1beta1/apiservices/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchAPIService.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchAPIService.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1APIService");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update status of the specified APIService
+ * @param name name of the APIService
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchAPIServiceStatus(name, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apiregistration.k8s.io/v1beta1/apiservices/{name}/status'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchAPIServiceStatus.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchAPIServiceStatus.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1APIService");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read the specified APIService
+ * @param name name of the APIService
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readAPIService(name, pretty, exact, _export, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apiregistration.k8s.io/v1beta1/apiservices/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readAPIService.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (exact !== undefined) {
+ localVarQueryParameters['exact'] = models_1.ObjectSerializer.serialize(exact, "boolean");
+ }
+ if (_export !== undefined) {
+ localVarQueryParameters['export'] = models_1.ObjectSerializer.serialize(_export, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1APIService");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read status of the specified APIService
+ * @param name name of the APIService
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readAPIServiceStatus(name, pretty, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apiregistration.k8s.io/v1beta1/apiservices/{name}/status'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readAPIServiceStatus.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1APIService");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace the specified APIService
+ * @param name name of the APIService
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceAPIService(name, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apiregistration.k8s.io/v1beta1/apiservices/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceAPIService.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceAPIService.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1beta1APIService")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1APIService");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace status of the specified APIService
+ * @param name name of the APIService
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceAPIServiceStatus(name, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apiregistration.k8s.io/v1beta1/apiservices/{name}/status'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceAPIServiceStatus.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceAPIServiceStatus.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1beta1APIService")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1APIService");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+}
+exports.ApiregistrationV1beta1Api = ApiregistrationV1beta1Api;
+//# sourceMappingURL=apiregistrationV1beta1Api.js.map
\ No newline at end of file
diff --git a/dist/gen/api/apiregistrationV1beta1Api.js.map b/dist/gen/api/apiregistrationV1beta1Api.js.map
new file mode 100644
index 0000000000..94af132946
--- /dev/null
+++ b/dist/gen/api/apiregistrationV1beta1Api.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"apiregistrationV1beta1Api.js","sourceRoot":"","sources":["../../../src/gen/api/apiregistrationV1beta1Api.ts"],"names":[],"mappings":"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"}
\ No newline at end of file
diff --git a/dist/gen/api/apis.d.ts b/dist/gen/api/apis.d.ts
new file mode 100644
index 0000000000..e1e3748fd8
--- /dev/null
+++ b/dist/gen/api/apis.d.ts
@@ -0,0 +1,129 @@
+export * from './admissionregistrationApi';
+import { AdmissionregistrationApi } from './admissionregistrationApi';
+export * from './admissionregistrationV1beta1Api';
+import { AdmissionregistrationV1beta1Api } from './admissionregistrationV1beta1Api';
+export * from './apiextensionsApi';
+import { ApiextensionsApi } from './apiextensionsApi';
+export * from './apiextensionsV1beta1Api';
+import { ApiextensionsV1beta1Api } from './apiextensionsV1beta1Api';
+export * from './apiregistrationApi';
+import { ApiregistrationApi } from './apiregistrationApi';
+export * from './apiregistrationV1Api';
+import { ApiregistrationV1Api } from './apiregistrationV1Api';
+export * from './apiregistrationV1beta1Api';
+import { ApiregistrationV1beta1Api } from './apiregistrationV1beta1Api';
+export * from './apisApi';
+import { ApisApi } from './apisApi';
+export * from './appsApi';
+import { AppsApi } from './appsApi';
+export * from './appsV1Api';
+import { AppsV1Api } from './appsV1Api';
+export * from './appsV1beta1Api';
+import { AppsV1beta1Api } from './appsV1beta1Api';
+export * from './appsV1beta2Api';
+import { AppsV1beta2Api } from './appsV1beta2Api';
+export * from './auditregistrationApi';
+import { AuditregistrationApi } from './auditregistrationApi';
+export * from './auditregistrationV1alpha1Api';
+import { AuditregistrationV1alpha1Api } from './auditregistrationV1alpha1Api';
+export * from './authenticationApi';
+import { AuthenticationApi } from './authenticationApi';
+export * from './authenticationV1Api';
+import { AuthenticationV1Api } from './authenticationV1Api';
+export * from './authenticationV1beta1Api';
+import { AuthenticationV1beta1Api } from './authenticationV1beta1Api';
+export * from './authorizationApi';
+import { AuthorizationApi } from './authorizationApi';
+export * from './authorizationV1Api';
+import { AuthorizationV1Api } from './authorizationV1Api';
+export * from './authorizationV1beta1Api';
+import { AuthorizationV1beta1Api } from './authorizationV1beta1Api';
+export * from './autoscalingApi';
+import { AutoscalingApi } from './autoscalingApi';
+export * from './autoscalingV1Api';
+import { AutoscalingV1Api } from './autoscalingV1Api';
+export * from './autoscalingV2beta1Api';
+import { AutoscalingV2beta1Api } from './autoscalingV2beta1Api';
+export * from './autoscalingV2beta2Api';
+import { AutoscalingV2beta2Api } from './autoscalingV2beta2Api';
+export * from './batchApi';
+import { BatchApi } from './batchApi';
+export * from './batchV1Api';
+import { BatchV1Api } from './batchV1Api';
+export * from './batchV1beta1Api';
+import { BatchV1beta1Api } from './batchV1beta1Api';
+export * from './batchV2alpha1Api';
+import { BatchV2alpha1Api } from './batchV2alpha1Api';
+export * from './certificatesApi';
+import { CertificatesApi } from './certificatesApi';
+export * from './certificatesV1beta1Api';
+import { CertificatesV1beta1Api } from './certificatesV1beta1Api';
+export * from './coordinationApi';
+import { CoordinationApi } from './coordinationApi';
+export * from './coordinationV1Api';
+import { CoordinationV1Api } from './coordinationV1Api';
+export * from './coordinationV1beta1Api';
+import { CoordinationV1beta1Api } from './coordinationV1beta1Api';
+export * from './coreApi';
+import { CoreApi } from './coreApi';
+export * from './coreV1Api';
+import { CoreV1Api } from './coreV1Api';
+export * from './customObjectsApi';
+import { CustomObjectsApi } from './customObjectsApi';
+export * from './eventsApi';
+import { EventsApi } from './eventsApi';
+export * from './eventsV1beta1Api';
+import { EventsV1beta1Api } from './eventsV1beta1Api';
+export * from './extensionsApi';
+import { ExtensionsApi } from './extensionsApi';
+export * from './extensionsV1beta1Api';
+import { ExtensionsV1beta1Api } from './extensionsV1beta1Api';
+export * from './logsApi';
+import { LogsApi } from './logsApi';
+export * from './networkingApi';
+import { NetworkingApi } from './networkingApi';
+export * from './networkingV1Api';
+import { NetworkingV1Api } from './networkingV1Api';
+export * from './networkingV1beta1Api';
+import { NetworkingV1beta1Api } from './networkingV1beta1Api';
+export * from './nodeApi';
+import { NodeApi } from './nodeApi';
+export * from './nodeV1alpha1Api';
+import { NodeV1alpha1Api } from './nodeV1alpha1Api';
+export * from './nodeV1beta1Api';
+import { NodeV1beta1Api } from './nodeV1beta1Api';
+export * from './policyApi';
+import { PolicyApi } from './policyApi';
+export * from './policyV1beta1Api';
+import { PolicyV1beta1Api } from './policyV1beta1Api';
+export * from './rbacAuthorizationApi';
+import { RbacAuthorizationApi } from './rbacAuthorizationApi';
+export * from './rbacAuthorizationV1Api';
+import { RbacAuthorizationV1Api } from './rbacAuthorizationV1Api';
+export * from './rbacAuthorizationV1alpha1Api';
+import { RbacAuthorizationV1alpha1Api } from './rbacAuthorizationV1alpha1Api';
+export * from './rbacAuthorizationV1beta1Api';
+import { RbacAuthorizationV1beta1Api } from './rbacAuthorizationV1beta1Api';
+export * from './schedulingApi';
+import { SchedulingApi } from './schedulingApi';
+export * from './schedulingV1Api';
+import { SchedulingV1Api } from './schedulingV1Api';
+export * from './schedulingV1alpha1Api';
+import { SchedulingV1alpha1Api } from './schedulingV1alpha1Api';
+export * from './schedulingV1beta1Api';
+import { SchedulingV1beta1Api } from './schedulingV1beta1Api';
+export * from './settingsApi';
+import { SettingsApi } from './settingsApi';
+export * from './settingsV1alpha1Api';
+import { SettingsV1alpha1Api } from './settingsV1alpha1Api';
+export * from './storageApi';
+import { StorageApi } from './storageApi';
+export * from './storageV1Api';
+import { StorageV1Api } from './storageV1Api';
+export * from './storageV1alpha1Api';
+import { StorageV1alpha1Api } from './storageV1alpha1Api';
+export * from './storageV1beta1Api';
+import { StorageV1beta1Api } from './storageV1beta1Api';
+export * from './versionApi';
+import { VersionApi } from './versionApi';
+export declare const APIS: (typeof AdmissionregistrationApi | typeof AdmissionregistrationV1beta1Api | typeof ApiextensionsApi | typeof ApiextensionsV1beta1Api | typeof ApiregistrationApi | typeof ApiregistrationV1Api | typeof ApiregistrationV1beta1Api | typeof ApisApi | typeof AppsApi | typeof AppsV1Api | typeof AppsV1beta1Api | typeof AppsV1beta2Api | typeof AuditregistrationApi | typeof AuditregistrationV1alpha1Api | typeof AuthenticationApi | typeof AuthenticationV1Api | typeof AuthenticationV1beta1Api | typeof AuthorizationApi | typeof AuthorizationV1Api | typeof AuthorizationV1beta1Api | typeof AutoscalingApi | typeof AutoscalingV1Api | typeof AutoscalingV2beta1Api | typeof AutoscalingV2beta2Api | typeof BatchApi | typeof BatchV1Api | typeof BatchV1beta1Api | typeof BatchV2alpha1Api | typeof CertificatesApi | typeof CertificatesV1beta1Api | typeof CoordinationApi | typeof CoordinationV1Api | typeof CoordinationV1beta1Api | typeof CoreApi | typeof CoreV1Api | typeof CustomObjectsApi | typeof EventsApi | typeof EventsV1beta1Api | typeof ExtensionsApi | typeof ExtensionsV1beta1Api | typeof LogsApi | typeof NetworkingApi | typeof NetworkingV1Api | typeof NetworkingV1beta1Api | typeof NodeApi | typeof NodeV1alpha1Api | typeof NodeV1beta1Api | typeof PolicyApi | typeof PolicyV1beta1Api | typeof RbacAuthorizationApi | typeof RbacAuthorizationV1Api | typeof RbacAuthorizationV1alpha1Api | typeof RbacAuthorizationV1beta1Api | typeof SchedulingApi | typeof SchedulingV1Api | typeof SchedulingV1alpha1Api | typeof SchedulingV1beta1Api | typeof SettingsApi | typeof SettingsV1alpha1Api | typeof StorageApi | typeof StorageV1Api | typeof StorageV1alpha1Api | typeof StorageV1beta1Api | typeof VersionApi)[];
diff --git a/dist/gen/api/apis.js b/dist/gen/api/apis.js
new file mode 100644
index 0000000000..e515d76f9d
--- /dev/null
+++ b/dist/gen/api/apis.js
@@ -0,0 +1,133 @@
+"use strict";
+Object.defineProperty(exports, "__esModule", { value: true });
+const tslib_1 = require("tslib");
+tslib_1.__exportStar(require("./admissionregistrationApi"), exports);
+const admissionregistrationApi_1 = require("./admissionregistrationApi");
+tslib_1.__exportStar(require("./admissionregistrationV1beta1Api"), exports);
+const admissionregistrationV1beta1Api_1 = require("./admissionregistrationV1beta1Api");
+tslib_1.__exportStar(require("./apiextensionsApi"), exports);
+const apiextensionsApi_1 = require("./apiextensionsApi");
+tslib_1.__exportStar(require("./apiextensionsV1beta1Api"), exports);
+const apiextensionsV1beta1Api_1 = require("./apiextensionsV1beta1Api");
+tslib_1.__exportStar(require("./apiregistrationApi"), exports);
+const apiregistrationApi_1 = require("./apiregistrationApi");
+tslib_1.__exportStar(require("./apiregistrationV1Api"), exports);
+const apiregistrationV1Api_1 = require("./apiregistrationV1Api");
+tslib_1.__exportStar(require("./apiregistrationV1beta1Api"), exports);
+const apiregistrationV1beta1Api_1 = require("./apiregistrationV1beta1Api");
+tslib_1.__exportStar(require("./apisApi"), exports);
+const apisApi_1 = require("./apisApi");
+tslib_1.__exportStar(require("./appsApi"), exports);
+const appsApi_1 = require("./appsApi");
+tslib_1.__exportStar(require("./appsV1Api"), exports);
+const appsV1Api_1 = require("./appsV1Api");
+tslib_1.__exportStar(require("./appsV1beta1Api"), exports);
+const appsV1beta1Api_1 = require("./appsV1beta1Api");
+tslib_1.__exportStar(require("./appsV1beta2Api"), exports);
+const appsV1beta2Api_1 = require("./appsV1beta2Api");
+tslib_1.__exportStar(require("./auditregistrationApi"), exports);
+const auditregistrationApi_1 = require("./auditregistrationApi");
+tslib_1.__exportStar(require("./auditregistrationV1alpha1Api"), exports);
+const auditregistrationV1alpha1Api_1 = require("./auditregistrationV1alpha1Api");
+tslib_1.__exportStar(require("./authenticationApi"), exports);
+const authenticationApi_1 = require("./authenticationApi");
+tslib_1.__exportStar(require("./authenticationV1Api"), exports);
+const authenticationV1Api_1 = require("./authenticationV1Api");
+tslib_1.__exportStar(require("./authenticationV1beta1Api"), exports);
+const authenticationV1beta1Api_1 = require("./authenticationV1beta1Api");
+tslib_1.__exportStar(require("./authorizationApi"), exports);
+const authorizationApi_1 = require("./authorizationApi");
+tslib_1.__exportStar(require("./authorizationV1Api"), exports);
+const authorizationV1Api_1 = require("./authorizationV1Api");
+tslib_1.__exportStar(require("./authorizationV1beta1Api"), exports);
+const authorizationV1beta1Api_1 = require("./authorizationV1beta1Api");
+tslib_1.__exportStar(require("./autoscalingApi"), exports);
+const autoscalingApi_1 = require("./autoscalingApi");
+tslib_1.__exportStar(require("./autoscalingV1Api"), exports);
+const autoscalingV1Api_1 = require("./autoscalingV1Api");
+tslib_1.__exportStar(require("./autoscalingV2beta1Api"), exports);
+const autoscalingV2beta1Api_1 = require("./autoscalingV2beta1Api");
+tslib_1.__exportStar(require("./autoscalingV2beta2Api"), exports);
+const autoscalingV2beta2Api_1 = require("./autoscalingV2beta2Api");
+tslib_1.__exportStar(require("./batchApi"), exports);
+const batchApi_1 = require("./batchApi");
+tslib_1.__exportStar(require("./batchV1Api"), exports);
+const batchV1Api_1 = require("./batchV1Api");
+tslib_1.__exportStar(require("./batchV1beta1Api"), exports);
+const batchV1beta1Api_1 = require("./batchV1beta1Api");
+tslib_1.__exportStar(require("./batchV2alpha1Api"), exports);
+const batchV2alpha1Api_1 = require("./batchV2alpha1Api");
+tslib_1.__exportStar(require("./certificatesApi"), exports);
+const certificatesApi_1 = require("./certificatesApi");
+tslib_1.__exportStar(require("./certificatesV1beta1Api"), exports);
+const certificatesV1beta1Api_1 = require("./certificatesV1beta1Api");
+tslib_1.__exportStar(require("./coordinationApi"), exports);
+const coordinationApi_1 = require("./coordinationApi");
+tslib_1.__exportStar(require("./coordinationV1Api"), exports);
+const coordinationV1Api_1 = require("./coordinationV1Api");
+tslib_1.__exportStar(require("./coordinationV1beta1Api"), exports);
+const coordinationV1beta1Api_1 = require("./coordinationV1beta1Api");
+tslib_1.__exportStar(require("./coreApi"), exports);
+const coreApi_1 = require("./coreApi");
+tslib_1.__exportStar(require("./coreV1Api"), exports);
+const coreV1Api_1 = require("./coreV1Api");
+tslib_1.__exportStar(require("./customObjectsApi"), exports);
+const customObjectsApi_1 = require("./customObjectsApi");
+tslib_1.__exportStar(require("./eventsApi"), exports);
+const eventsApi_1 = require("./eventsApi");
+tslib_1.__exportStar(require("./eventsV1beta1Api"), exports);
+const eventsV1beta1Api_1 = require("./eventsV1beta1Api");
+tslib_1.__exportStar(require("./extensionsApi"), exports);
+const extensionsApi_1 = require("./extensionsApi");
+tslib_1.__exportStar(require("./extensionsV1beta1Api"), exports);
+const extensionsV1beta1Api_1 = require("./extensionsV1beta1Api");
+tslib_1.__exportStar(require("./logsApi"), exports);
+const logsApi_1 = require("./logsApi");
+tslib_1.__exportStar(require("./networkingApi"), exports);
+const networkingApi_1 = require("./networkingApi");
+tslib_1.__exportStar(require("./networkingV1Api"), exports);
+const networkingV1Api_1 = require("./networkingV1Api");
+tslib_1.__exportStar(require("./networkingV1beta1Api"), exports);
+const networkingV1beta1Api_1 = require("./networkingV1beta1Api");
+tslib_1.__exportStar(require("./nodeApi"), exports);
+const nodeApi_1 = require("./nodeApi");
+tslib_1.__exportStar(require("./nodeV1alpha1Api"), exports);
+const nodeV1alpha1Api_1 = require("./nodeV1alpha1Api");
+tslib_1.__exportStar(require("./nodeV1beta1Api"), exports);
+const nodeV1beta1Api_1 = require("./nodeV1beta1Api");
+tslib_1.__exportStar(require("./policyApi"), exports);
+const policyApi_1 = require("./policyApi");
+tslib_1.__exportStar(require("./policyV1beta1Api"), exports);
+const policyV1beta1Api_1 = require("./policyV1beta1Api");
+tslib_1.__exportStar(require("./rbacAuthorizationApi"), exports);
+const rbacAuthorizationApi_1 = require("./rbacAuthorizationApi");
+tslib_1.__exportStar(require("./rbacAuthorizationV1Api"), exports);
+const rbacAuthorizationV1Api_1 = require("./rbacAuthorizationV1Api");
+tslib_1.__exportStar(require("./rbacAuthorizationV1alpha1Api"), exports);
+const rbacAuthorizationV1alpha1Api_1 = require("./rbacAuthorizationV1alpha1Api");
+tslib_1.__exportStar(require("./rbacAuthorizationV1beta1Api"), exports);
+const rbacAuthorizationV1beta1Api_1 = require("./rbacAuthorizationV1beta1Api");
+tslib_1.__exportStar(require("./schedulingApi"), exports);
+const schedulingApi_1 = require("./schedulingApi");
+tslib_1.__exportStar(require("./schedulingV1Api"), exports);
+const schedulingV1Api_1 = require("./schedulingV1Api");
+tslib_1.__exportStar(require("./schedulingV1alpha1Api"), exports);
+const schedulingV1alpha1Api_1 = require("./schedulingV1alpha1Api");
+tslib_1.__exportStar(require("./schedulingV1beta1Api"), exports);
+const schedulingV1beta1Api_1 = require("./schedulingV1beta1Api");
+tslib_1.__exportStar(require("./settingsApi"), exports);
+const settingsApi_1 = require("./settingsApi");
+tslib_1.__exportStar(require("./settingsV1alpha1Api"), exports);
+const settingsV1alpha1Api_1 = require("./settingsV1alpha1Api");
+tslib_1.__exportStar(require("./storageApi"), exports);
+const storageApi_1 = require("./storageApi");
+tslib_1.__exportStar(require("./storageV1Api"), exports);
+const storageV1Api_1 = require("./storageV1Api");
+tslib_1.__exportStar(require("./storageV1alpha1Api"), exports);
+const storageV1alpha1Api_1 = require("./storageV1alpha1Api");
+tslib_1.__exportStar(require("./storageV1beta1Api"), exports);
+const storageV1beta1Api_1 = require("./storageV1beta1Api");
+tslib_1.__exportStar(require("./versionApi"), exports);
+const versionApi_1 = require("./versionApi");
+exports.APIS = [admissionregistrationApi_1.AdmissionregistrationApi, admissionregistrationV1beta1Api_1.AdmissionregistrationV1beta1Api, apiextensionsApi_1.ApiextensionsApi, apiextensionsV1beta1Api_1.ApiextensionsV1beta1Api, apiregistrationApi_1.ApiregistrationApi, apiregistrationV1Api_1.ApiregistrationV1Api, apiregistrationV1beta1Api_1.ApiregistrationV1beta1Api, apisApi_1.ApisApi, appsApi_1.AppsApi, appsV1Api_1.AppsV1Api, appsV1beta1Api_1.AppsV1beta1Api, appsV1beta2Api_1.AppsV1beta2Api, auditregistrationApi_1.AuditregistrationApi, auditregistrationV1alpha1Api_1.AuditregistrationV1alpha1Api, authenticationApi_1.AuthenticationApi, authenticationV1Api_1.AuthenticationV1Api, authenticationV1beta1Api_1.AuthenticationV1beta1Api, authorizationApi_1.AuthorizationApi, authorizationV1Api_1.AuthorizationV1Api, authorizationV1beta1Api_1.AuthorizationV1beta1Api, autoscalingApi_1.AutoscalingApi, autoscalingV1Api_1.AutoscalingV1Api, autoscalingV2beta1Api_1.AutoscalingV2beta1Api, autoscalingV2beta2Api_1.AutoscalingV2beta2Api, batchApi_1.BatchApi, batchV1Api_1.BatchV1Api, batchV1beta1Api_1.BatchV1beta1Api, batchV2alpha1Api_1.BatchV2alpha1Api, certificatesApi_1.CertificatesApi, certificatesV1beta1Api_1.CertificatesV1beta1Api, coordinationApi_1.CoordinationApi, coordinationV1Api_1.CoordinationV1Api, coordinationV1beta1Api_1.CoordinationV1beta1Api, coreApi_1.CoreApi, coreV1Api_1.CoreV1Api, customObjectsApi_1.CustomObjectsApi, eventsApi_1.EventsApi, eventsV1beta1Api_1.EventsV1beta1Api, extensionsApi_1.ExtensionsApi, extensionsV1beta1Api_1.ExtensionsV1beta1Api, logsApi_1.LogsApi, networkingApi_1.NetworkingApi, networkingV1Api_1.NetworkingV1Api, networkingV1beta1Api_1.NetworkingV1beta1Api, nodeApi_1.NodeApi, nodeV1alpha1Api_1.NodeV1alpha1Api, nodeV1beta1Api_1.NodeV1beta1Api, policyApi_1.PolicyApi, policyV1beta1Api_1.PolicyV1beta1Api, rbacAuthorizationApi_1.RbacAuthorizationApi, rbacAuthorizationV1Api_1.RbacAuthorizationV1Api, rbacAuthorizationV1alpha1Api_1.RbacAuthorizationV1alpha1Api, rbacAuthorizationV1beta1Api_1.RbacAuthorizationV1beta1Api, schedulingApi_1.SchedulingApi, schedulingV1Api_1.SchedulingV1Api, schedulingV1alpha1Api_1.SchedulingV1alpha1Api, schedulingV1beta1Api_1.SchedulingV1beta1Api, settingsApi_1.SettingsApi, settingsV1alpha1Api_1.SettingsV1alpha1Api, storageApi_1.StorageApi, storageV1Api_1.StorageV1Api, storageV1alpha1Api_1.StorageV1alpha1Api, storageV1beta1Api_1.StorageV1beta1Api, versionApi_1.VersionApi];
+//# sourceMappingURL=apis.js.map
\ No newline at end of file
diff --git a/dist/gen/api/apis.js.map b/dist/gen/api/apis.js.map
new file mode 100644
index 0000000000..5baa0deacf
--- /dev/null
+++ b/dist/gen/api/apis.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"apis.js","sourceRoot":"","sources":["../../../src/gen/api/apis.ts"],"names":[],"mappings":"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"}
\ No newline at end of file
diff --git a/dist/gen/api/apisApi.d.ts b/dist/gen/api/apisApi.d.ts
new file mode 100644
index 0000000000..c583fd6339
--- /dev/null
+++ b/dist/gen/api/apisApi.d.ts
@@ -0,0 +1,44 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+///
+import http = require('http');
+import { V1APIGroupList } from '../model/v1APIGroupList';
+import { Authentication } from '../model/models';
+import { ApiKeyAuth } from '../model/models';
+export declare enum ApisApiApiKeys {
+ BearerToken = 0
+}
+export declare class ApisApi {
+ protected _basePath: string;
+ protected defaultHeaders: any;
+ protected _useQuerystring: boolean;
+ protected authentications: {
+ 'default': Authentication;
+ 'BearerToken': ApiKeyAuth;
+ };
+ constructor(basePath?: string);
+ useQuerystring: boolean;
+ basePath: string;
+ setDefaultAuthentication(auth: Authentication): void;
+ setApiKey(key: ApisApiApiKeys, value: string): void;
+ /**
+ * get available API versions
+ */
+ getAPIVersions(options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1APIGroupList;
+ }>;
+}
diff --git a/dist/gen/api/apisApi.js b/dist/gen/api/apisApi.js
new file mode 100644
index 0000000000..750f5abae7
--- /dev/null
+++ b/dist/gen/api/apisApi.js
@@ -0,0 +1,113 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+const tslib_1 = require("tslib");
+const localVarRequest = require("request");
+const models_1 = require("../model/models");
+const models_2 = require("../model/models");
+let defaultBasePath = 'http://localhost/';
+// ===============================================
+// This file is autogenerated - Please do not edit
+// ===============================================
+var ApisApiApiKeys;
+(function (ApisApiApiKeys) {
+ ApisApiApiKeys[ApisApiApiKeys["BearerToken"] = 0] = "BearerToken";
+})(ApisApiApiKeys = exports.ApisApiApiKeys || (exports.ApisApiApiKeys = {}));
+class ApisApi {
+ constructor(basePathOrUsername, password, basePath) {
+ this._basePath = defaultBasePath;
+ this.defaultHeaders = {};
+ this._useQuerystring = false;
+ this.authentications = {
+ 'default': new models_1.VoidAuth(),
+ 'BearerToken': new models_2.ApiKeyAuth('header', 'authorization'),
+ };
+ if (password) {
+ if (basePath) {
+ this.basePath = basePath;
+ }
+ }
+ else {
+ if (basePathOrUsername) {
+ this.basePath = basePathOrUsername;
+ }
+ }
+ }
+ set useQuerystring(value) {
+ this._useQuerystring = value;
+ }
+ set basePath(basePath) {
+ this._basePath = basePath;
+ }
+ get basePath() {
+ return this._basePath;
+ }
+ setDefaultAuthentication(auth) {
+ this.authentications.default = auth;
+ }
+ setApiKey(key, value) {
+ this.authentications[ApisApiApiKeys[key]].apiKey = value;
+ }
+ /**
+ * get available API versions
+ */
+ getAPIVersions(options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1APIGroupList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+}
+exports.ApisApi = ApisApi;
+//# sourceMappingURL=apisApi.js.map
\ No newline at end of file
diff --git a/dist/gen/api/apisApi.js.map b/dist/gen/api/apisApi.js.map
new file mode 100644
index 0000000000..5d77c9890c
--- /dev/null
+++ b/dist/gen/api/apisApi.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"apisApi.js","sourceRoot":"","sources":["../../../src/gen/api/apisApi.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;;AAEH,2CAA4C;AAM5C,4CAA6E;AAC7E,4CAA6C;AAE7C,IAAI,eAAe,GAAG,kBAAkB,CAAC;AAEzC,kDAAkD;AAClD,kDAAkD;AAClD,kDAAkD;AAElD,IAAY,cAEX;AAFD,WAAY,cAAc;IACtB,iEAAW,CAAA;AACf,CAAC,EAFW,cAAc,GAAd,sBAAc,KAAd,sBAAc,QAEzB;AAED,MAAa,OAAO;IAWhB,YAAY,kBAA0B,EAAE,QAAiB,EAAE,QAAiB;QAVlE,cAAS,GAAG,eAAe,CAAC;QAC5B,mBAAc,GAAS,EAAE,CAAC;QAC1B,oBAAe,GAAa,KAAK,CAAC;QAElC,oBAAe,GAAG;YACxB,SAAS,EAAkB,IAAI,iBAAQ,EAAE;YACzC,aAAa,EAAE,IAAI,mBAAU,CAAC,QAAQ,EAAE,eAAe,CAAC;SAC3D,CAAA;QAIG,IAAI,QAAQ,EAAE;YACV,IAAI,QAAQ,EAAE;gBACV,IAAI,CAAC,QAAQ,GAAG,QAAQ,CAAC;aAC5B;SACJ;aAAM;YACH,IAAI,kBAAkB,EAAE;gBACpB,IAAI,CAAC,QAAQ,GAAG,kBAAkB,CAAA;aACrC;SACJ;IACL,CAAC;IAED,IAAI,cAAc,CAAC,KAAc;QAC7B,IAAI,CAAC,eAAe,GAAG,KAAK,CAAC;IACjC,CAAC;IAED,IAAI,QAAQ,CAAC,QAAgB;QACzB,IAAI,CAAC,SAAS,GAAG,QAAQ,CAAC;IAC9B,CAAC;IAED,IAAI,QAAQ;QACR,OAAO,IAAI,CAAC,SAAS,CAAC;IAC1B,CAAC;IAEM,wBAAwB,CAAC,IAAoB;QAChD,IAAI,CAAC,eAAe,CAAC,OAAO,GAAG,IAAI,CAAC;IACxC,CAAC;IAEM,SAAS,CAAC,GAAmB,EAAE,KAAa;QAC9C,IAAI,CAAC,eAAuB,CAAC,cAAc,CAAC,GAAG,CAAC,CAAC,CAAC,MAAM,GAAG,KAAK,CAAC;IACtE,CAAC;IAED;;OAEG;IACU,cAAc,CAAE,UAA+C,EAAC,OAAO,EAAE,EAAE,EAAC;;YACrF,MAAM,YAAY,GAAG,IAAI,CAAC,QAAQ,GAAG,QAAQ,CAAC;YAC9C,IAAI,uBAAuB,GAAQ,EAAE,CAAC;YACtC,IAAI,oBAAoB,GAAc,MAAO,CAAC,MAAM,CAAC,EAAE,EAAE,IAAI,CAAC,cAAc,CAAC,CAAC;YAC9E,IAAI,kBAAkB,GAAQ,EAAE,CAAC;YAE3B,MAAO,CAAC,MAAM,CAAC,oBAAoB,EAAE,OAAO,CAAC,OAAO,CAAC,CAAC;YAE5D,IAAI,mBAAmB,GAAG,KAAK,CAAC;YAEhC,IAAI,sBAAsB,GAA4B;gBAClD,MAAM,EAAE,KAAK;gBACb,EAAE,EAAE,uBAAuB;gBAC3B,OAAO,EAAE,oBAAoB;gBAC7B,GAAG,EAAE,YAAY;gBACjB,cAAc,EAAE,IAAI,CAAC,eAAe;gBACpC,IAAI,EAAE,IAAI;aACb,CAAC;YAEF,IAAI,qBAAqB,GAAG,OAAO,CAAC,OAAO,EAAE,CAAC;YAC9C,qBAAqB,GAAG,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,eAAe,CAAC,WAAW,CAAC,cAAc,CAAC,sBAAsB,CAAC,CAAC,CAAC;YAElI,qBAAqB,GAAG,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,eAAe,CAAC,OAAO,CAAC,cAAc,CAAC,sBAAsB,CAAC,CAAC,CAAC;YAC9H,OAAO,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE;gBACnC,IAAI,MAAM,CAAC,IAAI,CAAC,kBAAkB,CAAC,CAAC,MAAM,EAAE;oBACxC,IAAI,mBAAmB,EAAE;wBACf,sBAAuB,CAAC,QAAQ,GAAG,kBAAkB,CAAC;qBAC/D;yBAAM;wBACH,sBAAsB,CAAC,IAAI,GAAG,kBAAkB,CAAC;qBACpD;iBACJ;gBACD,OAAO,IAAI,OAAO,CAA6D,CAAC,OAAO,EAAE,MAAM,EAAE,EAAE;oBAC/F,eAAe,CAAC,sBAAsB,EAAE,CAAC,KAAK,EAAE,QAAQ,EAAE,IAAI,EAAE,EAAE;wBAC9D,IAAI,KAAK,EAAE;4BACP,MAAM,CAAC,KAAK,CAAC,CAAC;yBACjB;6BAAM;4BACH,IAAI,GAAG,yBAAgB,CAAC,WAAW,CAAC,IAAI,EAAE,gBAAgB,CAAC,CAAC;4BAC5D,IAAI,QAAQ,CAAC,UAAU,IAAI,QAAQ,CAAC,UAAU,IAAI,GAAG,IAAI,QAAQ,CAAC,UAAU,IAAI,GAAG,EAAE;gCACjF,OAAO,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;6BAC/C;iCAAM;gCACH,MAAM,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;6BAC9C;yBACJ;oBACL,CAAC,CAAC,CAAC;gBACP,CAAC,CAAC,CAAC;YACP,CAAC,CAAC,CAAC;QACP,CAAC;KAAA;CACJ;AA7FD,0BA6FC"}
\ No newline at end of file
diff --git a/dist/gen/api/appsApi.d.ts b/dist/gen/api/appsApi.d.ts
new file mode 100644
index 0000000000..951f58258c
--- /dev/null
+++ b/dist/gen/api/appsApi.d.ts
@@ -0,0 +1,44 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+///
+import http = require('http');
+import { V1APIGroup } from '../model/v1APIGroup';
+import { Authentication } from '../model/models';
+import { ApiKeyAuth } from '../model/models';
+export declare enum AppsApiApiKeys {
+ BearerToken = 0
+}
+export declare class AppsApi {
+ protected _basePath: string;
+ protected defaultHeaders: any;
+ protected _useQuerystring: boolean;
+ protected authentications: {
+ 'default': Authentication;
+ 'BearerToken': ApiKeyAuth;
+ };
+ constructor(basePath?: string);
+ useQuerystring: boolean;
+ basePath: string;
+ setDefaultAuthentication(auth: Authentication): void;
+ setApiKey(key: AppsApiApiKeys, value: string): void;
+ /**
+ * get information of a group
+ */
+ getAPIGroup(options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1APIGroup;
+ }>;
+}
diff --git a/dist/gen/api/appsApi.js b/dist/gen/api/appsApi.js
new file mode 100644
index 0000000000..cb79e1caaf
--- /dev/null
+++ b/dist/gen/api/appsApi.js
@@ -0,0 +1,113 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+const tslib_1 = require("tslib");
+const localVarRequest = require("request");
+const models_1 = require("../model/models");
+const models_2 = require("../model/models");
+let defaultBasePath = 'http://localhost/';
+// ===============================================
+// This file is autogenerated - Please do not edit
+// ===============================================
+var AppsApiApiKeys;
+(function (AppsApiApiKeys) {
+ AppsApiApiKeys[AppsApiApiKeys["BearerToken"] = 0] = "BearerToken";
+})(AppsApiApiKeys = exports.AppsApiApiKeys || (exports.AppsApiApiKeys = {}));
+class AppsApi {
+ constructor(basePathOrUsername, password, basePath) {
+ this._basePath = defaultBasePath;
+ this.defaultHeaders = {};
+ this._useQuerystring = false;
+ this.authentications = {
+ 'default': new models_1.VoidAuth(),
+ 'BearerToken': new models_2.ApiKeyAuth('header', 'authorization'),
+ };
+ if (password) {
+ if (basePath) {
+ this.basePath = basePath;
+ }
+ }
+ else {
+ if (basePathOrUsername) {
+ this.basePath = basePathOrUsername;
+ }
+ }
+ }
+ set useQuerystring(value) {
+ this._useQuerystring = value;
+ }
+ set basePath(basePath) {
+ this._basePath = basePath;
+ }
+ get basePath() {
+ return this._basePath;
+ }
+ setDefaultAuthentication(auth) {
+ this.authentications.default = auth;
+ }
+ setApiKey(key, value) {
+ this.authentications[AppsApiApiKeys[key]].apiKey = value;
+ }
+ /**
+ * get information of a group
+ */
+ getAPIGroup(options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1APIGroup");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+}
+exports.AppsApi = AppsApi;
+//# sourceMappingURL=appsApi.js.map
\ No newline at end of file
diff --git a/dist/gen/api/appsApi.js.map b/dist/gen/api/appsApi.js.map
new file mode 100644
index 0000000000..696dfb2cbc
--- /dev/null
+++ b/dist/gen/api/appsApi.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"appsApi.js","sourceRoot":"","sources":["../../../src/gen/api/appsApi.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;;AAEH,2CAA4C;AAM5C,4CAA6E;AAC7E,4CAA6C;AAE7C,IAAI,eAAe,GAAG,kBAAkB,CAAC;AAEzC,kDAAkD;AAClD,kDAAkD;AAClD,kDAAkD;AAElD,IAAY,cAEX;AAFD,WAAY,cAAc;IACtB,iEAAW,CAAA;AACf,CAAC,EAFW,cAAc,GAAd,sBAAc,KAAd,sBAAc,QAEzB;AAED,MAAa,OAAO;IAWhB,YAAY,kBAA0B,EAAE,QAAiB,EAAE,QAAiB;QAVlE,cAAS,GAAG,eAAe,CAAC;QAC5B,mBAAc,GAAS,EAAE,CAAC;QAC1B,oBAAe,GAAa,KAAK,CAAC;QAElC,oBAAe,GAAG;YACxB,SAAS,EAAkB,IAAI,iBAAQ,EAAE;YACzC,aAAa,EAAE,IAAI,mBAAU,CAAC,QAAQ,EAAE,eAAe,CAAC;SAC3D,CAAA;QAIG,IAAI,QAAQ,EAAE;YACV,IAAI,QAAQ,EAAE;gBACV,IAAI,CAAC,QAAQ,GAAG,QAAQ,CAAC;aAC5B;SACJ;aAAM;YACH,IAAI,kBAAkB,EAAE;gBACpB,IAAI,CAAC,QAAQ,GAAG,kBAAkB,CAAA;aACrC;SACJ;IACL,CAAC;IAED,IAAI,cAAc,CAAC,KAAc;QAC7B,IAAI,CAAC,eAAe,GAAG,KAAK,CAAC;IACjC,CAAC;IAED,IAAI,QAAQ,CAAC,QAAgB;QACzB,IAAI,CAAC,SAAS,GAAG,QAAQ,CAAC;IAC9B,CAAC;IAED,IAAI,QAAQ;QACR,OAAO,IAAI,CAAC,SAAS,CAAC;IAC1B,CAAC;IAEM,wBAAwB,CAAC,IAAoB;QAChD,IAAI,CAAC,eAAe,CAAC,OAAO,GAAG,IAAI,CAAC;IACxC,CAAC;IAEM,SAAS,CAAC,GAAmB,EAAE,KAAa;QAC9C,IAAI,CAAC,eAAuB,CAAC,cAAc,CAAC,GAAG,CAAC,CAAC,CAAC,MAAM,GAAG,KAAK,CAAC;IACtE,CAAC;IAED;;OAEG;IACU,WAAW,CAAE,UAA+C,EAAC,OAAO,EAAE,EAAE,EAAC;;YAClF,MAAM,YAAY,GAAG,IAAI,CAAC,QAAQ,GAAG,aAAa,CAAC;YACnD,IAAI,uBAAuB,GAAQ,EAAE,CAAC;YACtC,IAAI,oBAAoB,GAAc,MAAO,CAAC,MAAM,CAAC,EAAE,EAAE,IAAI,CAAC,cAAc,CAAC,CAAC;YAC9E,IAAI,kBAAkB,GAAQ,EAAE,CAAC;YAE3B,MAAO,CAAC,MAAM,CAAC,oBAAoB,EAAE,OAAO,CAAC,OAAO,CAAC,CAAC;YAE5D,IAAI,mBAAmB,GAAG,KAAK,CAAC;YAEhC,IAAI,sBAAsB,GAA4B;gBAClD,MAAM,EAAE,KAAK;gBACb,EAAE,EAAE,uBAAuB;gBAC3B,OAAO,EAAE,oBAAoB;gBAC7B,GAAG,EAAE,YAAY;gBACjB,cAAc,EAAE,IAAI,CAAC,eAAe;gBACpC,IAAI,EAAE,IAAI;aACb,CAAC;YAEF,IAAI,qBAAqB,GAAG,OAAO,CAAC,OAAO,EAAE,CAAC;YAC9C,qBAAqB,GAAG,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,eAAe,CAAC,WAAW,CAAC,cAAc,CAAC,sBAAsB,CAAC,CAAC,CAAC;YAElI,qBAAqB,GAAG,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,eAAe,CAAC,OAAO,CAAC,cAAc,CAAC,sBAAsB,CAAC,CAAC,CAAC;YAC9H,OAAO,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE;gBACnC,IAAI,MAAM,CAAC,IAAI,CAAC,kBAAkB,CAAC,CAAC,MAAM,EAAE;oBACxC,IAAI,mBAAmB,EAAE;wBACf,sBAAuB,CAAC,QAAQ,GAAG,kBAAkB,CAAC;qBAC/D;yBAAM;wBACH,sBAAsB,CAAC,IAAI,GAAG,kBAAkB,CAAC;qBACpD;iBACJ;gBACD,OAAO,IAAI,OAAO,CAAyD,CAAC,OAAO,EAAE,MAAM,EAAE,EAAE;oBAC3F,eAAe,CAAC,sBAAsB,EAAE,CAAC,KAAK,EAAE,QAAQ,EAAE,IAAI,EAAE,EAAE;wBAC9D,IAAI,KAAK,EAAE;4BACP,MAAM,CAAC,KAAK,CAAC,CAAC;yBACjB;6BAAM;4BACH,IAAI,GAAG,yBAAgB,CAAC,WAAW,CAAC,IAAI,EAAE,YAAY,CAAC,CAAC;4BACxD,IAAI,QAAQ,CAAC,UAAU,IAAI,QAAQ,CAAC,UAAU,IAAI,GAAG,IAAI,QAAQ,CAAC,UAAU,IAAI,GAAG,EAAE;gCACjF,OAAO,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;6BAC/C;iCAAM;gCACH,MAAM,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;6BAC9C;yBACJ;oBACL,CAAC,CAAC,CAAC;gBACP,CAAC,CAAC,CAAC;YACP,CAAC,CAAC,CAAC;QACP,CAAC;KAAA;CACJ;AA7FD,0BA6FC"}
\ No newline at end of file
diff --git a/dist/gen/api/appsV1Api.d.ts b/dist/gen/api/appsV1Api.d.ts
new file mode 100644
index 0000000000..71ec3960aa
--- /dev/null
+++ b/dist/gen/api/appsV1Api.d.ts
@@ -0,0 +1,1165 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+///
+import http = require('http');
+import { V1APIResourceList } from '../model/v1APIResourceList';
+import { V1ControllerRevision } from '../model/v1ControllerRevision';
+import { V1ControllerRevisionList } from '../model/v1ControllerRevisionList';
+import { V1DaemonSet } from '../model/v1DaemonSet';
+import { V1DaemonSetList } from '../model/v1DaemonSetList';
+import { V1DeleteOptions } from '../model/v1DeleteOptions';
+import { V1Deployment } from '../model/v1Deployment';
+import { V1DeploymentList } from '../model/v1DeploymentList';
+import { V1ReplicaSet } from '../model/v1ReplicaSet';
+import { V1ReplicaSetList } from '../model/v1ReplicaSetList';
+import { V1Scale } from '../model/v1Scale';
+import { V1StatefulSet } from '../model/v1StatefulSet';
+import { V1StatefulSetList } from '../model/v1StatefulSetList';
+import { V1Status } from '../model/v1Status';
+import { Authentication } from '../model/models';
+import { ApiKeyAuth } from '../model/models';
+export declare enum AppsV1ApiApiKeys {
+ BearerToken = 0
+}
+export declare class AppsV1Api {
+ protected _basePath: string;
+ protected defaultHeaders: any;
+ protected _useQuerystring: boolean;
+ protected authentications: {
+ 'default': Authentication;
+ 'BearerToken': ApiKeyAuth;
+ };
+ constructor(basePath?: string);
+ useQuerystring: boolean;
+ basePath: string;
+ setDefaultAuthentication(auth: Authentication): void;
+ setApiKey(key: AppsV1ApiApiKeys, value: string): void;
+ /**
+ * create a ControllerRevision
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createNamespacedControllerRevision(namespace: string, body: V1ControllerRevision, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1ControllerRevision;
+ }>;
+ /**
+ * create a DaemonSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createNamespacedDaemonSet(namespace: string, body: V1DaemonSet, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1DaemonSet;
+ }>;
+ /**
+ * create a Deployment
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createNamespacedDeployment(namespace: string, body: V1Deployment, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Deployment;
+ }>;
+ /**
+ * create a ReplicaSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createNamespacedReplicaSet(namespace: string, body: V1ReplicaSet, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1ReplicaSet;
+ }>;
+ /**
+ * create a StatefulSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createNamespacedStatefulSet(namespace: string, body: V1StatefulSet, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1StatefulSet;
+ }>;
+ /**
+ * delete collection of ControllerRevision
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionNamespacedControllerRevision(namespace: string, pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, dryRun?: string, fieldSelector?: string, gracePeriodSeconds?: number, labelSelector?: string, limit?: number, orphanDependents?: boolean, propagationPolicy?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete collection of DaemonSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionNamespacedDaemonSet(namespace: string, pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, dryRun?: string, fieldSelector?: string, gracePeriodSeconds?: number, labelSelector?: string, limit?: number, orphanDependents?: boolean, propagationPolicy?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete collection of Deployment
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionNamespacedDeployment(namespace: string, pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, dryRun?: string, fieldSelector?: string, gracePeriodSeconds?: number, labelSelector?: string, limit?: number, orphanDependents?: boolean, propagationPolicy?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete collection of ReplicaSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionNamespacedReplicaSet(namespace: string, pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, dryRun?: string, fieldSelector?: string, gracePeriodSeconds?: number, labelSelector?: string, limit?: number, orphanDependents?: boolean, propagationPolicy?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete collection of StatefulSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionNamespacedStatefulSet(namespace: string, pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, dryRun?: string, fieldSelector?: string, gracePeriodSeconds?: number, labelSelector?: string, limit?: number, orphanDependents?: boolean, propagationPolicy?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete a ControllerRevision
+ * @param name name of the ControllerRevision
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteNamespacedControllerRevision(name: string, namespace: string, pretty?: string, dryRun?: string, gracePeriodSeconds?: number, orphanDependents?: boolean, propagationPolicy?: string, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete a DaemonSet
+ * @param name name of the DaemonSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteNamespacedDaemonSet(name: string, namespace: string, pretty?: string, dryRun?: string, gracePeriodSeconds?: number, orphanDependents?: boolean, propagationPolicy?: string, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete a Deployment
+ * @param name name of the Deployment
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteNamespacedDeployment(name: string, namespace: string, pretty?: string, dryRun?: string, gracePeriodSeconds?: number, orphanDependents?: boolean, propagationPolicy?: string, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete a ReplicaSet
+ * @param name name of the ReplicaSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteNamespacedReplicaSet(name: string, namespace: string, pretty?: string, dryRun?: string, gracePeriodSeconds?: number, orphanDependents?: boolean, propagationPolicy?: string, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete a StatefulSet
+ * @param name name of the StatefulSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteNamespacedStatefulSet(name: string, namespace: string, pretty?: string, dryRun?: string, gracePeriodSeconds?: number, orphanDependents?: boolean, propagationPolicy?: string, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * get available resources
+ */
+ getAPIResources(options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1APIResourceList;
+ }>;
+ /**
+ * list or watch objects of kind ControllerRevision
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listControllerRevisionForAllNamespaces(allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, pretty?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1ControllerRevisionList;
+ }>;
+ /**
+ * list or watch objects of kind DaemonSet
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listDaemonSetForAllNamespaces(allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, pretty?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1DaemonSetList;
+ }>;
+ /**
+ * list or watch objects of kind Deployment
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listDeploymentForAllNamespaces(allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, pretty?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1DeploymentList;
+ }>;
+ /**
+ * list or watch objects of kind ControllerRevision
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listNamespacedControllerRevision(namespace: string, pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1ControllerRevisionList;
+ }>;
+ /**
+ * list or watch objects of kind DaemonSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listNamespacedDaemonSet(namespace: string, pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1DaemonSetList;
+ }>;
+ /**
+ * list or watch objects of kind Deployment
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listNamespacedDeployment(namespace: string, pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1DeploymentList;
+ }>;
+ /**
+ * list or watch objects of kind ReplicaSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listNamespacedReplicaSet(namespace: string, pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1ReplicaSetList;
+ }>;
+ /**
+ * list or watch objects of kind StatefulSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listNamespacedStatefulSet(namespace: string, pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1StatefulSetList;
+ }>;
+ /**
+ * list or watch objects of kind ReplicaSet
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listReplicaSetForAllNamespaces(allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, pretty?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1ReplicaSetList;
+ }>;
+ /**
+ * list or watch objects of kind StatefulSet
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listStatefulSetForAllNamespaces(allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, pretty?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1StatefulSetList;
+ }>;
+ /**
+ * partially update the specified ControllerRevision
+ * @param name name of the ControllerRevision
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedControllerRevision(name: string, namespace: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1ControllerRevision;
+ }>;
+ /**
+ * partially update the specified DaemonSet
+ * @param name name of the DaemonSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedDaemonSet(name: string, namespace: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1DaemonSet;
+ }>;
+ /**
+ * partially update status of the specified DaemonSet
+ * @param name name of the DaemonSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedDaemonSetStatus(name: string, namespace: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1DaemonSet;
+ }>;
+ /**
+ * partially update the specified Deployment
+ * @param name name of the Deployment
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedDeployment(name: string, namespace: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Deployment;
+ }>;
+ /**
+ * partially update scale of the specified Deployment
+ * @param name name of the Scale
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedDeploymentScale(name: string, namespace: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Scale;
+ }>;
+ /**
+ * partially update status of the specified Deployment
+ * @param name name of the Deployment
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedDeploymentStatus(name: string, namespace: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Deployment;
+ }>;
+ /**
+ * partially update the specified ReplicaSet
+ * @param name name of the ReplicaSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedReplicaSet(name: string, namespace: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1ReplicaSet;
+ }>;
+ /**
+ * partially update scale of the specified ReplicaSet
+ * @param name name of the Scale
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedReplicaSetScale(name: string, namespace: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Scale;
+ }>;
+ /**
+ * partially update status of the specified ReplicaSet
+ * @param name name of the ReplicaSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedReplicaSetStatus(name: string, namespace: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1ReplicaSet;
+ }>;
+ /**
+ * partially update the specified StatefulSet
+ * @param name name of the StatefulSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedStatefulSet(name: string, namespace: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1StatefulSet;
+ }>;
+ /**
+ * partially update scale of the specified StatefulSet
+ * @param name name of the Scale
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedStatefulSetScale(name: string, namespace: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Scale;
+ }>;
+ /**
+ * partially update status of the specified StatefulSet
+ * @param name name of the StatefulSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedStatefulSetStatus(name: string, namespace: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1StatefulSet;
+ }>;
+ /**
+ * read the specified ControllerRevision
+ * @param name name of the ControllerRevision
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readNamespacedControllerRevision(name: string, namespace: string, pretty?: string, exact?: boolean, _export?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1ControllerRevision;
+ }>;
+ /**
+ * read the specified DaemonSet
+ * @param name name of the DaemonSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readNamespacedDaemonSet(name: string, namespace: string, pretty?: string, exact?: boolean, _export?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1DaemonSet;
+ }>;
+ /**
+ * read status of the specified DaemonSet
+ * @param name name of the DaemonSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readNamespacedDaemonSetStatus(name: string, namespace: string, pretty?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1DaemonSet;
+ }>;
+ /**
+ * read the specified Deployment
+ * @param name name of the Deployment
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readNamespacedDeployment(name: string, namespace: string, pretty?: string, exact?: boolean, _export?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Deployment;
+ }>;
+ /**
+ * read scale of the specified Deployment
+ * @param name name of the Scale
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readNamespacedDeploymentScale(name: string, namespace: string, pretty?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Scale;
+ }>;
+ /**
+ * read status of the specified Deployment
+ * @param name name of the Deployment
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readNamespacedDeploymentStatus(name: string, namespace: string, pretty?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Deployment;
+ }>;
+ /**
+ * read the specified ReplicaSet
+ * @param name name of the ReplicaSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readNamespacedReplicaSet(name: string, namespace: string, pretty?: string, exact?: boolean, _export?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1ReplicaSet;
+ }>;
+ /**
+ * read scale of the specified ReplicaSet
+ * @param name name of the Scale
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readNamespacedReplicaSetScale(name: string, namespace: string, pretty?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Scale;
+ }>;
+ /**
+ * read status of the specified ReplicaSet
+ * @param name name of the ReplicaSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readNamespacedReplicaSetStatus(name: string, namespace: string, pretty?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1ReplicaSet;
+ }>;
+ /**
+ * read the specified StatefulSet
+ * @param name name of the StatefulSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readNamespacedStatefulSet(name: string, namespace: string, pretty?: string, exact?: boolean, _export?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1StatefulSet;
+ }>;
+ /**
+ * read scale of the specified StatefulSet
+ * @param name name of the Scale
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readNamespacedStatefulSetScale(name: string, namespace: string, pretty?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Scale;
+ }>;
+ /**
+ * read status of the specified StatefulSet
+ * @param name name of the StatefulSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readNamespacedStatefulSetStatus(name: string, namespace: string, pretty?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1StatefulSet;
+ }>;
+ /**
+ * replace the specified ControllerRevision
+ * @param name name of the ControllerRevision
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedControllerRevision(name: string, namespace: string, body: V1ControllerRevision, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1ControllerRevision;
+ }>;
+ /**
+ * replace the specified DaemonSet
+ * @param name name of the DaemonSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedDaemonSet(name: string, namespace: string, body: V1DaemonSet, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1DaemonSet;
+ }>;
+ /**
+ * replace status of the specified DaemonSet
+ * @param name name of the DaemonSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedDaemonSetStatus(name: string, namespace: string, body: V1DaemonSet, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1DaemonSet;
+ }>;
+ /**
+ * replace the specified Deployment
+ * @param name name of the Deployment
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedDeployment(name: string, namespace: string, body: V1Deployment, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Deployment;
+ }>;
+ /**
+ * replace scale of the specified Deployment
+ * @param name name of the Scale
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedDeploymentScale(name: string, namespace: string, body: V1Scale, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Scale;
+ }>;
+ /**
+ * replace status of the specified Deployment
+ * @param name name of the Deployment
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedDeploymentStatus(name: string, namespace: string, body: V1Deployment, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Deployment;
+ }>;
+ /**
+ * replace the specified ReplicaSet
+ * @param name name of the ReplicaSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedReplicaSet(name: string, namespace: string, body: V1ReplicaSet, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1ReplicaSet;
+ }>;
+ /**
+ * replace scale of the specified ReplicaSet
+ * @param name name of the Scale
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedReplicaSetScale(name: string, namespace: string, body: V1Scale, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Scale;
+ }>;
+ /**
+ * replace status of the specified ReplicaSet
+ * @param name name of the ReplicaSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedReplicaSetStatus(name: string, namespace: string, body: V1ReplicaSet, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1ReplicaSet;
+ }>;
+ /**
+ * replace the specified StatefulSet
+ * @param name name of the StatefulSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedStatefulSet(name: string, namespace: string, body: V1StatefulSet, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1StatefulSet;
+ }>;
+ /**
+ * replace scale of the specified StatefulSet
+ * @param name name of the Scale
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedStatefulSetScale(name: string, namespace: string, body: V1Scale, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Scale;
+ }>;
+ /**
+ * replace status of the specified StatefulSet
+ * @param name name of the StatefulSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedStatefulSetStatus(name: string, namespace: string, body: V1StatefulSet, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1StatefulSet;
+ }>;
+}
diff --git a/dist/gen/api/appsV1Api.js b/dist/gen/api/appsV1Api.js
new file mode 100644
index 0000000000..e31dcfc409
--- /dev/null
+++ b/dist/gen/api/appsV1Api.js
@@ -0,0 +1,5143 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+const tslib_1 = require("tslib");
+const localVarRequest = require("request");
+const models_1 = require("../model/models");
+const models_2 = require("../model/models");
+let defaultBasePath = 'http://localhost/';
+// ===============================================
+// This file is autogenerated - Please do not edit
+// ===============================================
+var AppsV1ApiApiKeys;
+(function (AppsV1ApiApiKeys) {
+ AppsV1ApiApiKeys[AppsV1ApiApiKeys["BearerToken"] = 0] = "BearerToken";
+})(AppsV1ApiApiKeys = exports.AppsV1ApiApiKeys || (exports.AppsV1ApiApiKeys = {}));
+class AppsV1Api {
+ constructor(basePathOrUsername, password, basePath) {
+ this._basePath = defaultBasePath;
+ this.defaultHeaders = {};
+ this._useQuerystring = false;
+ this.authentications = {
+ 'default': new models_1.VoidAuth(),
+ 'BearerToken': new models_2.ApiKeyAuth('header', 'authorization'),
+ };
+ if (password) {
+ if (basePath) {
+ this.basePath = basePath;
+ }
+ }
+ else {
+ if (basePathOrUsername) {
+ this.basePath = basePathOrUsername;
+ }
+ }
+ }
+ set useQuerystring(value) {
+ this._useQuerystring = value;
+ }
+ set basePath(basePath) {
+ this._basePath = basePath;
+ }
+ get basePath() {
+ return this._basePath;
+ }
+ setDefaultAuthentication(auth) {
+ this.authentications.default = auth;
+ }
+ setApiKey(key, value) {
+ this.authentications[AppsV1ApiApiKeys[key]].apiKey = value;
+ }
+ /**
+ * create a ControllerRevision
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createNamespacedControllerRevision(namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1/namespaces/{namespace}/controllerrevisions'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling createNamespacedControllerRevision.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling createNamespacedControllerRevision.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'POST',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1ControllerRevision")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1ControllerRevision");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * create a DaemonSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createNamespacedDaemonSet(namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1/namespaces/{namespace}/daemonsets'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling createNamespacedDaemonSet.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling createNamespacedDaemonSet.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'POST',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DaemonSet")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1DaemonSet");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * create a Deployment
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createNamespacedDeployment(namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1/namespaces/{namespace}/deployments'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling createNamespacedDeployment.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling createNamespacedDeployment.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'POST',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1Deployment")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Deployment");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * create a ReplicaSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createNamespacedReplicaSet(namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1/namespaces/{namespace}/replicasets'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling createNamespacedReplicaSet.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling createNamespacedReplicaSet.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'POST',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1ReplicaSet")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1ReplicaSet");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * create a StatefulSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createNamespacedStatefulSet(namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1/namespaces/{namespace}/statefulsets'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling createNamespacedStatefulSet.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling createNamespacedStatefulSet.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'POST',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1StatefulSet")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1StatefulSet");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete collection of ControllerRevision
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionNamespacedControllerRevision(namespace, pretty, allowWatchBookmarks, _continue, dryRun, fieldSelector, gracePeriodSeconds, labelSelector, limit, orphanDependents, propagationPolicy, resourceVersion, timeoutSeconds, watch, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1/namespaces/{namespace}/controllerrevisions'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling deleteCollectionNamespacedControllerRevision.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete collection of DaemonSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionNamespacedDaemonSet(namespace, pretty, allowWatchBookmarks, _continue, dryRun, fieldSelector, gracePeriodSeconds, labelSelector, limit, orphanDependents, propagationPolicy, resourceVersion, timeoutSeconds, watch, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1/namespaces/{namespace}/daemonsets'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling deleteCollectionNamespacedDaemonSet.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete collection of Deployment
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionNamespacedDeployment(namespace, pretty, allowWatchBookmarks, _continue, dryRun, fieldSelector, gracePeriodSeconds, labelSelector, limit, orphanDependents, propagationPolicy, resourceVersion, timeoutSeconds, watch, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1/namespaces/{namespace}/deployments'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling deleteCollectionNamespacedDeployment.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete collection of ReplicaSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionNamespacedReplicaSet(namespace, pretty, allowWatchBookmarks, _continue, dryRun, fieldSelector, gracePeriodSeconds, labelSelector, limit, orphanDependents, propagationPolicy, resourceVersion, timeoutSeconds, watch, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1/namespaces/{namespace}/replicasets'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling deleteCollectionNamespacedReplicaSet.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete collection of StatefulSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionNamespacedStatefulSet(namespace, pretty, allowWatchBookmarks, _continue, dryRun, fieldSelector, gracePeriodSeconds, labelSelector, limit, orphanDependents, propagationPolicy, resourceVersion, timeoutSeconds, watch, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1/namespaces/{namespace}/statefulsets'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling deleteCollectionNamespacedStatefulSet.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete a ControllerRevision
+ * @param name name of the ControllerRevision
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteNamespacedControllerRevision(name, namespace, pretty, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1/namespaces/{namespace}/controllerrevisions/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling deleteNamespacedControllerRevision.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling deleteNamespacedControllerRevision.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete a DaemonSet
+ * @param name name of the DaemonSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteNamespacedDaemonSet(name, namespace, pretty, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1/namespaces/{namespace}/daemonsets/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling deleteNamespacedDaemonSet.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling deleteNamespacedDaemonSet.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete a Deployment
+ * @param name name of the Deployment
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteNamespacedDeployment(name, namespace, pretty, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1/namespaces/{namespace}/deployments/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling deleteNamespacedDeployment.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling deleteNamespacedDeployment.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete a ReplicaSet
+ * @param name name of the ReplicaSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteNamespacedReplicaSet(name, namespace, pretty, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1/namespaces/{namespace}/replicasets/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling deleteNamespacedReplicaSet.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling deleteNamespacedReplicaSet.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete a StatefulSet
+ * @param name name of the StatefulSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteNamespacedStatefulSet(name, namespace, pretty, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1/namespaces/{namespace}/statefulsets/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling deleteNamespacedStatefulSet.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling deleteNamespacedStatefulSet.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * get available resources
+ */
+ getAPIResources(options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1/';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1APIResourceList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind ControllerRevision
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listControllerRevisionForAllNamespaces(allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, pretty, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1/controllerrevisions';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1ControllerRevisionList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind DaemonSet
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listDaemonSetForAllNamespaces(allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, pretty, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1/daemonsets';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1DaemonSetList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind Deployment
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listDeploymentForAllNamespaces(allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, pretty, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1/deployments';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1DeploymentList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind ControllerRevision
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listNamespacedControllerRevision(namespace, pretty, allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1/namespaces/{namespace}/controllerrevisions'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling listNamespacedControllerRevision.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1ControllerRevisionList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind DaemonSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listNamespacedDaemonSet(namespace, pretty, allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1/namespaces/{namespace}/daemonsets'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling listNamespacedDaemonSet.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1DaemonSetList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind Deployment
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listNamespacedDeployment(namespace, pretty, allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1/namespaces/{namespace}/deployments'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling listNamespacedDeployment.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1DeploymentList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind ReplicaSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listNamespacedReplicaSet(namespace, pretty, allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1/namespaces/{namespace}/replicasets'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling listNamespacedReplicaSet.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1ReplicaSetList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind StatefulSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listNamespacedStatefulSet(namespace, pretty, allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1/namespaces/{namespace}/statefulsets'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling listNamespacedStatefulSet.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1StatefulSetList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind ReplicaSet
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listReplicaSetForAllNamespaces(allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, pretty, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1/replicasets';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1ReplicaSetList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind StatefulSet
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listStatefulSetForAllNamespaces(allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, pretty, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1/statefulsets';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1StatefulSetList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update the specified ControllerRevision
+ * @param name name of the ControllerRevision
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedControllerRevision(name, namespace, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1/namespaces/{namespace}/controllerrevisions/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchNamespacedControllerRevision.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling patchNamespacedControllerRevision.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchNamespacedControllerRevision.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1ControllerRevision");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update the specified DaemonSet
+ * @param name name of the DaemonSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedDaemonSet(name, namespace, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1/namespaces/{namespace}/daemonsets/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchNamespacedDaemonSet.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling patchNamespacedDaemonSet.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchNamespacedDaemonSet.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1DaemonSet");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update status of the specified DaemonSet
+ * @param name name of the DaemonSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedDaemonSetStatus(name, namespace, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1/namespaces/{namespace}/daemonsets/{name}/status'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchNamespacedDaemonSetStatus.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling patchNamespacedDaemonSetStatus.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchNamespacedDaemonSetStatus.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1DaemonSet");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update the specified Deployment
+ * @param name name of the Deployment
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedDeployment(name, namespace, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1/namespaces/{namespace}/deployments/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchNamespacedDeployment.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling patchNamespacedDeployment.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchNamespacedDeployment.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Deployment");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update scale of the specified Deployment
+ * @param name name of the Scale
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedDeploymentScale(name, namespace, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1/namespaces/{namespace}/deployments/{name}/scale'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchNamespacedDeploymentScale.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling patchNamespacedDeploymentScale.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchNamespacedDeploymentScale.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Scale");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update status of the specified Deployment
+ * @param name name of the Deployment
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedDeploymentStatus(name, namespace, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1/namespaces/{namespace}/deployments/{name}/status'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchNamespacedDeploymentStatus.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling patchNamespacedDeploymentStatus.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchNamespacedDeploymentStatus.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Deployment");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update the specified ReplicaSet
+ * @param name name of the ReplicaSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedReplicaSet(name, namespace, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1/namespaces/{namespace}/replicasets/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchNamespacedReplicaSet.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling patchNamespacedReplicaSet.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchNamespacedReplicaSet.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1ReplicaSet");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update scale of the specified ReplicaSet
+ * @param name name of the Scale
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedReplicaSetScale(name, namespace, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1/namespaces/{namespace}/replicasets/{name}/scale'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchNamespacedReplicaSetScale.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling patchNamespacedReplicaSetScale.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchNamespacedReplicaSetScale.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Scale");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update status of the specified ReplicaSet
+ * @param name name of the ReplicaSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedReplicaSetStatus(name, namespace, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1/namespaces/{namespace}/replicasets/{name}/status'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchNamespacedReplicaSetStatus.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling patchNamespacedReplicaSetStatus.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchNamespacedReplicaSetStatus.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1ReplicaSet");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update the specified StatefulSet
+ * @param name name of the StatefulSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedStatefulSet(name, namespace, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1/namespaces/{namespace}/statefulsets/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchNamespacedStatefulSet.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling patchNamespacedStatefulSet.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchNamespacedStatefulSet.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1StatefulSet");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update scale of the specified StatefulSet
+ * @param name name of the Scale
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedStatefulSetScale(name, namespace, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1/namespaces/{namespace}/statefulsets/{name}/scale'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchNamespacedStatefulSetScale.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling patchNamespacedStatefulSetScale.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchNamespacedStatefulSetScale.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Scale");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update status of the specified StatefulSet
+ * @param name name of the StatefulSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedStatefulSetStatus(name, namespace, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1/namespaces/{namespace}/statefulsets/{name}/status'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchNamespacedStatefulSetStatus.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling patchNamespacedStatefulSetStatus.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchNamespacedStatefulSetStatus.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1StatefulSet");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read the specified ControllerRevision
+ * @param name name of the ControllerRevision
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readNamespacedControllerRevision(name, namespace, pretty, exact, _export, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1/namespaces/{namespace}/controllerrevisions/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readNamespacedControllerRevision.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling readNamespacedControllerRevision.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (exact !== undefined) {
+ localVarQueryParameters['exact'] = models_1.ObjectSerializer.serialize(exact, "boolean");
+ }
+ if (_export !== undefined) {
+ localVarQueryParameters['export'] = models_1.ObjectSerializer.serialize(_export, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1ControllerRevision");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read the specified DaemonSet
+ * @param name name of the DaemonSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readNamespacedDaemonSet(name, namespace, pretty, exact, _export, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1/namespaces/{namespace}/daemonsets/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readNamespacedDaemonSet.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling readNamespacedDaemonSet.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (exact !== undefined) {
+ localVarQueryParameters['exact'] = models_1.ObjectSerializer.serialize(exact, "boolean");
+ }
+ if (_export !== undefined) {
+ localVarQueryParameters['export'] = models_1.ObjectSerializer.serialize(_export, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1DaemonSet");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read status of the specified DaemonSet
+ * @param name name of the DaemonSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readNamespacedDaemonSetStatus(name, namespace, pretty, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1/namespaces/{namespace}/daemonsets/{name}/status'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readNamespacedDaemonSetStatus.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling readNamespacedDaemonSetStatus.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1DaemonSet");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read the specified Deployment
+ * @param name name of the Deployment
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readNamespacedDeployment(name, namespace, pretty, exact, _export, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1/namespaces/{namespace}/deployments/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readNamespacedDeployment.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling readNamespacedDeployment.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (exact !== undefined) {
+ localVarQueryParameters['exact'] = models_1.ObjectSerializer.serialize(exact, "boolean");
+ }
+ if (_export !== undefined) {
+ localVarQueryParameters['export'] = models_1.ObjectSerializer.serialize(_export, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Deployment");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read scale of the specified Deployment
+ * @param name name of the Scale
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readNamespacedDeploymentScale(name, namespace, pretty, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1/namespaces/{namespace}/deployments/{name}/scale'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readNamespacedDeploymentScale.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling readNamespacedDeploymentScale.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Scale");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read status of the specified Deployment
+ * @param name name of the Deployment
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readNamespacedDeploymentStatus(name, namespace, pretty, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1/namespaces/{namespace}/deployments/{name}/status'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readNamespacedDeploymentStatus.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling readNamespacedDeploymentStatus.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Deployment");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read the specified ReplicaSet
+ * @param name name of the ReplicaSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readNamespacedReplicaSet(name, namespace, pretty, exact, _export, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1/namespaces/{namespace}/replicasets/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readNamespacedReplicaSet.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling readNamespacedReplicaSet.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (exact !== undefined) {
+ localVarQueryParameters['exact'] = models_1.ObjectSerializer.serialize(exact, "boolean");
+ }
+ if (_export !== undefined) {
+ localVarQueryParameters['export'] = models_1.ObjectSerializer.serialize(_export, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1ReplicaSet");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read scale of the specified ReplicaSet
+ * @param name name of the Scale
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readNamespacedReplicaSetScale(name, namespace, pretty, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1/namespaces/{namespace}/replicasets/{name}/scale'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readNamespacedReplicaSetScale.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling readNamespacedReplicaSetScale.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Scale");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read status of the specified ReplicaSet
+ * @param name name of the ReplicaSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readNamespacedReplicaSetStatus(name, namespace, pretty, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1/namespaces/{namespace}/replicasets/{name}/status'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readNamespacedReplicaSetStatus.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling readNamespacedReplicaSetStatus.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1ReplicaSet");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read the specified StatefulSet
+ * @param name name of the StatefulSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readNamespacedStatefulSet(name, namespace, pretty, exact, _export, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1/namespaces/{namespace}/statefulsets/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readNamespacedStatefulSet.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling readNamespacedStatefulSet.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (exact !== undefined) {
+ localVarQueryParameters['exact'] = models_1.ObjectSerializer.serialize(exact, "boolean");
+ }
+ if (_export !== undefined) {
+ localVarQueryParameters['export'] = models_1.ObjectSerializer.serialize(_export, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1StatefulSet");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read scale of the specified StatefulSet
+ * @param name name of the Scale
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readNamespacedStatefulSetScale(name, namespace, pretty, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1/namespaces/{namespace}/statefulsets/{name}/scale'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readNamespacedStatefulSetScale.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling readNamespacedStatefulSetScale.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Scale");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read status of the specified StatefulSet
+ * @param name name of the StatefulSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readNamespacedStatefulSetStatus(name, namespace, pretty, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1/namespaces/{namespace}/statefulsets/{name}/status'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readNamespacedStatefulSetStatus.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling readNamespacedStatefulSetStatus.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1StatefulSet");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace the specified ControllerRevision
+ * @param name name of the ControllerRevision
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedControllerRevision(name, namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1/namespaces/{namespace}/controllerrevisions/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceNamespacedControllerRevision.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling replaceNamespacedControllerRevision.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceNamespacedControllerRevision.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1ControllerRevision")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1ControllerRevision");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace the specified DaemonSet
+ * @param name name of the DaemonSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedDaemonSet(name, namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1/namespaces/{namespace}/daemonsets/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceNamespacedDaemonSet.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling replaceNamespacedDaemonSet.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceNamespacedDaemonSet.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DaemonSet")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1DaemonSet");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace status of the specified DaemonSet
+ * @param name name of the DaemonSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedDaemonSetStatus(name, namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1/namespaces/{namespace}/daemonsets/{name}/status'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceNamespacedDaemonSetStatus.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling replaceNamespacedDaemonSetStatus.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceNamespacedDaemonSetStatus.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DaemonSet")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1DaemonSet");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace the specified Deployment
+ * @param name name of the Deployment
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedDeployment(name, namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1/namespaces/{namespace}/deployments/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceNamespacedDeployment.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling replaceNamespacedDeployment.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceNamespacedDeployment.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1Deployment")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Deployment");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace scale of the specified Deployment
+ * @param name name of the Scale
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedDeploymentScale(name, namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1/namespaces/{namespace}/deployments/{name}/scale'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceNamespacedDeploymentScale.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling replaceNamespacedDeploymentScale.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceNamespacedDeploymentScale.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1Scale")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Scale");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace status of the specified Deployment
+ * @param name name of the Deployment
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedDeploymentStatus(name, namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1/namespaces/{namespace}/deployments/{name}/status'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceNamespacedDeploymentStatus.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling replaceNamespacedDeploymentStatus.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceNamespacedDeploymentStatus.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1Deployment")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Deployment");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace the specified ReplicaSet
+ * @param name name of the ReplicaSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedReplicaSet(name, namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1/namespaces/{namespace}/replicasets/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceNamespacedReplicaSet.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling replaceNamespacedReplicaSet.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceNamespacedReplicaSet.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1ReplicaSet")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1ReplicaSet");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace scale of the specified ReplicaSet
+ * @param name name of the Scale
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedReplicaSetScale(name, namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1/namespaces/{namespace}/replicasets/{name}/scale'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceNamespacedReplicaSetScale.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling replaceNamespacedReplicaSetScale.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceNamespacedReplicaSetScale.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1Scale")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Scale");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace status of the specified ReplicaSet
+ * @param name name of the ReplicaSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedReplicaSetStatus(name, namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1/namespaces/{namespace}/replicasets/{name}/status'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceNamespacedReplicaSetStatus.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling replaceNamespacedReplicaSetStatus.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceNamespacedReplicaSetStatus.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1ReplicaSet")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1ReplicaSet");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace the specified StatefulSet
+ * @param name name of the StatefulSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedStatefulSet(name, namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1/namespaces/{namespace}/statefulsets/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceNamespacedStatefulSet.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling replaceNamespacedStatefulSet.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceNamespacedStatefulSet.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1StatefulSet")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1StatefulSet");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace scale of the specified StatefulSet
+ * @param name name of the Scale
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedStatefulSetScale(name, namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1/namespaces/{namespace}/statefulsets/{name}/scale'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceNamespacedStatefulSetScale.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling replaceNamespacedStatefulSetScale.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceNamespacedStatefulSetScale.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1Scale")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Scale");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace status of the specified StatefulSet
+ * @param name name of the StatefulSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedStatefulSetStatus(name, namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1/namespaces/{namespace}/statefulsets/{name}/status'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceNamespacedStatefulSetStatus.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling replaceNamespacedStatefulSetStatus.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceNamespacedStatefulSetStatus.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1StatefulSet")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1StatefulSet");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+}
+exports.AppsV1Api = AppsV1Api;
+//# sourceMappingURL=appsV1Api.js.map
\ No newline at end of file
diff --git a/dist/gen/api/appsV1Api.js.map b/dist/gen/api/appsV1Api.js.map
new file mode 100644
index 0000000000..c35b40434c
--- /dev/null
+++ b/dist/gen/api/appsV1Api.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"appsV1Api.js","sourceRoot":"","sources":["../../../src/gen/api/appsV1Api.ts"],"names":[],"mappings":"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"}
\ No newline at end of file
diff --git a/dist/gen/api/appsV1beta1Api.d.ts b/dist/gen/api/appsV1beta1Api.d.ts
new file mode 100644
index 0000000000..336f533b6a
--- /dev/null
+++ b/dist/gen/api/appsV1beta1Api.d.ts
@@ -0,0 +1,726 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+///
+import http = require('http');
+import { AppsV1beta1Deployment } from '../model/appsV1beta1Deployment';
+import { AppsV1beta1DeploymentList } from '../model/appsV1beta1DeploymentList';
+import { AppsV1beta1DeploymentRollback } from '../model/appsV1beta1DeploymentRollback';
+import { AppsV1beta1Scale } from '../model/appsV1beta1Scale';
+import { V1APIResourceList } from '../model/v1APIResourceList';
+import { V1DeleteOptions } from '../model/v1DeleteOptions';
+import { V1Status } from '../model/v1Status';
+import { V1beta1ControllerRevision } from '../model/v1beta1ControllerRevision';
+import { V1beta1ControllerRevisionList } from '../model/v1beta1ControllerRevisionList';
+import { V1beta1StatefulSet } from '../model/v1beta1StatefulSet';
+import { V1beta1StatefulSetList } from '../model/v1beta1StatefulSetList';
+import { Authentication } from '../model/models';
+import { ApiKeyAuth } from '../model/models';
+export declare enum AppsV1beta1ApiApiKeys {
+ BearerToken = 0
+}
+export declare class AppsV1beta1Api {
+ protected _basePath: string;
+ protected defaultHeaders: any;
+ protected _useQuerystring: boolean;
+ protected authentications: {
+ 'default': Authentication;
+ 'BearerToken': ApiKeyAuth;
+ };
+ constructor(basePath?: string);
+ useQuerystring: boolean;
+ basePath: string;
+ setDefaultAuthentication(auth: Authentication): void;
+ setApiKey(key: AppsV1beta1ApiApiKeys, value: string): void;
+ /**
+ * create a ControllerRevision
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createNamespacedControllerRevision(namespace: string, body: V1beta1ControllerRevision, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1ControllerRevision;
+ }>;
+ /**
+ * create a Deployment
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createNamespacedDeployment(namespace: string, body: AppsV1beta1Deployment, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: AppsV1beta1Deployment;
+ }>;
+ /**
+ * create rollback of a Deployment
+ * @param name name of the DeploymentRollback
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ createNamespacedDeploymentRollback(name: string, namespace: string, body: AppsV1beta1DeploymentRollback, dryRun?: string, fieldManager?: string, pretty?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * create a StatefulSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createNamespacedStatefulSet(namespace: string, body: V1beta1StatefulSet, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1StatefulSet;
+ }>;
+ /**
+ * delete collection of ControllerRevision
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionNamespacedControllerRevision(namespace: string, pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, dryRun?: string, fieldSelector?: string, gracePeriodSeconds?: number, labelSelector?: string, limit?: number, orphanDependents?: boolean, propagationPolicy?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete collection of Deployment
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionNamespacedDeployment(namespace: string, pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, dryRun?: string, fieldSelector?: string, gracePeriodSeconds?: number, labelSelector?: string, limit?: number, orphanDependents?: boolean, propagationPolicy?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete collection of StatefulSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionNamespacedStatefulSet(namespace: string, pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, dryRun?: string, fieldSelector?: string, gracePeriodSeconds?: number, labelSelector?: string, limit?: number, orphanDependents?: boolean, propagationPolicy?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete a ControllerRevision
+ * @param name name of the ControllerRevision
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteNamespacedControllerRevision(name: string, namespace: string, pretty?: string, dryRun?: string, gracePeriodSeconds?: number, orphanDependents?: boolean, propagationPolicy?: string, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete a Deployment
+ * @param name name of the Deployment
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteNamespacedDeployment(name: string, namespace: string, pretty?: string, dryRun?: string, gracePeriodSeconds?: number, orphanDependents?: boolean, propagationPolicy?: string, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete a StatefulSet
+ * @param name name of the StatefulSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteNamespacedStatefulSet(name: string, namespace: string, pretty?: string, dryRun?: string, gracePeriodSeconds?: number, orphanDependents?: boolean, propagationPolicy?: string, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * get available resources
+ */
+ getAPIResources(options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1APIResourceList;
+ }>;
+ /**
+ * list or watch objects of kind ControllerRevision
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listControllerRevisionForAllNamespaces(allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, pretty?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1ControllerRevisionList;
+ }>;
+ /**
+ * list or watch objects of kind Deployment
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listDeploymentForAllNamespaces(allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, pretty?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: AppsV1beta1DeploymentList;
+ }>;
+ /**
+ * list or watch objects of kind ControllerRevision
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listNamespacedControllerRevision(namespace: string, pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1ControllerRevisionList;
+ }>;
+ /**
+ * list or watch objects of kind Deployment
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listNamespacedDeployment(namespace: string, pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: AppsV1beta1DeploymentList;
+ }>;
+ /**
+ * list or watch objects of kind StatefulSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listNamespacedStatefulSet(namespace: string, pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1StatefulSetList;
+ }>;
+ /**
+ * list or watch objects of kind StatefulSet
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listStatefulSetForAllNamespaces(allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, pretty?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1StatefulSetList;
+ }>;
+ /**
+ * partially update the specified ControllerRevision
+ * @param name name of the ControllerRevision
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedControllerRevision(name: string, namespace: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1ControllerRevision;
+ }>;
+ /**
+ * partially update the specified Deployment
+ * @param name name of the Deployment
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedDeployment(name: string, namespace: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: AppsV1beta1Deployment;
+ }>;
+ /**
+ * partially update scale of the specified Deployment
+ * @param name name of the Scale
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedDeploymentScale(name: string, namespace: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: AppsV1beta1Scale;
+ }>;
+ /**
+ * partially update status of the specified Deployment
+ * @param name name of the Deployment
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedDeploymentStatus(name: string, namespace: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: AppsV1beta1Deployment;
+ }>;
+ /**
+ * partially update the specified StatefulSet
+ * @param name name of the StatefulSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedStatefulSet(name: string, namespace: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1StatefulSet;
+ }>;
+ /**
+ * partially update scale of the specified StatefulSet
+ * @param name name of the Scale
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedStatefulSetScale(name: string, namespace: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: AppsV1beta1Scale;
+ }>;
+ /**
+ * partially update status of the specified StatefulSet
+ * @param name name of the StatefulSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedStatefulSetStatus(name: string, namespace: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1StatefulSet;
+ }>;
+ /**
+ * read the specified ControllerRevision
+ * @param name name of the ControllerRevision
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readNamespacedControllerRevision(name: string, namespace: string, pretty?: string, exact?: boolean, _export?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1ControllerRevision;
+ }>;
+ /**
+ * read the specified Deployment
+ * @param name name of the Deployment
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readNamespacedDeployment(name: string, namespace: string, pretty?: string, exact?: boolean, _export?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: AppsV1beta1Deployment;
+ }>;
+ /**
+ * read scale of the specified Deployment
+ * @param name name of the Scale
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readNamespacedDeploymentScale(name: string, namespace: string, pretty?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: AppsV1beta1Scale;
+ }>;
+ /**
+ * read status of the specified Deployment
+ * @param name name of the Deployment
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readNamespacedDeploymentStatus(name: string, namespace: string, pretty?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: AppsV1beta1Deployment;
+ }>;
+ /**
+ * read the specified StatefulSet
+ * @param name name of the StatefulSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readNamespacedStatefulSet(name: string, namespace: string, pretty?: string, exact?: boolean, _export?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1StatefulSet;
+ }>;
+ /**
+ * read scale of the specified StatefulSet
+ * @param name name of the Scale
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readNamespacedStatefulSetScale(name: string, namespace: string, pretty?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: AppsV1beta1Scale;
+ }>;
+ /**
+ * read status of the specified StatefulSet
+ * @param name name of the StatefulSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readNamespacedStatefulSetStatus(name: string, namespace: string, pretty?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1StatefulSet;
+ }>;
+ /**
+ * replace the specified ControllerRevision
+ * @param name name of the ControllerRevision
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedControllerRevision(name: string, namespace: string, body: V1beta1ControllerRevision, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1ControllerRevision;
+ }>;
+ /**
+ * replace the specified Deployment
+ * @param name name of the Deployment
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedDeployment(name: string, namespace: string, body: AppsV1beta1Deployment, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: AppsV1beta1Deployment;
+ }>;
+ /**
+ * replace scale of the specified Deployment
+ * @param name name of the Scale
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedDeploymentScale(name: string, namespace: string, body: AppsV1beta1Scale, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: AppsV1beta1Scale;
+ }>;
+ /**
+ * replace status of the specified Deployment
+ * @param name name of the Deployment
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedDeploymentStatus(name: string, namespace: string, body: AppsV1beta1Deployment, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: AppsV1beta1Deployment;
+ }>;
+ /**
+ * replace the specified StatefulSet
+ * @param name name of the StatefulSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedStatefulSet(name: string, namespace: string, body: V1beta1StatefulSet, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1StatefulSet;
+ }>;
+ /**
+ * replace scale of the specified StatefulSet
+ * @param name name of the Scale
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedStatefulSetScale(name: string, namespace: string, body: AppsV1beta1Scale, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: AppsV1beta1Scale;
+ }>;
+ /**
+ * replace status of the specified StatefulSet
+ * @param name name of the StatefulSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedStatefulSetStatus(name: string, namespace: string, body: V1beta1StatefulSet, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1StatefulSet;
+ }>;
+}
diff --git a/dist/gen/api/appsV1beta1Api.js b/dist/gen/api/appsV1beta1Api.js
new file mode 100644
index 0000000000..a385fe97ef
--- /dev/null
+++ b/dist/gen/api/appsV1beta1Api.js
@@ -0,0 +1,3165 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+const tslib_1 = require("tslib");
+const localVarRequest = require("request");
+const models_1 = require("../model/models");
+const models_2 = require("../model/models");
+let defaultBasePath = 'http://localhost/';
+// ===============================================
+// This file is autogenerated - Please do not edit
+// ===============================================
+var AppsV1beta1ApiApiKeys;
+(function (AppsV1beta1ApiApiKeys) {
+ AppsV1beta1ApiApiKeys[AppsV1beta1ApiApiKeys["BearerToken"] = 0] = "BearerToken";
+})(AppsV1beta1ApiApiKeys = exports.AppsV1beta1ApiApiKeys || (exports.AppsV1beta1ApiApiKeys = {}));
+class AppsV1beta1Api {
+ constructor(basePathOrUsername, password, basePath) {
+ this._basePath = defaultBasePath;
+ this.defaultHeaders = {};
+ this._useQuerystring = false;
+ this.authentications = {
+ 'default': new models_1.VoidAuth(),
+ 'BearerToken': new models_2.ApiKeyAuth('header', 'authorization'),
+ };
+ if (password) {
+ if (basePath) {
+ this.basePath = basePath;
+ }
+ }
+ else {
+ if (basePathOrUsername) {
+ this.basePath = basePathOrUsername;
+ }
+ }
+ }
+ set useQuerystring(value) {
+ this._useQuerystring = value;
+ }
+ set basePath(basePath) {
+ this._basePath = basePath;
+ }
+ get basePath() {
+ return this._basePath;
+ }
+ setDefaultAuthentication(auth) {
+ this.authentications.default = auth;
+ }
+ setApiKey(key, value) {
+ this.authentications[AppsV1beta1ApiApiKeys[key]].apiKey = value;
+ }
+ /**
+ * create a ControllerRevision
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createNamespacedControllerRevision(namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1beta1/namespaces/{namespace}/controllerrevisions'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling createNamespacedControllerRevision.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling createNamespacedControllerRevision.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'POST',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1beta1ControllerRevision")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1ControllerRevision");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * create a Deployment
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createNamespacedDeployment(namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1beta1/namespaces/{namespace}/deployments'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling createNamespacedDeployment.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling createNamespacedDeployment.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'POST',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "AppsV1beta1Deployment")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "AppsV1beta1Deployment");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * create rollback of a Deployment
+ * @param name name of the DeploymentRollback
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ createNamespacedDeploymentRollback(name, namespace, body, dryRun, fieldManager, pretty, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1beta1/namespaces/{namespace}/deployments/{name}/rollback'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling createNamespacedDeploymentRollback.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling createNamespacedDeploymentRollback.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling createNamespacedDeploymentRollback.');
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'POST',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "AppsV1beta1DeploymentRollback")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * create a StatefulSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createNamespacedStatefulSet(namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1beta1/namespaces/{namespace}/statefulsets'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling createNamespacedStatefulSet.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling createNamespacedStatefulSet.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'POST',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1beta1StatefulSet")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1StatefulSet");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete collection of ControllerRevision
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionNamespacedControllerRevision(namespace, pretty, allowWatchBookmarks, _continue, dryRun, fieldSelector, gracePeriodSeconds, labelSelector, limit, orphanDependents, propagationPolicy, resourceVersion, timeoutSeconds, watch, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1beta1/namespaces/{namespace}/controllerrevisions'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling deleteCollectionNamespacedControllerRevision.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete collection of Deployment
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionNamespacedDeployment(namespace, pretty, allowWatchBookmarks, _continue, dryRun, fieldSelector, gracePeriodSeconds, labelSelector, limit, orphanDependents, propagationPolicy, resourceVersion, timeoutSeconds, watch, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1beta1/namespaces/{namespace}/deployments'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling deleteCollectionNamespacedDeployment.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete collection of StatefulSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionNamespacedStatefulSet(namespace, pretty, allowWatchBookmarks, _continue, dryRun, fieldSelector, gracePeriodSeconds, labelSelector, limit, orphanDependents, propagationPolicy, resourceVersion, timeoutSeconds, watch, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1beta1/namespaces/{namespace}/statefulsets'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling deleteCollectionNamespacedStatefulSet.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete a ControllerRevision
+ * @param name name of the ControllerRevision
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteNamespacedControllerRevision(name, namespace, pretty, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1beta1/namespaces/{namespace}/controllerrevisions/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling deleteNamespacedControllerRevision.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling deleteNamespacedControllerRevision.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete a Deployment
+ * @param name name of the Deployment
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteNamespacedDeployment(name, namespace, pretty, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1beta1/namespaces/{namespace}/deployments/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling deleteNamespacedDeployment.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling deleteNamespacedDeployment.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete a StatefulSet
+ * @param name name of the StatefulSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteNamespacedStatefulSet(name, namespace, pretty, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1beta1/namespaces/{namespace}/statefulsets/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling deleteNamespacedStatefulSet.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling deleteNamespacedStatefulSet.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * get available resources
+ */
+ getAPIResources(options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1beta1/';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1APIResourceList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind ControllerRevision
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listControllerRevisionForAllNamespaces(allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, pretty, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1beta1/controllerrevisions';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1ControllerRevisionList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind Deployment
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listDeploymentForAllNamespaces(allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, pretty, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1beta1/deployments';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "AppsV1beta1DeploymentList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind ControllerRevision
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listNamespacedControllerRevision(namespace, pretty, allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1beta1/namespaces/{namespace}/controllerrevisions'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling listNamespacedControllerRevision.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1ControllerRevisionList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind Deployment
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listNamespacedDeployment(namespace, pretty, allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1beta1/namespaces/{namespace}/deployments'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling listNamespacedDeployment.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "AppsV1beta1DeploymentList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind StatefulSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listNamespacedStatefulSet(namespace, pretty, allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1beta1/namespaces/{namespace}/statefulsets'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling listNamespacedStatefulSet.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1StatefulSetList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind StatefulSet
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listStatefulSetForAllNamespaces(allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, pretty, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1beta1/statefulsets';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1StatefulSetList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update the specified ControllerRevision
+ * @param name name of the ControllerRevision
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedControllerRevision(name, namespace, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1beta1/namespaces/{namespace}/controllerrevisions/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchNamespacedControllerRevision.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling patchNamespacedControllerRevision.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchNamespacedControllerRevision.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1ControllerRevision");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update the specified Deployment
+ * @param name name of the Deployment
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedDeployment(name, namespace, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1beta1/namespaces/{namespace}/deployments/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchNamespacedDeployment.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling patchNamespacedDeployment.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchNamespacedDeployment.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "AppsV1beta1Deployment");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update scale of the specified Deployment
+ * @param name name of the Scale
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedDeploymentScale(name, namespace, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1beta1/namespaces/{namespace}/deployments/{name}/scale'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchNamespacedDeploymentScale.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling patchNamespacedDeploymentScale.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchNamespacedDeploymentScale.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "AppsV1beta1Scale");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update status of the specified Deployment
+ * @param name name of the Deployment
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedDeploymentStatus(name, namespace, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1beta1/namespaces/{namespace}/deployments/{name}/status'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchNamespacedDeploymentStatus.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling patchNamespacedDeploymentStatus.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchNamespacedDeploymentStatus.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "AppsV1beta1Deployment");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update the specified StatefulSet
+ * @param name name of the StatefulSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedStatefulSet(name, namespace, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1beta1/namespaces/{namespace}/statefulsets/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchNamespacedStatefulSet.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling patchNamespacedStatefulSet.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchNamespacedStatefulSet.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1StatefulSet");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update scale of the specified StatefulSet
+ * @param name name of the Scale
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedStatefulSetScale(name, namespace, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1beta1/namespaces/{namespace}/statefulsets/{name}/scale'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchNamespacedStatefulSetScale.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling patchNamespacedStatefulSetScale.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchNamespacedStatefulSetScale.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "AppsV1beta1Scale");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update status of the specified StatefulSet
+ * @param name name of the StatefulSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedStatefulSetStatus(name, namespace, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1beta1/namespaces/{namespace}/statefulsets/{name}/status'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchNamespacedStatefulSetStatus.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling patchNamespacedStatefulSetStatus.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchNamespacedStatefulSetStatus.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1StatefulSet");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read the specified ControllerRevision
+ * @param name name of the ControllerRevision
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readNamespacedControllerRevision(name, namespace, pretty, exact, _export, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1beta1/namespaces/{namespace}/controllerrevisions/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readNamespacedControllerRevision.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling readNamespacedControllerRevision.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (exact !== undefined) {
+ localVarQueryParameters['exact'] = models_1.ObjectSerializer.serialize(exact, "boolean");
+ }
+ if (_export !== undefined) {
+ localVarQueryParameters['export'] = models_1.ObjectSerializer.serialize(_export, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1ControllerRevision");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read the specified Deployment
+ * @param name name of the Deployment
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readNamespacedDeployment(name, namespace, pretty, exact, _export, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1beta1/namespaces/{namespace}/deployments/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readNamespacedDeployment.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling readNamespacedDeployment.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (exact !== undefined) {
+ localVarQueryParameters['exact'] = models_1.ObjectSerializer.serialize(exact, "boolean");
+ }
+ if (_export !== undefined) {
+ localVarQueryParameters['export'] = models_1.ObjectSerializer.serialize(_export, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "AppsV1beta1Deployment");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read scale of the specified Deployment
+ * @param name name of the Scale
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readNamespacedDeploymentScale(name, namespace, pretty, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1beta1/namespaces/{namespace}/deployments/{name}/scale'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readNamespacedDeploymentScale.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling readNamespacedDeploymentScale.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "AppsV1beta1Scale");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read status of the specified Deployment
+ * @param name name of the Deployment
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readNamespacedDeploymentStatus(name, namespace, pretty, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1beta1/namespaces/{namespace}/deployments/{name}/status'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readNamespacedDeploymentStatus.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling readNamespacedDeploymentStatus.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "AppsV1beta1Deployment");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read the specified StatefulSet
+ * @param name name of the StatefulSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readNamespacedStatefulSet(name, namespace, pretty, exact, _export, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1beta1/namespaces/{namespace}/statefulsets/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readNamespacedStatefulSet.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling readNamespacedStatefulSet.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (exact !== undefined) {
+ localVarQueryParameters['exact'] = models_1.ObjectSerializer.serialize(exact, "boolean");
+ }
+ if (_export !== undefined) {
+ localVarQueryParameters['export'] = models_1.ObjectSerializer.serialize(_export, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1StatefulSet");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read scale of the specified StatefulSet
+ * @param name name of the Scale
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readNamespacedStatefulSetScale(name, namespace, pretty, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1beta1/namespaces/{namespace}/statefulsets/{name}/scale'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readNamespacedStatefulSetScale.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling readNamespacedStatefulSetScale.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "AppsV1beta1Scale");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read status of the specified StatefulSet
+ * @param name name of the StatefulSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readNamespacedStatefulSetStatus(name, namespace, pretty, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1beta1/namespaces/{namespace}/statefulsets/{name}/status'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readNamespacedStatefulSetStatus.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling readNamespacedStatefulSetStatus.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1StatefulSet");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace the specified ControllerRevision
+ * @param name name of the ControllerRevision
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedControllerRevision(name, namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1beta1/namespaces/{namespace}/controllerrevisions/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceNamespacedControllerRevision.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling replaceNamespacedControllerRevision.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceNamespacedControllerRevision.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1beta1ControllerRevision")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1ControllerRevision");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace the specified Deployment
+ * @param name name of the Deployment
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedDeployment(name, namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1beta1/namespaces/{namespace}/deployments/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceNamespacedDeployment.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling replaceNamespacedDeployment.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceNamespacedDeployment.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "AppsV1beta1Deployment")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "AppsV1beta1Deployment");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace scale of the specified Deployment
+ * @param name name of the Scale
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedDeploymentScale(name, namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1beta1/namespaces/{namespace}/deployments/{name}/scale'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceNamespacedDeploymentScale.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling replaceNamespacedDeploymentScale.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceNamespacedDeploymentScale.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "AppsV1beta1Scale")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "AppsV1beta1Scale");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace status of the specified Deployment
+ * @param name name of the Deployment
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedDeploymentStatus(name, namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1beta1/namespaces/{namespace}/deployments/{name}/status'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceNamespacedDeploymentStatus.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling replaceNamespacedDeploymentStatus.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceNamespacedDeploymentStatus.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "AppsV1beta1Deployment")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "AppsV1beta1Deployment");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace the specified StatefulSet
+ * @param name name of the StatefulSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedStatefulSet(name, namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1beta1/namespaces/{namespace}/statefulsets/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceNamespacedStatefulSet.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling replaceNamespacedStatefulSet.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceNamespacedStatefulSet.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1beta1StatefulSet")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1StatefulSet");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace scale of the specified StatefulSet
+ * @param name name of the Scale
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedStatefulSetScale(name, namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1beta1/namespaces/{namespace}/statefulsets/{name}/scale'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceNamespacedStatefulSetScale.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling replaceNamespacedStatefulSetScale.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceNamespacedStatefulSetScale.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "AppsV1beta1Scale")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "AppsV1beta1Scale");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace status of the specified StatefulSet
+ * @param name name of the StatefulSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedStatefulSetStatus(name, namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1beta1/namespaces/{namespace}/statefulsets/{name}/status'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceNamespacedStatefulSetStatus.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling replaceNamespacedStatefulSetStatus.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceNamespacedStatefulSetStatus.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1beta1StatefulSet")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1StatefulSet");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+}
+exports.AppsV1beta1Api = AppsV1beta1Api;
+//# sourceMappingURL=appsV1beta1Api.js.map
\ No newline at end of file
diff --git a/dist/gen/api/appsV1beta1Api.js.map b/dist/gen/api/appsV1beta1Api.js.map
new file mode 100644
index 0000000000..d95b06a0cb
--- /dev/null
+++ b/dist/gen/api/appsV1beta1Api.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"appsV1beta1Api.js","sourceRoot":"","sources":["../../../src/gen/api/appsV1beta1Api.ts"],"names":[],"mappings":"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"}
\ No newline at end of file
diff --git a/dist/gen/api/appsV1beta2Api.d.ts b/dist/gen/api/appsV1beta2Api.d.ts
new file mode 100644
index 0000000000..e22aa21a0b
--- /dev/null
+++ b/dist/gen/api/appsV1beta2Api.d.ts
@@ -0,0 +1,1165 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+///
+import http = require('http');
+import { V1APIResourceList } from '../model/v1APIResourceList';
+import { V1DeleteOptions } from '../model/v1DeleteOptions';
+import { V1Status } from '../model/v1Status';
+import { V1beta2ControllerRevision } from '../model/v1beta2ControllerRevision';
+import { V1beta2ControllerRevisionList } from '../model/v1beta2ControllerRevisionList';
+import { V1beta2DaemonSet } from '../model/v1beta2DaemonSet';
+import { V1beta2DaemonSetList } from '../model/v1beta2DaemonSetList';
+import { V1beta2Deployment } from '../model/v1beta2Deployment';
+import { V1beta2DeploymentList } from '../model/v1beta2DeploymentList';
+import { V1beta2ReplicaSet } from '../model/v1beta2ReplicaSet';
+import { V1beta2ReplicaSetList } from '../model/v1beta2ReplicaSetList';
+import { V1beta2Scale } from '../model/v1beta2Scale';
+import { V1beta2StatefulSet } from '../model/v1beta2StatefulSet';
+import { V1beta2StatefulSetList } from '../model/v1beta2StatefulSetList';
+import { Authentication } from '../model/models';
+import { ApiKeyAuth } from '../model/models';
+export declare enum AppsV1beta2ApiApiKeys {
+ BearerToken = 0
+}
+export declare class AppsV1beta2Api {
+ protected _basePath: string;
+ protected defaultHeaders: any;
+ protected _useQuerystring: boolean;
+ protected authentications: {
+ 'default': Authentication;
+ 'BearerToken': ApiKeyAuth;
+ };
+ constructor(basePath?: string);
+ useQuerystring: boolean;
+ basePath: string;
+ setDefaultAuthentication(auth: Authentication): void;
+ setApiKey(key: AppsV1beta2ApiApiKeys, value: string): void;
+ /**
+ * create a ControllerRevision
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createNamespacedControllerRevision(namespace: string, body: V1beta2ControllerRevision, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta2ControllerRevision;
+ }>;
+ /**
+ * create a DaemonSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createNamespacedDaemonSet(namespace: string, body: V1beta2DaemonSet, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta2DaemonSet;
+ }>;
+ /**
+ * create a Deployment
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createNamespacedDeployment(namespace: string, body: V1beta2Deployment, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta2Deployment;
+ }>;
+ /**
+ * create a ReplicaSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createNamespacedReplicaSet(namespace: string, body: V1beta2ReplicaSet, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta2ReplicaSet;
+ }>;
+ /**
+ * create a StatefulSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createNamespacedStatefulSet(namespace: string, body: V1beta2StatefulSet, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta2StatefulSet;
+ }>;
+ /**
+ * delete collection of ControllerRevision
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionNamespacedControllerRevision(namespace: string, pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, dryRun?: string, fieldSelector?: string, gracePeriodSeconds?: number, labelSelector?: string, limit?: number, orphanDependents?: boolean, propagationPolicy?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete collection of DaemonSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionNamespacedDaemonSet(namespace: string, pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, dryRun?: string, fieldSelector?: string, gracePeriodSeconds?: number, labelSelector?: string, limit?: number, orphanDependents?: boolean, propagationPolicy?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete collection of Deployment
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionNamespacedDeployment(namespace: string, pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, dryRun?: string, fieldSelector?: string, gracePeriodSeconds?: number, labelSelector?: string, limit?: number, orphanDependents?: boolean, propagationPolicy?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete collection of ReplicaSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionNamespacedReplicaSet(namespace: string, pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, dryRun?: string, fieldSelector?: string, gracePeriodSeconds?: number, labelSelector?: string, limit?: number, orphanDependents?: boolean, propagationPolicy?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete collection of StatefulSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionNamespacedStatefulSet(namespace: string, pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, dryRun?: string, fieldSelector?: string, gracePeriodSeconds?: number, labelSelector?: string, limit?: number, orphanDependents?: boolean, propagationPolicy?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete a ControllerRevision
+ * @param name name of the ControllerRevision
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteNamespacedControllerRevision(name: string, namespace: string, pretty?: string, dryRun?: string, gracePeriodSeconds?: number, orphanDependents?: boolean, propagationPolicy?: string, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete a DaemonSet
+ * @param name name of the DaemonSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteNamespacedDaemonSet(name: string, namespace: string, pretty?: string, dryRun?: string, gracePeriodSeconds?: number, orphanDependents?: boolean, propagationPolicy?: string, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete a Deployment
+ * @param name name of the Deployment
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteNamespacedDeployment(name: string, namespace: string, pretty?: string, dryRun?: string, gracePeriodSeconds?: number, orphanDependents?: boolean, propagationPolicy?: string, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete a ReplicaSet
+ * @param name name of the ReplicaSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteNamespacedReplicaSet(name: string, namespace: string, pretty?: string, dryRun?: string, gracePeriodSeconds?: number, orphanDependents?: boolean, propagationPolicy?: string, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete a StatefulSet
+ * @param name name of the StatefulSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteNamespacedStatefulSet(name: string, namespace: string, pretty?: string, dryRun?: string, gracePeriodSeconds?: number, orphanDependents?: boolean, propagationPolicy?: string, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * get available resources
+ */
+ getAPIResources(options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1APIResourceList;
+ }>;
+ /**
+ * list or watch objects of kind ControllerRevision
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listControllerRevisionForAllNamespaces(allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, pretty?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta2ControllerRevisionList;
+ }>;
+ /**
+ * list or watch objects of kind DaemonSet
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listDaemonSetForAllNamespaces(allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, pretty?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta2DaemonSetList;
+ }>;
+ /**
+ * list or watch objects of kind Deployment
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listDeploymentForAllNamespaces(allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, pretty?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta2DeploymentList;
+ }>;
+ /**
+ * list or watch objects of kind ControllerRevision
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listNamespacedControllerRevision(namespace: string, pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta2ControllerRevisionList;
+ }>;
+ /**
+ * list or watch objects of kind DaemonSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listNamespacedDaemonSet(namespace: string, pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta2DaemonSetList;
+ }>;
+ /**
+ * list or watch objects of kind Deployment
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listNamespacedDeployment(namespace: string, pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta2DeploymentList;
+ }>;
+ /**
+ * list or watch objects of kind ReplicaSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listNamespacedReplicaSet(namespace: string, pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta2ReplicaSetList;
+ }>;
+ /**
+ * list or watch objects of kind StatefulSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listNamespacedStatefulSet(namespace: string, pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta2StatefulSetList;
+ }>;
+ /**
+ * list or watch objects of kind ReplicaSet
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listReplicaSetForAllNamespaces(allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, pretty?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta2ReplicaSetList;
+ }>;
+ /**
+ * list or watch objects of kind StatefulSet
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listStatefulSetForAllNamespaces(allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, pretty?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta2StatefulSetList;
+ }>;
+ /**
+ * partially update the specified ControllerRevision
+ * @param name name of the ControllerRevision
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedControllerRevision(name: string, namespace: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta2ControllerRevision;
+ }>;
+ /**
+ * partially update the specified DaemonSet
+ * @param name name of the DaemonSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedDaemonSet(name: string, namespace: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta2DaemonSet;
+ }>;
+ /**
+ * partially update status of the specified DaemonSet
+ * @param name name of the DaemonSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedDaemonSetStatus(name: string, namespace: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta2DaemonSet;
+ }>;
+ /**
+ * partially update the specified Deployment
+ * @param name name of the Deployment
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedDeployment(name: string, namespace: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta2Deployment;
+ }>;
+ /**
+ * partially update scale of the specified Deployment
+ * @param name name of the Scale
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedDeploymentScale(name: string, namespace: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta2Scale;
+ }>;
+ /**
+ * partially update status of the specified Deployment
+ * @param name name of the Deployment
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedDeploymentStatus(name: string, namespace: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta2Deployment;
+ }>;
+ /**
+ * partially update the specified ReplicaSet
+ * @param name name of the ReplicaSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedReplicaSet(name: string, namespace: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta2ReplicaSet;
+ }>;
+ /**
+ * partially update scale of the specified ReplicaSet
+ * @param name name of the Scale
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedReplicaSetScale(name: string, namespace: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta2Scale;
+ }>;
+ /**
+ * partially update status of the specified ReplicaSet
+ * @param name name of the ReplicaSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedReplicaSetStatus(name: string, namespace: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta2ReplicaSet;
+ }>;
+ /**
+ * partially update the specified StatefulSet
+ * @param name name of the StatefulSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedStatefulSet(name: string, namespace: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta2StatefulSet;
+ }>;
+ /**
+ * partially update scale of the specified StatefulSet
+ * @param name name of the Scale
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedStatefulSetScale(name: string, namespace: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta2Scale;
+ }>;
+ /**
+ * partially update status of the specified StatefulSet
+ * @param name name of the StatefulSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedStatefulSetStatus(name: string, namespace: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta2StatefulSet;
+ }>;
+ /**
+ * read the specified ControllerRevision
+ * @param name name of the ControllerRevision
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readNamespacedControllerRevision(name: string, namespace: string, pretty?: string, exact?: boolean, _export?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta2ControllerRevision;
+ }>;
+ /**
+ * read the specified DaemonSet
+ * @param name name of the DaemonSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readNamespacedDaemonSet(name: string, namespace: string, pretty?: string, exact?: boolean, _export?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta2DaemonSet;
+ }>;
+ /**
+ * read status of the specified DaemonSet
+ * @param name name of the DaemonSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readNamespacedDaemonSetStatus(name: string, namespace: string, pretty?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta2DaemonSet;
+ }>;
+ /**
+ * read the specified Deployment
+ * @param name name of the Deployment
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readNamespacedDeployment(name: string, namespace: string, pretty?: string, exact?: boolean, _export?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta2Deployment;
+ }>;
+ /**
+ * read scale of the specified Deployment
+ * @param name name of the Scale
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readNamespacedDeploymentScale(name: string, namespace: string, pretty?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta2Scale;
+ }>;
+ /**
+ * read status of the specified Deployment
+ * @param name name of the Deployment
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readNamespacedDeploymentStatus(name: string, namespace: string, pretty?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta2Deployment;
+ }>;
+ /**
+ * read the specified ReplicaSet
+ * @param name name of the ReplicaSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readNamespacedReplicaSet(name: string, namespace: string, pretty?: string, exact?: boolean, _export?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta2ReplicaSet;
+ }>;
+ /**
+ * read scale of the specified ReplicaSet
+ * @param name name of the Scale
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readNamespacedReplicaSetScale(name: string, namespace: string, pretty?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta2Scale;
+ }>;
+ /**
+ * read status of the specified ReplicaSet
+ * @param name name of the ReplicaSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readNamespacedReplicaSetStatus(name: string, namespace: string, pretty?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta2ReplicaSet;
+ }>;
+ /**
+ * read the specified StatefulSet
+ * @param name name of the StatefulSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readNamespacedStatefulSet(name: string, namespace: string, pretty?: string, exact?: boolean, _export?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta2StatefulSet;
+ }>;
+ /**
+ * read scale of the specified StatefulSet
+ * @param name name of the Scale
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readNamespacedStatefulSetScale(name: string, namespace: string, pretty?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta2Scale;
+ }>;
+ /**
+ * read status of the specified StatefulSet
+ * @param name name of the StatefulSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readNamespacedStatefulSetStatus(name: string, namespace: string, pretty?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta2StatefulSet;
+ }>;
+ /**
+ * replace the specified ControllerRevision
+ * @param name name of the ControllerRevision
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedControllerRevision(name: string, namespace: string, body: V1beta2ControllerRevision, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta2ControllerRevision;
+ }>;
+ /**
+ * replace the specified DaemonSet
+ * @param name name of the DaemonSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedDaemonSet(name: string, namespace: string, body: V1beta2DaemonSet, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta2DaemonSet;
+ }>;
+ /**
+ * replace status of the specified DaemonSet
+ * @param name name of the DaemonSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedDaemonSetStatus(name: string, namespace: string, body: V1beta2DaemonSet, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta2DaemonSet;
+ }>;
+ /**
+ * replace the specified Deployment
+ * @param name name of the Deployment
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedDeployment(name: string, namespace: string, body: V1beta2Deployment, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta2Deployment;
+ }>;
+ /**
+ * replace scale of the specified Deployment
+ * @param name name of the Scale
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedDeploymentScale(name: string, namespace: string, body: V1beta2Scale, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta2Scale;
+ }>;
+ /**
+ * replace status of the specified Deployment
+ * @param name name of the Deployment
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedDeploymentStatus(name: string, namespace: string, body: V1beta2Deployment, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta2Deployment;
+ }>;
+ /**
+ * replace the specified ReplicaSet
+ * @param name name of the ReplicaSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedReplicaSet(name: string, namespace: string, body: V1beta2ReplicaSet, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta2ReplicaSet;
+ }>;
+ /**
+ * replace scale of the specified ReplicaSet
+ * @param name name of the Scale
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedReplicaSetScale(name: string, namespace: string, body: V1beta2Scale, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta2Scale;
+ }>;
+ /**
+ * replace status of the specified ReplicaSet
+ * @param name name of the ReplicaSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedReplicaSetStatus(name: string, namespace: string, body: V1beta2ReplicaSet, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta2ReplicaSet;
+ }>;
+ /**
+ * replace the specified StatefulSet
+ * @param name name of the StatefulSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedStatefulSet(name: string, namespace: string, body: V1beta2StatefulSet, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta2StatefulSet;
+ }>;
+ /**
+ * replace scale of the specified StatefulSet
+ * @param name name of the Scale
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedStatefulSetScale(name: string, namespace: string, body: V1beta2Scale, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta2Scale;
+ }>;
+ /**
+ * replace status of the specified StatefulSet
+ * @param name name of the StatefulSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedStatefulSetStatus(name: string, namespace: string, body: V1beta2StatefulSet, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta2StatefulSet;
+ }>;
+}
diff --git a/dist/gen/api/appsV1beta2Api.js b/dist/gen/api/appsV1beta2Api.js
new file mode 100644
index 0000000000..5c7b0fa52c
--- /dev/null
+++ b/dist/gen/api/appsV1beta2Api.js
@@ -0,0 +1,5143 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+const tslib_1 = require("tslib");
+const localVarRequest = require("request");
+const models_1 = require("../model/models");
+const models_2 = require("../model/models");
+let defaultBasePath = 'http://localhost/';
+// ===============================================
+// This file is autogenerated - Please do not edit
+// ===============================================
+var AppsV1beta2ApiApiKeys;
+(function (AppsV1beta2ApiApiKeys) {
+ AppsV1beta2ApiApiKeys[AppsV1beta2ApiApiKeys["BearerToken"] = 0] = "BearerToken";
+})(AppsV1beta2ApiApiKeys = exports.AppsV1beta2ApiApiKeys || (exports.AppsV1beta2ApiApiKeys = {}));
+class AppsV1beta2Api {
+ constructor(basePathOrUsername, password, basePath) {
+ this._basePath = defaultBasePath;
+ this.defaultHeaders = {};
+ this._useQuerystring = false;
+ this.authentications = {
+ 'default': new models_1.VoidAuth(),
+ 'BearerToken': new models_2.ApiKeyAuth('header', 'authorization'),
+ };
+ if (password) {
+ if (basePath) {
+ this.basePath = basePath;
+ }
+ }
+ else {
+ if (basePathOrUsername) {
+ this.basePath = basePathOrUsername;
+ }
+ }
+ }
+ set useQuerystring(value) {
+ this._useQuerystring = value;
+ }
+ set basePath(basePath) {
+ this._basePath = basePath;
+ }
+ get basePath() {
+ return this._basePath;
+ }
+ setDefaultAuthentication(auth) {
+ this.authentications.default = auth;
+ }
+ setApiKey(key, value) {
+ this.authentications[AppsV1beta2ApiApiKeys[key]].apiKey = value;
+ }
+ /**
+ * create a ControllerRevision
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createNamespacedControllerRevision(namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1beta2/namespaces/{namespace}/controllerrevisions'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling createNamespacedControllerRevision.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling createNamespacedControllerRevision.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'POST',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1beta2ControllerRevision")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta2ControllerRevision");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * create a DaemonSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createNamespacedDaemonSet(namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1beta2/namespaces/{namespace}/daemonsets'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling createNamespacedDaemonSet.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling createNamespacedDaemonSet.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'POST',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1beta2DaemonSet")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta2DaemonSet");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * create a Deployment
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createNamespacedDeployment(namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1beta2/namespaces/{namespace}/deployments'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling createNamespacedDeployment.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling createNamespacedDeployment.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'POST',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1beta2Deployment")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta2Deployment");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * create a ReplicaSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createNamespacedReplicaSet(namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1beta2/namespaces/{namespace}/replicasets'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling createNamespacedReplicaSet.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling createNamespacedReplicaSet.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'POST',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1beta2ReplicaSet")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta2ReplicaSet");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * create a StatefulSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createNamespacedStatefulSet(namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1beta2/namespaces/{namespace}/statefulsets'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling createNamespacedStatefulSet.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling createNamespacedStatefulSet.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'POST',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1beta2StatefulSet")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta2StatefulSet");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete collection of ControllerRevision
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionNamespacedControllerRevision(namespace, pretty, allowWatchBookmarks, _continue, dryRun, fieldSelector, gracePeriodSeconds, labelSelector, limit, orphanDependents, propagationPolicy, resourceVersion, timeoutSeconds, watch, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1beta2/namespaces/{namespace}/controllerrevisions'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling deleteCollectionNamespacedControllerRevision.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete collection of DaemonSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionNamespacedDaemonSet(namespace, pretty, allowWatchBookmarks, _continue, dryRun, fieldSelector, gracePeriodSeconds, labelSelector, limit, orphanDependents, propagationPolicy, resourceVersion, timeoutSeconds, watch, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1beta2/namespaces/{namespace}/daemonsets'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling deleteCollectionNamespacedDaemonSet.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete collection of Deployment
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionNamespacedDeployment(namespace, pretty, allowWatchBookmarks, _continue, dryRun, fieldSelector, gracePeriodSeconds, labelSelector, limit, orphanDependents, propagationPolicy, resourceVersion, timeoutSeconds, watch, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1beta2/namespaces/{namespace}/deployments'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling deleteCollectionNamespacedDeployment.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete collection of ReplicaSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionNamespacedReplicaSet(namespace, pretty, allowWatchBookmarks, _continue, dryRun, fieldSelector, gracePeriodSeconds, labelSelector, limit, orphanDependents, propagationPolicy, resourceVersion, timeoutSeconds, watch, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1beta2/namespaces/{namespace}/replicasets'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling deleteCollectionNamespacedReplicaSet.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete collection of StatefulSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionNamespacedStatefulSet(namespace, pretty, allowWatchBookmarks, _continue, dryRun, fieldSelector, gracePeriodSeconds, labelSelector, limit, orphanDependents, propagationPolicy, resourceVersion, timeoutSeconds, watch, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1beta2/namespaces/{namespace}/statefulsets'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling deleteCollectionNamespacedStatefulSet.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete a ControllerRevision
+ * @param name name of the ControllerRevision
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteNamespacedControllerRevision(name, namespace, pretty, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1beta2/namespaces/{namespace}/controllerrevisions/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling deleteNamespacedControllerRevision.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling deleteNamespacedControllerRevision.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete a DaemonSet
+ * @param name name of the DaemonSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteNamespacedDaemonSet(name, namespace, pretty, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1beta2/namespaces/{namespace}/daemonsets/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling deleteNamespacedDaemonSet.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling deleteNamespacedDaemonSet.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete a Deployment
+ * @param name name of the Deployment
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteNamespacedDeployment(name, namespace, pretty, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1beta2/namespaces/{namespace}/deployments/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling deleteNamespacedDeployment.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling deleteNamespacedDeployment.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete a ReplicaSet
+ * @param name name of the ReplicaSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteNamespacedReplicaSet(name, namespace, pretty, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1beta2/namespaces/{namespace}/replicasets/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling deleteNamespacedReplicaSet.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling deleteNamespacedReplicaSet.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete a StatefulSet
+ * @param name name of the StatefulSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteNamespacedStatefulSet(name, namespace, pretty, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1beta2/namespaces/{namespace}/statefulsets/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling deleteNamespacedStatefulSet.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling deleteNamespacedStatefulSet.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * get available resources
+ */
+ getAPIResources(options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1beta2/';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1APIResourceList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind ControllerRevision
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listControllerRevisionForAllNamespaces(allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, pretty, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1beta2/controllerrevisions';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta2ControllerRevisionList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind DaemonSet
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listDaemonSetForAllNamespaces(allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, pretty, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1beta2/daemonsets';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta2DaemonSetList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind Deployment
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listDeploymentForAllNamespaces(allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, pretty, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1beta2/deployments';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta2DeploymentList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind ControllerRevision
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listNamespacedControllerRevision(namespace, pretty, allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1beta2/namespaces/{namespace}/controllerrevisions'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling listNamespacedControllerRevision.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta2ControllerRevisionList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind DaemonSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listNamespacedDaemonSet(namespace, pretty, allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1beta2/namespaces/{namespace}/daemonsets'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling listNamespacedDaemonSet.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta2DaemonSetList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind Deployment
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listNamespacedDeployment(namespace, pretty, allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1beta2/namespaces/{namespace}/deployments'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling listNamespacedDeployment.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta2DeploymentList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind ReplicaSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listNamespacedReplicaSet(namespace, pretty, allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1beta2/namespaces/{namespace}/replicasets'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling listNamespacedReplicaSet.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta2ReplicaSetList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind StatefulSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listNamespacedStatefulSet(namespace, pretty, allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1beta2/namespaces/{namespace}/statefulsets'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling listNamespacedStatefulSet.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta2StatefulSetList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind ReplicaSet
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listReplicaSetForAllNamespaces(allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, pretty, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1beta2/replicasets';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta2ReplicaSetList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind StatefulSet
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listStatefulSetForAllNamespaces(allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, pretty, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1beta2/statefulsets';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta2StatefulSetList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update the specified ControllerRevision
+ * @param name name of the ControllerRevision
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedControllerRevision(name, namespace, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1beta2/namespaces/{namespace}/controllerrevisions/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchNamespacedControllerRevision.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling patchNamespacedControllerRevision.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchNamespacedControllerRevision.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta2ControllerRevision");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update the specified DaemonSet
+ * @param name name of the DaemonSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedDaemonSet(name, namespace, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1beta2/namespaces/{namespace}/daemonsets/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchNamespacedDaemonSet.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling patchNamespacedDaemonSet.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchNamespacedDaemonSet.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta2DaemonSet");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update status of the specified DaemonSet
+ * @param name name of the DaemonSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedDaemonSetStatus(name, namespace, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1beta2/namespaces/{namespace}/daemonsets/{name}/status'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchNamespacedDaemonSetStatus.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling patchNamespacedDaemonSetStatus.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchNamespacedDaemonSetStatus.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta2DaemonSet");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update the specified Deployment
+ * @param name name of the Deployment
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedDeployment(name, namespace, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1beta2/namespaces/{namespace}/deployments/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchNamespacedDeployment.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling patchNamespacedDeployment.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchNamespacedDeployment.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta2Deployment");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update scale of the specified Deployment
+ * @param name name of the Scale
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedDeploymentScale(name, namespace, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1beta2/namespaces/{namespace}/deployments/{name}/scale'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchNamespacedDeploymentScale.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling patchNamespacedDeploymentScale.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchNamespacedDeploymentScale.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta2Scale");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update status of the specified Deployment
+ * @param name name of the Deployment
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedDeploymentStatus(name, namespace, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1beta2/namespaces/{namespace}/deployments/{name}/status'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchNamespacedDeploymentStatus.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling patchNamespacedDeploymentStatus.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchNamespacedDeploymentStatus.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta2Deployment");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update the specified ReplicaSet
+ * @param name name of the ReplicaSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedReplicaSet(name, namespace, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1beta2/namespaces/{namespace}/replicasets/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchNamespacedReplicaSet.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling patchNamespacedReplicaSet.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchNamespacedReplicaSet.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta2ReplicaSet");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update scale of the specified ReplicaSet
+ * @param name name of the Scale
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedReplicaSetScale(name, namespace, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1beta2/namespaces/{namespace}/replicasets/{name}/scale'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchNamespacedReplicaSetScale.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling patchNamespacedReplicaSetScale.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchNamespacedReplicaSetScale.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta2Scale");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update status of the specified ReplicaSet
+ * @param name name of the ReplicaSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedReplicaSetStatus(name, namespace, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1beta2/namespaces/{namespace}/replicasets/{name}/status'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchNamespacedReplicaSetStatus.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling patchNamespacedReplicaSetStatus.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchNamespacedReplicaSetStatus.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta2ReplicaSet");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update the specified StatefulSet
+ * @param name name of the StatefulSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedStatefulSet(name, namespace, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1beta2/namespaces/{namespace}/statefulsets/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchNamespacedStatefulSet.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling patchNamespacedStatefulSet.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchNamespacedStatefulSet.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta2StatefulSet");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update scale of the specified StatefulSet
+ * @param name name of the Scale
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedStatefulSetScale(name, namespace, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1beta2/namespaces/{namespace}/statefulsets/{name}/scale'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchNamespacedStatefulSetScale.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling patchNamespacedStatefulSetScale.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchNamespacedStatefulSetScale.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta2Scale");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update status of the specified StatefulSet
+ * @param name name of the StatefulSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedStatefulSetStatus(name, namespace, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1beta2/namespaces/{namespace}/statefulsets/{name}/status'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchNamespacedStatefulSetStatus.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling patchNamespacedStatefulSetStatus.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchNamespacedStatefulSetStatus.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta2StatefulSet");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read the specified ControllerRevision
+ * @param name name of the ControllerRevision
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readNamespacedControllerRevision(name, namespace, pretty, exact, _export, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1beta2/namespaces/{namespace}/controllerrevisions/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readNamespacedControllerRevision.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling readNamespacedControllerRevision.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (exact !== undefined) {
+ localVarQueryParameters['exact'] = models_1.ObjectSerializer.serialize(exact, "boolean");
+ }
+ if (_export !== undefined) {
+ localVarQueryParameters['export'] = models_1.ObjectSerializer.serialize(_export, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta2ControllerRevision");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read the specified DaemonSet
+ * @param name name of the DaemonSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readNamespacedDaemonSet(name, namespace, pretty, exact, _export, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1beta2/namespaces/{namespace}/daemonsets/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readNamespacedDaemonSet.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling readNamespacedDaemonSet.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (exact !== undefined) {
+ localVarQueryParameters['exact'] = models_1.ObjectSerializer.serialize(exact, "boolean");
+ }
+ if (_export !== undefined) {
+ localVarQueryParameters['export'] = models_1.ObjectSerializer.serialize(_export, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta2DaemonSet");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read status of the specified DaemonSet
+ * @param name name of the DaemonSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readNamespacedDaemonSetStatus(name, namespace, pretty, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1beta2/namespaces/{namespace}/daemonsets/{name}/status'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readNamespacedDaemonSetStatus.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling readNamespacedDaemonSetStatus.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta2DaemonSet");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read the specified Deployment
+ * @param name name of the Deployment
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readNamespacedDeployment(name, namespace, pretty, exact, _export, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1beta2/namespaces/{namespace}/deployments/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readNamespacedDeployment.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling readNamespacedDeployment.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (exact !== undefined) {
+ localVarQueryParameters['exact'] = models_1.ObjectSerializer.serialize(exact, "boolean");
+ }
+ if (_export !== undefined) {
+ localVarQueryParameters['export'] = models_1.ObjectSerializer.serialize(_export, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta2Deployment");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read scale of the specified Deployment
+ * @param name name of the Scale
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readNamespacedDeploymentScale(name, namespace, pretty, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1beta2/namespaces/{namespace}/deployments/{name}/scale'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readNamespacedDeploymentScale.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling readNamespacedDeploymentScale.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta2Scale");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read status of the specified Deployment
+ * @param name name of the Deployment
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readNamespacedDeploymentStatus(name, namespace, pretty, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1beta2/namespaces/{namespace}/deployments/{name}/status'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readNamespacedDeploymentStatus.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling readNamespacedDeploymentStatus.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta2Deployment");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read the specified ReplicaSet
+ * @param name name of the ReplicaSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readNamespacedReplicaSet(name, namespace, pretty, exact, _export, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1beta2/namespaces/{namespace}/replicasets/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readNamespacedReplicaSet.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling readNamespacedReplicaSet.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (exact !== undefined) {
+ localVarQueryParameters['exact'] = models_1.ObjectSerializer.serialize(exact, "boolean");
+ }
+ if (_export !== undefined) {
+ localVarQueryParameters['export'] = models_1.ObjectSerializer.serialize(_export, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta2ReplicaSet");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read scale of the specified ReplicaSet
+ * @param name name of the Scale
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readNamespacedReplicaSetScale(name, namespace, pretty, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1beta2/namespaces/{namespace}/replicasets/{name}/scale'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readNamespacedReplicaSetScale.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling readNamespacedReplicaSetScale.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta2Scale");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read status of the specified ReplicaSet
+ * @param name name of the ReplicaSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readNamespacedReplicaSetStatus(name, namespace, pretty, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1beta2/namespaces/{namespace}/replicasets/{name}/status'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readNamespacedReplicaSetStatus.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling readNamespacedReplicaSetStatus.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta2ReplicaSet");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read the specified StatefulSet
+ * @param name name of the StatefulSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readNamespacedStatefulSet(name, namespace, pretty, exact, _export, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1beta2/namespaces/{namespace}/statefulsets/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readNamespacedStatefulSet.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling readNamespacedStatefulSet.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (exact !== undefined) {
+ localVarQueryParameters['exact'] = models_1.ObjectSerializer.serialize(exact, "boolean");
+ }
+ if (_export !== undefined) {
+ localVarQueryParameters['export'] = models_1.ObjectSerializer.serialize(_export, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta2StatefulSet");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read scale of the specified StatefulSet
+ * @param name name of the Scale
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readNamespacedStatefulSetScale(name, namespace, pretty, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1beta2/namespaces/{namespace}/statefulsets/{name}/scale'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readNamespacedStatefulSetScale.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling readNamespacedStatefulSetScale.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta2Scale");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read status of the specified StatefulSet
+ * @param name name of the StatefulSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readNamespacedStatefulSetStatus(name, namespace, pretty, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1beta2/namespaces/{namespace}/statefulsets/{name}/status'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readNamespacedStatefulSetStatus.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling readNamespacedStatefulSetStatus.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta2StatefulSet");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace the specified ControllerRevision
+ * @param name name of the ControllerRevision
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedControllerRevision(name, namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1beta2/namespaces/{namespace}/controllerrevisions/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceNamespacedControllerRevision.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling replaceNamespacedControllerRevision.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceNamespacedControllerRevision.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1beta2ControllerRevision")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta2ControllerRevision");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace the specified DaemonSet
+ * @param name name of the DaemonSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedDaemonSet(name, namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1beta2/namespaces/{namespace}/daemonsets/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceNamespacedDaemonSet.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling replaceNamespacedDaemonSet.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceNamespacedDaemonSet.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1beta2DaemonSet")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta2DaemonSet");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace status of the specified DaemonSet
+ * @param name name of the DaemonSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedDaemonSetStatus(name, namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1beta2/namespaces/{namespace}/daemonsets/{name}/status'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceNamespacedDaemonSetStatus.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling replaceNamespacedDaemonSetStatus.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceNamespacedDaemonSetStatus.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1beta2DaemonSet")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta2DaemonSet");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace the specified Deployment
+ * @param name name of the Deployment
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedDeployment(name, namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1beta2/namespaces/{namespace}/deployments/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceNamespacedDeployment.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling replaceNamespacedDeployment.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceNamespacedDeployment.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1beta2Deployment")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta2Deployment");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace scale of the specified Deployment
+ * @param name name of the Scale
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedDeploymentScale(name, namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1beta2/namespaces/{namespace}/deployments/{name}/scale'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceNamespacedDeploymentScale.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling replaceNamespacedDeploymentScale.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceNamespacedDeploymentScale.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1beta2Scale")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta2Scale");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace status of the specified Deployment
+ * @param name name of the Deployment
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedDeploymentStatus(name, namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1beta2/namespaces/{namespace}/deployments/{name}/status'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceNamespacedDeploymentStatus.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling replaceNamespacedDeploymentStatus.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceNamespacedDeploymentStatus.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1beta2Deployment")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta2Deployment");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace the specified ReplicaSet
+ * @param name name of the ReplicaSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedReplicaSet(name, namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1beta2/namespaces/{namespace}/replicasets/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceNamespacedReplicaSet.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling replaceNamespacedReplicaSet.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceNamespacedReplicaSet.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1beta2ReplicaSet")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta2ReplicaSet");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace scale of the specified ReplicaSet
+ * @param name name of the Scale
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedReplicaSetScale(name, namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1beta2/namespaces/{namespace}/replicasets/{name}/scale'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceNamespacedReplicaSetScale.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling replaceNamespacedReplicaSetScale.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceNamespacedReplicaSetScale.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1beta2Scale")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta2Scale");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace status of the specified ReplicaSet
+ * @param name name of the ReplicaSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedReplicaSetStatus(name, namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1beta2/namespaces/{namespace}/replicasets/{name}/status'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceNamespacedReplicaSetStatus.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling replaceNamespacedReplicaSetStatus.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceNamespacedReplicaSetStatus.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1beta2ReplicaSet")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta2ReplicaSet");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace the specified StatefulSet
+ * @param name name of the StatefulSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedStatefulSet(name, namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1beta2/namespaces/{namespace}/statefulsets/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceNamespacedStatefulSet.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling replaceNamespacedStatefulSet.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceNamespacedStatefulSet.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1beta2StatefulSet")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta2StatefulSet");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace scale of the specified StatefulSet
+ * @param name name of the Scale
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedStatefulSetScale(name, namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1beta2/namespaces/{namespace}/statefulsets/{name}/scale'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceNamespacedStatefulSetScale.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling replaceNamespacedStatefulSetScale.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceNamespacedStatefulSetScale.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1beta2Scale")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta2Scale");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace status of the specified StatefulSet
+ * @param name name of the StatefulSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedStatefulSetStatus(name, namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/apps/v1beta2/namespaces/{namespace}/statefulsets/{name}/status'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceNamespacedStatefulSetStatus.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling replaceNamespacedStatefulSetStatus.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceNamespacedStatefulSetStatus.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1beta2StatefulSet")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta2StatefulSet");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+}
+exports.AppsV1beta2Api = AppsV1beta2Api;
+//# sourceMappingURL=appsV1beta2Api.js.map
\ No newline at end of file
diff --git a/dist/gen/api/appsV1beta2Api.js.map b/dist/gen/api/appsV1beta2Api.js.map
new file mode 100644
index 0000000000..44e49e48ec
--- /dev/null
+++ b/dist/gen/api/appsV1beta2Api.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"appsV1beta2Api.js","sourceRoot":"","sources":["../../../src/gen/api/appsV1beta2Api.ts"],"names":[],"mappings":"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"}
\ No newline at end of file
diff --git a/dist/gen/api/auditregistrationApi.d.ts b/dist/gen/api/auditregistrationApi.d.ts
new file mode 100644
index 0000000000..d8642d8c97
--- /dev/null
+++ b/dist/gen/api/auditregistrationApi.d.ts
@@ -0,0 +1,44 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+///
+import http = require('http');
+import { V1APIGroup } from '../model/v1APIGroup';
+import { Authentication } from '../model/models';
+import { ApiKeyAuth } from '../model/models';
+export declare enum AuditregistrationApiApiKeys {
+ BearerToken = 0
+}
+export declare class AuditregistrationApi {
+ protected _basePath: string;
+ protected defaultHeaders: any;
+ protected _useQuerystring: boolean;
+ protected authentications: {
+ 'default': Authentication;
+ 'BearerToken': ApiKeyAuth;
+ };
+ constructor(basePath?: string);
+ useQuerystring: boolean;
+ basePath: string;
+ setDefaultAuthentication(auth: Authentication): void;
+ setApiKey(key: AuditregistrationApiApiKeys, value: string): void;
+ /**
+ * get information of a group
+ */
+ getAPIGroup(options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1APIGroup;
+ }>;
+}
diff --git a/dist/gen/api/auditregistrationApi.js b/dist/gen/api/auditregistrationApi.js
new file mode 100644
index 0000000000..87aa59530e
--- /dev/null
+++ b/dist/gen/api/auditregistrationApi.js
@@ -0,0 +1,113 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+const tslib_1 = require("tslib");
+const localVarRequest = require("request");
+const models_1 = require("../model/models");
+const models_2 = require("../model/models");
+let defaultBasePath = 'http://localhost/';
+// ===============================================
+// This file is autogenerated - Please do not edit
+// ===============================================
+var AuditregistrationApiApiKeys;
+(function (AuditregistrationApiApiKeys) {
+ AuditregistrationApiApiKeys[AuditregistrationApiApiKeys["BearerToken"] = 0] = "BearerToken";
+})(AuditregistrationApiApiKeys = exports.AuditregistrationApiApiKeys || (exports.AuditregistrationApiApiKeys = {}));
+class AuditregistrationApi {
+ constructor(basePathOrUsername, password, basePath) {
+ this._basePath = defaultBasePath;
+ this.defaultHeaders = {};
+ this._useQuerystring = false;
+ this.authentications = {
+ 'default': new models_1.VoidAuth(),
+ 'BearerToken': new models_2.ApiKeyAuth('header', 'authorization'),
+ };
+ if (password) {
+ if (basePath) {
+ this.basePath = basePath;
+ }
+ }
+ else {
+ if (basePathOrUsername) {
+ this.basePath = basePathOrUsername;
+ }
+ }
+ }
+ set useQuerystring(value) {
+ this._useQuerystring = value;
+ }
+ set basePath(basePath) {
+ this._basePath = basePath;
+ }
+ get basePath() {
+ return this._basePath;
+ }
+ setDefaultAuthentication(auth) {
+ this.authentications.default = auth;
+ }
+ setApiKey(key, value) {
+ this.authentications[AuditregistrationApiApiKeys[key]].apiKey = value;
+ }
+ /**
+ * get information of a group
+ */
+ getAPIGroup(options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/auditregistration.k8s.io/';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1APIGroup");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+}
+exports.AuditregistrationApi = AuditregistrationApi;
+//# sourceMappingURL=auditregistrationApi.js.map
\ No newline at end of file
diff --git a/dist/gen/api/auditregistrationApi.js.map b/dist/gen/api/auditregistrationApi.js.map
new file mode 100644
index 0000000000..aa75d75345
--- /dev/null
+++ b/dist/gen/api/auditregistrationApi.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"auditregistrationApi.js","sourceRoot":"","sources":["../../../src/gen/api/auditregistrationApi.ts"],"names":[],"mappings":"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"}
\ No newline at end of file
diff --git a/dist/gen/api/auditregistrationV1alpha1Api.d.ts b/dist/gen/api/auditregistrationV1alpha1Api.d.ts
new file mode 100644
index 0000000000..eb9d3ba376
--- /dev/null
+++ b/dist/gen/api/auditregistrationV1alpha1Api.d.ts
@@ -0,0 +1,174 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+///
+import http = require('http');
+import { V1APIResourceList } from '../model/v1APIResourceList';
+import { V1DeleteOptions } from '../model/v1DeleteOptions';
+import { V1Status } from '../model/v1Status';
+import { V1alpha1AuditSink } from '../model/v1alpha1AuditSink';
+import { V1alpha1AuditSinkList } from '../model/v1alpha1AuditSinkList';
+import { Authentication } from '../model/models';
+import { ApiKeyAuth } from '../model/models';
+export declare enum AuditregistrationV1alpha1ApiApiKeys {
+ BearerToken = 0
+}
+export declare class AuditregistrationV1alpha1Api {
+ protected _basePath: string;
+ protected defaultHeaders: any;
+ protected _useQuerystring: boolean;
+ protected authentications: {
+ 'default': Authentication;
+ 'BearerToken': ApiKeyAuth;
+ };
+ constructor(basePath?: string);
+ useQuerystring: boolean;
+ basePath: string;
+ setDefaultAuthentication(auth: Authentication): void;
+ setApiKey(key: AuditregistrationV1alpha1ApiApiKeys, value: string): void;
+ /**
+ * create an AuditSink
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createAuditSink(body: V1alpha1AuditSink, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1alpha1AuditSink;
+ }>;
+ /**
+ * delete an AuditSink
+ * @param name name of the AuditSink
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteAuditSink(name: string, pretty?: string, dryRun?: string, gracePeriodSeconds?: number, orphanDependents?: boolean, propagationPolicy?: string, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete collection of AuditSink
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionAuditSink(pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, dryRun?: string, fieldSelector?: string, gracePeriodSeconds?: number, labelSelector?: string, limit?: number, orphanDependents?: boolean, propagationPolicy?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * get available resources
+ */
+ getAPIResources(options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1APIResourceList;
+ }>;
+ /**
+ * list or watch objects of kind AuditSink
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listAuditSink(pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1alpha1AuditSinkList;
+ }>;
+ /**
+ * partially update the specified AuditSink
+ * @param name name of the AuditSink
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchAuditSink(name: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1alpha1AuditSink;
+ }>;
+ /**
+ * read the specified AuditSink
+ * @param name name of the AuditSink
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readAuditSink(name: string, pretty?: string, exact?: boolean, _export?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1alpha1AuditSink;
+ }>;
+ /**
+ * replace the specified AuditSink
+ * @param name name of the AuditSink
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceAuditSink(name: string, body: V1alpha1AuditSink, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1alpha1AuditSink;
+ }>;
+}
diff --git a/dist/gen/api/auditregistrationV1alpha1Api.js b/dist/gen/api/auditregistrationV1alpha1Api.js
new file mode 100644
index 0000000000..a651732f62
--- /dev/null
+++ b/dist/gen/api/auditregistrationV1alpha1Api.js
@@ -0,0 +1,669 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+const tslib_1 = require("tslib");
+const localVarRequest = require("request");
+const models_1 = require("../model/models");
+const models_2 = require("../model/models");
+let defaultBasePath = 'http://localhost/';
+// ===============================================
+// This file is autogenerated - Please do not edit
+// ===============================================
+var AuditregistrationV1alpha1ApiApiKeys;
+(function (AuditregistrationV1alpha1ApiApiKeys) {
+ AuditregistrationV1alpha1ApiApiKeys[AuditregistrationV1alpha1ApiApiKeys["BearerToken"] = 0] = "BearerToken";
+})(AuditregistrationV1alpha1ApiApiKeys = exports.AuditregistrationV1alpha1ApiApiKeys || (exports.AuditregistrationV1alpha1ApiApiKeys = {}));
+class AuditregistrationV1alpha1Api {
+ constructor(basePathOrUsername, password, basePath) {
+ this._basePath = defaultBasePath;
+ this.defaultHeaders = {};
+ this._useQuerystring = false;
+ this.authentications = {
+ 'default': new models_1.VoidAuth(),
+ 'BearerToken': new models_2.ApiKeyAuth('header', 'authorization'),
+ };
+ if (password) {
+ if (basePath) {
+ this.basePath = basePath;
+ }
+ }
+ else {
+ if (basePathOrUsername) {
+ this.basePath = basePathOrUsername;
+ }
+ }
+ }
+ set useQuerystring(value) {
+ this._useQuerystring = value;
+ }
+ set basePath(basePath) {
+ this._basePath = basePath;
+ }
+ get basePath() {
+ return this._basePath;
+ }
+ setDefaultAuthentication(auth) {
+ this.authentications.default = auth;
+ }
+ setApiKey(key, value) {
+ this.authentications[AuditregistrationV1alpha1ApiApiKeys[key]].apiKey = value;
+ }
+ /**
+ * create an AuditSink
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createAuditSink(body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/auditregistration.k8s.io/v1alpha1/auditsinks';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling createAuditSink.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'POST',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1alpha1AuditSink")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1alpha1AuditSink");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete an AuditSink
+ * @param name name of the AuditSink
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteAuditSink(name, pretty, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/auditregistration.k8s.io/v1alpha1/auditsinks/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling deleteAuditSink.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete collection of AuditSink
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionAuditSink(pretty, allowWatchBookmarks, _continue, dryRun, fieldSelector, gracePeriodSeconds, labelSelector, limit, orphanDependents, propagationPolicy, resourceVersion, timeoutSeconds, watch, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/auditregistration.k8s.io/v1alpha1/auditsinks';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * get available resources
+ */
+ getAPIResources(options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/auditregistration.k8s.io/v1alpha1/';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1APIResourceList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind AuditSink
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listAuditSink(pretty, allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/auditregistration.k8s.io/v1alpha1/auditsinks';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1alpha1AuditSinkList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update the specified AuditSink
+ * @param name name of the AuditSink
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchAuditSink(name, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/auditregistration.k8s.io/v1alpha1/auditsinks/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchAuditSink.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchAuditSink.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1alpha1AuditSink");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read the specified AuditSink
+ * @param name name of the AuditSink
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readAuditSink(name, pretty, exact, _export, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/auditregistration.k8s.io/v1alpha1/auditsinks/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readAuditSink.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (exact !== undefined) {
+ localVarQueryParameters['exact'] = models_1.ObjectSerializer.serialize(exact, "boolean");
+ }
+ if (_export !== undefined) {
+ localVarQueryParameters['export'] = models_1.ObjectSerializer.serialize(_export, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1alpha1AuditSink");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace the specified AuditSink
+ * @param name name of the AuditSink
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceAuditSink(name, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/auditregistration.k8s.io/v1alpha1/auditsinks/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceAuditSink.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceAuditSink.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1alpha1AuditSink")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1alpha1AuditSink");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+}
+exports.AuditregistrationV1alpha1Api = AuditregistrationV1alpha1Api;
+//# sourceMappingURL=auditregistrationV1alpha1Api.js.map
\ No newline at end of file
diff --git a/dist/gen/api/auditregistrationV1alpha1Api.js.map b/dist/gen/api/auditregistrationV1alpha1Api.js.map
new file mode 100644
index 0000000000..c0f9c63c77
--- /dev/null
+++ b/dist/gen/api/auditregistrationV1alpha1Api.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"auditregistrationV1alpha1Api.js","sourceRoot":"","sources":["../../../src/gen/api/auditregistrationV1alpha1Api.ts"],"names":[],"mappings":"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"}
\ No newline at end of file
diff --git a/dist/gen/api/authenticationApi.d.ts b/dist/gen/api/authenticationApi.d.ts
new file mode 100644
index 0000000000..e175d6c29c
--- /dev/null
+++ b/dist/gen/api/authenticationApi.d.ts
@@ -0,0 +1,44 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+///
+import http = require('http');
+import { V1APIGroup } from '../model/v1APIGroup';
+import { Authentication } from '../model/models';
+import { ApiKeyAuth } from '../model/models';
+export declare enum AuthenticationApiApiKeys {
+ BearerToken = 0
+}
+export declare class AuthenticationApi {
+ protected _basePath: string;
+ protected defaultHeaders: any;
+ protected _useQuerystring: boolean;
+ protected authentications: {
+ 'default': Authentication;
+ 'BearerToken': ApiKeyAuth;
+ };
+ constructor(basePath?: string);
+ useQuerystring: boolean;
+ basePath: string;
+ setDefaultAuthentication(auth: Authentication): void;
+ setApiKey(key: AuthenticationApiApiKeys, value: string): void;
+ /**
+ * get information of a group
+ */
+ getAPIGroup(options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1APIGroup;
+ }>;
+}
diff --git a/dist/gen/api/authenticationApi.js b/dist/gen/api/authenticationApi.js
new file mode 100644
index 0000000000..6ffc02c0f5
--- /dev/null
+++ b/dist/gen/api/authenticationApi.js
@@ -0,0 +1,113 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+const tslib_1 = require("tslib");
+const localVarRequest = require("request");
+const models_1 = require("../model/models");
+const models_2 = require("../model/models");
+let defaultBasePath = 'http://localhost/';
+// ===============================================
+// This file is autogenerated - Please do not edit
+// ===============================================
+var AuthenticationApiApiKeys;
+(function (AuthenticationApiApiKeys) {
+ AuthenticationApiApiKeys[AuthenticationApiApiKeys["BearerToken"] = 0] = "BearerToken";
+})(AuthenticationApiApiKeys = exports.AuthenticationApiApiKeys || (exports.AuthenticationApiApiKeys = {}));
+class AuthenticationApi {
+ constructor(basePathOrUsername, password, basePath) {
+ this._basePath = defaultBasePath;
+ this.defaultHeaders = {};
+ this._useQuerystring = false;
+ this.authentications = {
+ 'default': new models_1.VoidAuth(),
+ 'BearerToken': new models_2.ApiKeyAuth('header', 'authorization'),
+ };
+ if (password) {
+ if (basePath) {
+ this.basePath = basePath;
+ }
+ }
+ else {
+ if (basePathOrUsername) {
+ this.basePath = basePathOrUsername;
+ }
+ }
+ }
+ set useQuerystring(value) {
+ this._useQuerystring = value;
+ }
+ set basePath(basePath) {
+ this._basePath = basePath;
+ }
+ get basePath() {
+ return this._basePath;
+ }
+ setDefaultAuthentication(auth) {
+ this.authentications.default = auth;
+ }
+ setApiKey(key, value) {
+ this.authentications[AuthenticationApiApiKeys[key]].apiKey = value;
+ }
+ /**
+ * get information of a group
+ */
+ getAPIGroup(options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/authentication.k8s.io/';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1APIGroup");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+}
+exports.AuthenticationApi = AuthenticationApi;
+//# sourceMappingURL=authenticationApi.js.map
\ No newline at end of file
diff --git a/dist/gen/api/authenticationApi.js.map b/dist/gen/api/authenticationApi.js.map
new file mode 100644
index 0000000000..44f7163589
--- /dev/null
+++ b/dist/gen/api/authenticationApi.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"authenticationApi.js","sourceRoot":"","sources":["../../../src/gen/api/authenticationApi.ts"],"names":[],"mappings":"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"}
\ No newline at end of file
diff --git a/dist/gen/api/authenticationV1Api.d.ts b/dist/gen/api/authenticationV1Api.d.ts
new file mode 100644
index 0000000000..2faaba2d36
--- /dev/null
+++ b/dist/gen/api/authenticationV1Api.d.ts
@@ -0,0 +1,60 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+///
+import http = require('http');
+import { V1APIResourceList } from '../model/v1APIResourceList';
+import { V1TokenReview } from '../model/v1TokenReview';
+import { Authentication } from '../model/models';
+import { ApiKeyAuth } from '../model/models';
+export declare enum AuthenticationV1ApiApiKeys {
+ BearerToken = 0
+}
+export declare class AuthenticationV1Api {
+ protected _basePath: string;
+ protected defaultHeaders: any;
+ protected _useQuerystring: boolean;
+ protected authentications: {
+ 'default': Authentication;
+ 'BearerToken': ApiKeyAuth;
+ };
+ constructor(basePath?: string);
+ useQuerystring: boolean;
+ basePath: string;
+ setDefaultAuthentication(auth: Authentication): void;
+ setApiKey(key: AuthenticationV1ApiApiKeys, value: string): void;
+ /**
+ * create a TokenReview
+ * @param body
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ createTokenReview(body: V1TokenReview, dryRun?: string, fieldManager?: string, pretty?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1TokenReview;
+ }>;
+ /**
+ * get available resources
+ */
+ getAPIResources(options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1APIResourceList;
+ }>;
+}
diff --git a/dist/gen/api/authenticationV1Api.js b/dist/gen/api/authenticationV1Api.js
new file mode 100644
index 0000000000..286df8f409
--- /dev/null
+++ b/dist/gen/api/authenticationV1Api.js
@@ -0,0 +1,181 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+const tslib_1 = require("tslib");
+const localVarRequest = require("request");
+const models_1 = require("../model/models");
+const models_2 = require("../model/models");
+let defaultBasePath = 'http://localhost/';
+// ===============================================
+// This file is autogenerated - Please do not edit
+// ===============================================
+var AuthenticationV1ApiApiKeys;
+(function (AuthenticationV1ApiApiKeys) {
+ AuthenticationV1ApiApiKeys[AuthenticationV1ApiApiKeys["BearerToken"] = 0] = "BearerToken";
+})(AuthenticationV1ApiApiKeys = exports.AuthenticationV1ApiApiKeys || (exports.AuthenticationV1ApiApiKeys = {}));
+class AuthenticationV1Api {
+ constructor(basePathOrUsername, password, basePath) {
+ this._basePath = defaultBasePath;
+ this.defaultHeaders = {};
+ this._useQuerystring = false;
+ this.authentications = {
+ 'default': new models_1.VoidAuth(),
+ 'BearerToken': new models_2.ApiKeyAuth('header', 'authorization'),
+ };
+ if (password) {
+ if (basePath) {
+ this.basePath = basePath;
+ }
+ }
+ else {
+ if (basePathOrUsername) {
+ this.basePath = basePathOrUsername;
+ }
+ }
+ }
+ set useQuerystring(value) {
+ this._useQuerystring = value;
+ }
+ set basePath(basePath) {
+ this._basePath = basePath;
+ }
+ get basePath() {
+ return this._basePath;
+ }
+ setDefaultAuthentication(auth) {
+ this.authentications.default = auth;
+ }
+ setApiKey(key, value) {
+ this.authentications[AuthenticationV1ApiApiKeys[key]].apiKey = value;
+ }
+ /**
+ * create a TokenReview
+ * @param body
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ createTokenReview(body, dryRun, fieldManager, pretty, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/authentication.k8s.io/v1/tokenreviews';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling createTokenReview.');
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'POST',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1TokenReview")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1TokenReview");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * get available resources
+ */
+ getAPIResources(options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/authentication.k8s.io/v1/';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1APIResourceList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+}
+exports.AuthenticationV1Api = AuthenticationV1Api;
+//# sourceMappingURL=authenticationV1Api.js.map
\ No newline at end of file
diff --git a/dist/gen/api/authenticationV1Api.js.map b/dist/gen/api/authenticationV1Api.js.map
new file mode 100644
index 0000000000..691b807db7
--- /dev/null
+++ b/dist/gen/api/authenticationV1Api.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"authenticationV1Api.js","sourceRoot":"","sources":["../../../src/gen/api/authenticationV1Api.ts"],"names":[],"mappings":"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"}
\ No newline at end of file
diff --git a/dist/gen/api/authenticationV1beta1Api.d.ts b/dist/gen/api/authenticationV1beta1Api.d.ts
new file mode 100644
index 0000000000..3d4346e1b5
--- /dev/null
+++ b/dist/gen/api/authenticationV1beta1Api.d.ts
@@ -0,0 +1,60 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+///
+import http = require('http');
+import { V1APIResourceList } from '../model/v1APIResourceList';
+import { V1beta1TokenReview } from '../model/v1beta1TokenReview';
+import { Authentication } from '../model/models';
+import { ApiKeyAuth } from '../model/models';
+export declare enum AuthenticationV1beta1ApiApiKeys {
+ BearerToken = 0
+}
+export declare class AuthenticationV1beta1Api {
+ protected _basePath: string;
+ protected defaultHeaders: any;
+ protected _useQuerystring: boolean;
+ protected authentications: {
+ 'default': Authentication;
+ 'BearerToken': ApiKeyAuth;
+ };
+ constructor(basePath?: string);
+ useQuerystring: boolean;
+ basePath: string;
+ setDefaultAuthentication(auth: Authentication): void;
+ setApiKey(key: AuthenticationV1beta1ApiApiKeys, value: string): void;
+ /**
+ * create a TokenReview
+ * @param body
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ createTokenReview(body: V1beta1TokenReview, dryRun?: string, fieldManager?: string, pretty?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1TokenReview;
+ }>;
+ /**
+ * get available resources
+ */
+ getAPIResources(options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1APIResourceList;
+ }>;
+}
diff --git a/dist/gen/api/authenticationV1beta1Api.js b/dist/gen/api/authenticationV1beta1Api.js
new file mode 100644
index 0000000000..71a98cba93
--- /dev/null
+++ b/dist/gen/api/authenticationV1beta1Api.js
@@ -0,0 +1,181 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+const tslib_1 = require("tslib");
+const localVarRequest = require("request");
+const models_1 = require("../model/models");
+const models_2 = require("../model/models");
+let defaultBasePath = 'http://localhost/';
+// ===============================================
+// This file is autogenerated - Please do not edit
+// ===============================================
+var AuthenticationV1beta1ApiApiKeys;
+(function (AuthenticationV1beta1ApiApiKeys) {
+ AuthenticationV1beta1ApiApiKeys[AuthenticationV1beta1ApiApiKeys["BearerToken"] = 0] = "BearerToken";
+})(AuthenticationV1beta1ApiApiKeys = exports.AuthenticationV1beta1ApiApiKeys || (exports.AuthenticationV1beta1ApiApiKeys = {}));
+class AuthenticationV1beta1Api {
+ constructor(basePathOrUsername, password, basePath) {
+ this._basePath = defaultBasePath;
+ this.defaultHeaders = {};
+ this._useQuerystring = false;
+ this.authentications = {
+ 'default': new models_1.VoidAuth(),
+ 'BearerToken': new models_2.ApiKeyAuth('header', 'authorization'),
+ };
+ if (password) {
+ if (basePath) {
+ this.basePath = basePath;
+ }
+ }
+ else {
+ if (basePathOrUsername) {
+ this.basePath = basePathOrUsername;
+ }
+ }
+ }
+ set useQuerystring(value) {
+ this._useQuerystring = value;
+ }
+ set basePath(basePath) {
+ this._basePath = basePath;
+ }
+ get basePath() {
+ return this._basePath;
+ }
+ setDefaultAuthentication(auth) {
+ this.authentications.default = auth;
+ }
+ setApiKey(key, value) {
+ this.authentications[AuthenticationV1beta1ApiApiKeys[key]].apiKey = value;
+ }
+ /**
+ * create a TokenReview
+ * @param body
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ createTokenReview(body, dryRun, fieldManager, pretty, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/authentication.k8s.io/v1beta1/tokenreviews';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling createTokenReview.');
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'POST',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1beta1TokenReview")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1TokenReview");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * get available resources
+ */
+ getAPIResources(options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/authentication.k8s.io/v1beta1/';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1APIResourceList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+}
+exports.AuthenticationV1beta1Api = AuthenticationV1beta1Api;
+//# sourceMappingURL=authenticationV1beta1Api.js.map
\ No newline at end of file
diff --git a/dist/gen/api/authenticationV1beta1Api.js.map b/dist/gen/api/authenticationV1beta1Api.js.map
new file mode 100644
index 0000000000..a9da73c776
--- /dev/null
+++ b/dist/gen/api/authenticationV1beta1Api.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"authenticationV1beta1Api.js","sourceRoot":"","sources":["../../../src/gen/api/authenticationV1beta1Api.ts"],"names":[],"mappings":"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"}
\ No newline at end of file
diff --git a/dist/gen/api/authorizationApi.d.ts b/dist/gen/api/authorizationApi.d.ts
new file mode 100644
index 0000000000..b787185611
--- /dev/null
+++ b/dist/gen/api/authorizationApi.d.ts
@@ -0,0 +1,44 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+///
+import http = require('http');
+import { V1APIGroup } from '../model/v1APIGroup';
+import { Authentication } from '../model/models';
+import { ApiKeyAuth } from '../model/models';
+export declare enum AuthorizationApiApiKeys {
+ BearerToken = 0
+}
+export declare class AuthorizationApi {
+ protected _basePath: string;
+ protected defaultHeaders: any;
+ protected _useQuerystring: boolean;
+ protected authentications: {
+ 'default': Authentication;
+ 'BearerToken': ApiKeyAuth;
+ };
+ constructor(basePath?: string);
+ useQuerystring: boolean;
+ basePath: string;
+ setDefaultAuthentication(auth: Authentication): void;
+ setApiKey(key: AuthorizationApiApiKeys, value: string): void;
+ /**
+ * get information of a group
+ */
+ getAPIGroup(options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1APIGroup;
+ }>;
+}
diff --git a/dist/gen/api/authorizationApi.js b/dist/gen/api/authorizationApi.js
new file mode 100644
index 0000000000..4021d56907
--- /dev/null
+++ b/dist/gen/api/authorizationApi.js
@@ -0,0 +1,113 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+const tslib_1 = require("tslib");
+const localVarRequest = require("request");
+const models_1 = require("../model/models");
+const models_2 = require("../model/models");
+let defaultBasePath = 'http://localhost/';
+// ===============================================
+// This file is autogenerated - Please do not edit
+// ===============================================
+var AuthorizationApiApiKeys;
+(function (AuthorizationApiApiKeys) {
+ AuthorizationApiApiKeys[AuthorizationApiApiKeys["BearerToken"] = 0] = "BearerToken";
+})(AuthorizationApiApiKeys = exports.AuthorizationApiApiKeys || (exports.AuthorizationApiApiKeys = {}));
+class AuthorizationApi {
+ constructor(basePathOrUsername, password, basePath) {
+ this._basePath = defaultBasePath;
+ this.defaultHeaders = {};
+ this._useQuerystring = false;
+ this.authentications = {
+ 'default': new models_1.VoidAuth(),
+ 'BearerToken': new models_2.ApiKeyAuth('header', 'authorization'),
+ };
+ if (password) {
+ if (basePath) {
+ this.basePath = basePath;
+ }
+ }
+ else {
+ if (basePathOrUsername) {
+ this.basePath = basePathOrUsername;
+ }
+ }
+ }
+ set useQuerystring(value) {
+ this._useQuerystring = value;
+ }
+ set basePath(basePath) {
+ this._basePath = basePath;
+ }
+ get basePath() {
+ return this._basePath;
+ }
+ setDefaultAuthentication(auth) {
+ this.authentications.default = auth;
+ }
+ setApiKey(key, value) {
+ this.authentications[AuthorizationApiApiKeys[key]].apiKey = value;
+ }
+ /**
+ * get information of a group
+ */
+ getAPIGroup(options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/authorization.k8s.io/';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1APIGroup");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+}
+exports.AuthorizationApi = AuthorizationApi;
+//# sourceMappingURL=authorizationApi.js.map
\ No newline at end of file
diff --git a/dist/gen/api/authorizationApi.js.map b/dist/gen/api/authorizationApi.js.map
new file mode 100644
index 0000000000..676c30596f
--- /dev/null
+++ b/dist/gen/api/authorizationApi.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"authorizationApi.js","sourceRoot":"","sources":["../../../src/gen/api/authorizationApi.ts"],"names":[],"mappings":"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"}
\ No newline at end of file
diff --git a/dist/gen/api/authorizationV1Api.d.ts b/dist/gen/api/authorizationV1Api.d.ts
new file mode 100644
index 0000000000..a247b71dc7
--- /dev/null
+++ b/dist/gen/api/authorizationV1Api.d.ts
@@ -0,0 +1,109 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+///
+import http = require('http');
+import { V1APIResourceList } from '../model/v1APIResourceList';
+import { V1LocalSubjectAccessReview } from '../model/v1LocalSubjectAccessReview';
+import { V1SelfSubjectAccessReview } from '../model/v1SelfSubjectAccessReview';
+import { V1SelfSubjectRulesReview } from '../model/v1SelfSubjectRulesReview';
+import { V1SubjectAccessReview } from '../model/v1SubjectAccessReview';
+import { Authentication } from '../model/models';
+import { ApiKeyAuth } from '../model/models';
+export declare enum AuthorizationV1ApiApiKeys {
+ BearerToken = 0
+}
+export declare class AuthorizationV1Api {
+ protected _basePath: string;
+ protected defaultHeaders: any;
+ protected _useQuerystring: boolean;
+ protected authentications: {
+ 'default': Authentication;
+ 'BearerToken': ApiKeyAuth;
+ };
+ constructor(basePath?: string);
+ useQuerystring: boolean;
+ basePath: string;
+ setDefaultAuthentication(auth: Authentication): void;
+ setApiKey(key: AuthorizationV1ApiApiKeys, value: string): void;
+ /**
+ * create a LocalSubjectAccessReview
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ createNamespacedLocalSubjectAccessReview(namespace: string, body: V1LocalSubjectAccessReview, dryRun?: string, fieldManager?: string, pretty?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1LocalSubjectAccessReview;
+ }>;
+ /**
+ * create a SelfSubjectAccessReview
+ * @param body
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ createSelfSubjectAccessReview(body: V1SelfSubjectAccessReview, dryRun?: string, fieldManager?: string, pretty?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1SelfSubjectAccessReview;
+ }>;
+ /**
+ * create a SelfSubjectRulesReview
+ * @param body
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ createSelfSubjectRulesReview(body: V1SelfSubjectRulesReview, dryRun?: string, fieldManager?: string, pretty?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1SelfSubjectRulesReview;
+ }>;
+ /**
+ * create a SubjectAccessReview
+ * @param body
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ createSubjectAccessReview(body: V1SubjectAccessReview, dryRun?: string, fieldManager?: string, pretty?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1SubjectAccessReview;
+ }>;
+ /**
+ * get available resources
+ */
+ getAPIResources(options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1APIResourceList;
+ }>;
+}
diff --git a/dist/gen/api/authorizationV1Api.js b/dist/gen/api/authorizationV1Api.js
new file mode 100644
index 0000000000..8af1db0655
--- /dev/null
+++ b/dist/gen/api/authorizationV1Api.js
@@ -0,0 +1,391 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+const tslib_1 = require("tslib");
+const localVarRequest = require("request");
+const models_1 = require("../model/models");
+const models_2 = require("../model/models");
+let defaultBasePath = 'http://localhost/';
+// ===============================================
+// This file is autogenerated - Please do not edit
+// ===============================================
+var AuthorizationV1ApiApiKeys;
+(function (AuthorizationV1ApiApiKeys) {
+ AuthorizationV1ApiApiKeys[AuthorizationV1ApiApiKeys["BearerToken"] = 0] = "BearerToken";
+})(AuthorizationV1ApiApiKeys = exports.AuthorizationV1ApiApiKeys || (exports.AuthorizationV1ApiApiKeys = {}));
+class AuthorizationV1Api {
+ constructor(basePathOrUsername, password, basePath) {
+ this._basePath = defaultBasePath;
+ this.defaultHeaders = {};
+ this._useQuerystring = false;
+ this.authentications = {
+ 'default': new models_1.VoidAuth(),
+ 'BearerToken': new models_2.ApiKeyAuth('header', 'authorization'),
+ };
+ if (password) {
+ if (basePath) {
+ this.basePath = basePath;
+ }
+ }
+ else {
+ if (basePathOrUsername) {
+ this.basePath = basePathOrUsername;
+ }
+ }
+ }
+ set useQuerystring(value) {
+ this._useQuerystring = value;
+ }
+ set basePath(basePath) {
+ this._basePath = basePath;
+ }
+ get basePath() {
+ return this._basePath;
+ }
+ setDefaultAuthentication(auth) {
+ this.authentications.default = auth;
+ }
+ setApiKey(key, value) {
+ this.authentications[AuthorizationV1ApiApiKeys[key]].apiKey = value;
+ }
+ /**
+ * create a LocalSubjectAccessReview
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ createNamespacedLocalSubjectAccessReview(namespace, body, dryRun, fieldManager, pretty, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/authorization.k8s.io/v1/namespaces/{namespace}/localsubjectaccessreviews'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling createNamespacedLocalSubjectAccessReview.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling createNamespacedLocalSubjectAccessReview.');
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'POST',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1LocalSubjectAccessReview")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1LocalSubjectAccessReview");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * create a SelfSubjectAccessReview
+ * @param body
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ createSelfSubjectAccessReview(body, dryRun, fieldManager, pretty, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/authorization.k8s.io/v1/selfsubjectaccessreviews';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling createSelfSubjectAccessReview.');
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'POST',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1SelfSubjectAccessReview")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1SelfSubjectAccessReview");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * create a SelfSubjectRulesReview
+ * @param body
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ createSelfSubjectRulesReview(body, dryRun, fieldManager, pretty, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/authorization.k8s.io/v1/selfsubjectrulesreviews';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling createSelfSubjectRulesReview.');
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'POST',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1SelfSubjectRulesReview")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1SelfSubjectRulesReview");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * create a SubjectAccessReview
+ * @param body
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ createSubjectAccessReview(body, dryRun, fieldManager, pretty, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/authorization.k8s.io/v1/subjectaccessreviews';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling createSubjectAccessReview.');
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'POST',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1SubjectAccessReview")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1SubjectAccessReview");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * get available resources
+ */
+ getAPIResources(options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/authorization.k8s.io/v1/';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1APIResourceList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+}
+exports.AuthorizationV1Api = AuthorizationV1Api;
+//# sourceMappingURL=authorizationV1Api.js.map
\ No newline at end of file
diff --git a/dist/gen/api/authorizationV1Api.js.map b/dist/gen/api/authorizationV1Api.js.map
new file mode 100644
index 0000000000..7ea09d5112
--- /dev/null
+++ b/dist/gen/api/authorizationV1Api.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"authorizationV1Api.js","sourceRoot":"","sources":["../../../src/gen/api/authorizationV1Api.ts"],"names":[],"mappings":"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"}
\ No newline at end of file
diff --git a/dist/gen/api/authorizationV1beta1Api.d.ts b/dist/gen/api/authorizationV1beta1Api.d.ts
new file mode 100644
index 0000000000..5fffd42560
--- /dev/null
+++ b/dist/gen/api/authorizationV1beta1Api.d.ts
@@ -0,0 +1,109 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+///
+import http = require('http');
+import { V1APIResourceList } from '../model/v1APIResourceList';
+import { V1beta1LocalSubjectAccessReview } from '../model/v1beta1LocalSubjectAccessReview';
+import { V1beta1SelfSubjectAccessReview } from '../model/v1beta1SelfSubjectAccessReview';
+import { V1beta1SelfSubjectRulesReview } from '../model/v1beta1SelfSubjectRulesReview';
+import { V1beta1SubjectAccessReview } from '../model/v1beta1SubjectAccessReview';
+import { Authentication } from '../model/models';
+import { ApiKeyAuth } from '../model/models';
+export declare enum AuthorizationV1beta1ApiApiKeys {
+ BearerToken = 0
+}
+export declare class AuthorizationV1beta1Api {
+ protected _basePath: string;
+ protected defaultHeaders: any;
+ protected _useQuerystring: boolean;
+ protected authentications: {
+ 'default': Authentication;
+ 'BearerToken': ApiKeyAuth;
+ };
+ constructor(basePath?: string);
+ useQuerystring: boolean;
+ basePath: string;
+ setDefaultAuthentication(auth: Authentication): void;
+ setApiKey(key: AuthorizationV1beta1ApiApiKeys, value: string): void;
+ /**
+ * create a LocalSubjectAccessReview
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ createNamespacedLocalSubjectAccessReview(namespace: string, body: V1beta1LocalSubjectAccessReview, dryRun?: string, fieldManager?: string, pretty?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1LocalSubjectAccessReview;
+ }>;
+ /**
+ * create a SelfSubjectAccessReview
+ * @param body
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ createSelfSubjectAccessReview(body: V1beta1SelfSubjectAccessReview, dryRun?: string, fieldManager?: string, pretty?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1SelfSubjectAccessReview;
+ }>;
+ /**
+ * create a SelfSubjectRulesReview
+ * @param body
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ createSelfSubjectRulesReview(body: V1beta1SelfSubjectRulesReview, dryRun?: string, fieldManager?: string, pretty?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1SelfSubjectRulesReview;
+ }>;
+ /**
+ * create a SubjectAccessReview
+ * @param body
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ createSubjectAccessReview(body: V1beta1SubjectAccessReview, dryRun?: string, fieldManager?: string, pretty?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1SubjectAccessReview;
+ }>;
+ /**
+ * get available resources
+ */
+ getAPIResources(options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1APIResourceList;
+ }>;
+}
diff --git a/dist/gen/api/authorizationV1beta1Api.js b/dist/gen/api/authorizationV1beta1Api.js
new file mode 100644
index 0000000000..f293ebeb69
--- /dev/null
+++ b/dist/gen/api/authorizationV1beta1Api.js
@@ -0,0 +1,391 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+const tslib_1 = require("tslib");
+const localVarRequest = require("request");
+const models_1 = require("../model/models");
+const models_2 = require("../model/models");
+let defaultBasePath = 'http://localhost/';
+// ===============================================
+// This file is autogenerated - Please do not edit
+// ===============================================
+var AuthorizationV1beta1ApiApiKeys;
+(function (AuthorizationV1beta1ApiApiKeys) {
+ AuthorizationV1beta1ApiApiKeys[AuthorizationV1beta1ApiApiKeys["BearerToken"] = 0] = "BearerToken";
+})(AuthorizationV1beta1ApiApiKeys = exports.AuthorizationV1beta1ApiApiKeys || (exports.AuthorizationV1beta1ApiApiKeys = {}));
+class AuthorizationV1beta1Api {
+ constructor(basePathOrUsername, password, basePath) {
+ this._basePath = defaultBasePath;
+ this.defaultHeaders = {};
+ this._useQuerystring = false;
+ this.authentications = {
+ 'default': new models_1.VoidAuth(),
+ 'BearerToken': new models_2.ApiKeyAuth('header', 'authorization'),
+ };
+ if (password) {
+ if (basePath) {
+ this.basePath = basePath;
+ }
+ }
+ else {
+ if (basePathOrUsername) {
+ this.basePath = basePathOrUsername;
+ }
+ }
+ }
+ set useQuerystring(value) {
+ this._useQuerystring = value;
+ }
+ set basePath(basePath) {
+ this._basePath = basePath;
+ }
+ get basePath() {
+ return this._basePath;
+ }
+ setDefaultAuthentication(auth) {
+ this.authentications.default = auth;
+ }
+ setApiKey(key, value) {
+ this.authentications[AuthorizationV1beta1ApiApiKeys[key]].apiKey = value;
+ }
+ /**
+ * create a LocalSubjectAccessReview
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ createNamespacedLocalSubjectAccessReview(namespace, body, dryRun, fieldManager, pretty, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/authorization.k8s.io/v1beta1/namespaces/{namespace}/localsubjectaccessreviews'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling createNamespacedLocalSubjectAccessReview.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling createNamespacedLocalSubjectAccessReview.');
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'POST',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1beta1LocalSubjectAccessReview")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1LocalSubjectAccessReview");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * create a SelfSubjectAccessReview
+ * @param body
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ createSelfSubjectAccessReview(body, dryRun, fieldManager, pretty, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/authorization.k8s.io/v1beta1/selfsubjectaccessreviews';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling createSelfSubjectAccessReview.');
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'POST',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1beta1SelfSubjectAccessReview")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1SelfSubjectAccessReview");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * create a SelfSubjectRulesReview
+ * @param body
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ createSelfSubjectRulesReview(body, dryRun, fieldManager, pretty, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/authorization.k8s.io/v1beta1/selfsubjectrulesreviews';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling createSelfSubjectRulesReview.');
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'POST',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1beta1SelfSubjectRulesReview")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1SelfSubjectRulesReview");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * create a SubjectAccessReview
+ * @param body
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ createSubjectAccessReview(body, dryRun, fieldManager, pretty, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/authorization.k8s.io/v1beta1/subjectaccessreviews';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling createSubjectAccessReview.');
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'POST',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1beta1SubjectAccessReview")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1SubjectAccessReview");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * get available resources
+ */
+ getAPIResources(options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/authorization.k8s.io/v1beta1/';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1APIResourceList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+}
+exports.AuthorizationV1beta1Api = AuthorizationV1beta1Api;
+//# sourceMappingURL=authorizationV1beta1Api.js.map
\ No newline at end of file
diff --git a/dist/gen/api/authorizationV1beta1Api.js.map b/dist/gen/api/authorizationV1beta1Api.js.map
new file mode 100644
index 0000000000..5b051b877c
--- /dev/null
+++ b/dist/gen/api/authorizationV1beta1Api.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"authorizationV1beta1Api.js","sourceRoot":"","sources":["../../../src/gen/api/authorizationV1beta1Api.ts"],"names":[],"mappings":"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"}
\ No newline at end of file
diff --git a/dist/gen/api/autoscalingApi.d.ts b/dist/gen/api/autoscalingApi.d.ts
new file mode 100644
index 0000000000..ec7d79ea14
--- /dev/null
+++ b/dist/gen/api/autoscalingApi.d.ts
@@ -0,0 +1,44 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+///
+import http = require('http');
+import { V1APIGroup } from '../model/v1APIGroup';
+import { Authentication } from '../model/models';
+import { ApiKeyAuth } from '../model/models';
+export declare enum AutoscalingApiApiKeys {
+ BearerToken = 0
+}
+export declare class AutoscalingApi {
+ protected _basePath: string;
+ protected defaultHeaders: any;
+ protected _useQuerystring: boolean;
+ protected authentications: {
+ 'default': Authentication;
+ 'BearerToken': ApiKeyAuth;
+ };
+ constructor(basePath?: string);
+ useQuerystring: boolean;
+ basePath: string;
+ setDefaultAuthentication(auth: Authentication): void;
+ setApiKey(key: AutoscalingApiApiKeys, value: string): void;
+ /**
+ * get information of a group
+ */
+ getAPIGroup(options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1APIGroup;
+ }>;
+}
diff --git a/dist/gen/api/autoscalingApi.js b/dist/gen/api/autoscalingApi.js
new file mode 100644
index 0000000000..4a8cb90ceb
--- /dev/null
+++ b/dist/gen/api/autoscalingApi.js
@@ -0,0 +1,113 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+const tslib_1 = require("tslib");
+const localVarRequest = require("request");
+const models_1 = require("../model/models");
+const models_2 = require("../model/models");
+let defaultBasePath = 'http://localhost/';
+// ===============================================
+// This file is autogenerated - Please do not edit
+// ===============================================
+var AutoscalingApiApiKeys;
+(function (AutoscalingApiApiKeys) {
+ AutoscalingApiApiKeys[AutoscalingApiApiKeys["BearerToken"] = 0] = "BearerToken";
+})(AutoscalingApiApiKeys = exports.AutoscalingApiApiKeys || (exports.AutoscalingApiApiKeys = {}));
+class AutoscalingApi {
+ constructor(basePathOrUsername, password, basePath) {
+ this._basePath = defaultBasePath;
+ this.defaultHeaders = {};
+ this._useQuerystring = false;
+ this.authentications = {
+ 'default': new models_1.VoidAuth(),
+ 'BearerToken': new models_2.ApiKeyAuth('header', 'authorization'),
+ };
+ if (password) {
+ if (basePath) {
+ this.basePath = basePath;
+ }
+ }
+ else {
+ if (basePathOrUsername) {
+ this.basePath = basePathOrUsername;
+ }
+ }
+ }
+ set useQuerystring(value) {
+ this._useQuerystring = value;
+ }
+ set basePath(basePath) {
+ this._basePath = basePath;
+ }
+ get basePath() {
+ return this._basePath;
+ }
+ setDefaultAuthentication(auth) {
+ this.authentications.default = auth;
+ }
+ setApiKey(key, value) {
+ this.authentications[AutoscalingApiApiKeys[key]].apiKey = value;
+ }
+ /**
+ * get information of a group
+ */
+ getAPIGroup(options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/autoscaling/';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1APIGroup");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+}
+exports.AutoscalingApi = AutoscalingApi;
+//# sourceMappingURL=autoscalingApi.js.map
\ No newline at end of file
diff --git a/dist/gen/api/autoscalingApi.js.map b/dist/gen/api/autoscalingApi.js.map
new file mode 100644
index 0000000000..ac71b4eb96
--- /dev/null
+++ b/dist/gen/api/autoscalingApi.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"autoscalingApi.js","sourceRoot":"","sources":["../../../src/gen/api/autoscalingApi.ts"],"names":[],"mappings":"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"}
\ No newline at end of file
diff --git a/dist/gen/api/autoscalingV1Api.d.ts b/dist/gen/api/autoscalingV1Api.d.ts
new file mode 100644
index 0000000000..b3531f894a
--- /dev/null
+++ b/dist/gen/api/autoscalingV1Api.d.ts
@@ -0,0 +1,250 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+///
+import http = require('http');
+import { V1APIResourceList } from '../model/v1APIResourceList';
+import { V1DeleteOptions } from '../model/v1DeleteOptions';
+import { V1HorizontalPodAutoscaler } from '../model/v1HorizontalPodAutoscaler';
+import { V1HorizontalPodAutoscalerList } from '../model/v1HorizontalPodAutoscalerList';
+import { V1Status } from '../model/v1Status';
+import { Authentication } from '../model/models';
+import { ApiKeyAuth } from '../model/models';
+export declare enum AutoscalingV1ApiApiKeys {
+ BearerToken = 0
+}
+export declare class AutoscalingV1Api {
+ protected _basePath: string;
+ protected defaultHeaders: any;
+ protected _useQuerystring: boolean;
+ protected authentications: {
+ 'default': Authentication;
+ 'BearerToken': ApiKeyAuth;
+ };
+ constructor(basePath?: string);
+ useQuerystring: boolean;
+ basePath: string;
+ setDefaultAuthentication(auth: Authentication): void;
+ setApiKey(key: AutoscalingV1ApiApiKeys, value: string): void;
+ /**
+ * create a HorizontalPodAutoscaler
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createNamespacedHorizontalPodAutoscaler(namespace: string, body: V1HorizontalPodAutoscaler, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1HorizontalPodAutoscaler;
+ }>;
+ /**
+ * delete collection of HorizontalPodAutoscaler
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionNamespacedHorizontalPodAutoscaler(namespace: string, pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, dryRun?: string, fieldSelector?: string, gracePeriodSeconds?: number, labelSelector?: string, limit?: number, orphanDependents?: boolean, propagationPolicy?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete a HorizontalPodAutoscaler
+ * @param name name of the HorizontalPodAutoscaler
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteNamespacedHorizontalPodAutoscaler(name: string, namespace: string, pretty?: string, dryRun?: string, gracePeriodSeconds?: number, orphanDependents?: boolean, propagationPolicy?: string, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * get available resources
+ */
+ getAPIResources(options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1APIResourceList;
+ }>;
+ /**
+ * list or watch objects of kind HorizontalPodAutoscaler
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listHorizontalPodAutoscalerForAllNamespaces(allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, pretty?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1HorizontalPodAutoscalerList;
+ }>;
+ /**
+ * list or watch objects of kind HorizontalPodAutoscaler
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listNamespacedHorizontalPodAutoscaler(namespace: string, pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1HorizontalPodAutoscalerList;
+ }>;
+ /**
+ * partially update the specified HorizontalPodAutoscaler
+ * @param name name of the HorizontalPodAutoscaler
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedHorizontalPodAutoscaler(name: string, namespace: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1HorizontalPodAutoscaler;
+ }>;
+ /**
+ * partially update status of the specified HorizontalPodAutoscaler
+ * @param name name of the HorizontalPodAutoscaler
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedHorizontalPodAutoscalerStatus(name: string, namespace: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1HorizontalPodAutoscaler;
+ }>;
+ /**
+ * read the specified HorizontalPodAutoscaler
+ * @param name name of the HorizontalPodAutoscaler
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readNamespacedHorizontalPodAutoscaler(name: string, namespace: string, pretty?: string, exact?: boolean, _export?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1HorizontalPodAutoscaler;
+ }>;
+ /**
+ * read status of the specified HorizontalPodAutoscaler
+ * @param name name of the HorizontalPodAutoscaler
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readNamespacedHorizontalPodAutoscalerStatus(name: string, namespace: string, pretty?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1HorizontalPodAutoscaler;
+ }>;
+ /**
+ * replace the specified HorizontalPodAutoscaler
+ * @param name name of the HorizontalPodAutoscaler
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedHorizontalPodAutoscaler(name: string, namespace: string, body: V1HorizontalPodAutoscaler, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1HorizontalPodAutoscaler;
+ }>;
+ /**
+ * replace status of the specified HorizontalPodAutoscaler
+ * @param name name of the HorizontalPodAutoscaler
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedHorizontalPodAutoscalerStatus(name: string, namespace: string, body: V1HorizontalPodAutoscaler, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1HorizontalPodAutoscaler;
+ }>;
+}
diff --git a/dist/gen/api/autoscalingV1Api.js b/dist/gen/api/autoscalingV1Api.js
new file mode 100644
index 0000000000..10dba88f46
--- /dev/null
+++ b/dist/gen/api/autoscalingV1Api.js
@@ -0,0 +1,1027 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+const tslib_1 = require("tslib");
+const localVarRequest = require("request");
+const models_1 = require("../model/models");
+const models_2 = require("../model/models");
+let defaultBasePath = 'http://localhost/';
+// ===============================================
+// This file is autogenerated - Please do not edit
+// ===============================================
+var AutoscalingV1ApiApiKeys;
+(function (AutoscalingV1ApiApiKeys) {
+ AutoscalingV1ApiApiKeys[AutoscalingV1ApiApiKeys["BearerToken"] = 0] = "BearerToken";
+})(AutoscalingV1ApiApiKeys = exports.AutoscalingV1ApiApiKeys || (exports.AutoscalingV1ApiApiKeys = {}));
+class AutoscalingV1Api {
+ constructor(basePathOrUsername, password, basePath) {
+ this._basePath = defaultBasePath;
+ this.defaultHeaders = {};
+ this._useQuerystring = false;
+ this.authentications = {
+ 'default': new models_1.VoidAuth(),
+ 'BearerToken': new models_2.ApiKeyAuth('header', 'authorization'),
+ };
+ if (password) {
+ if (basePath) {
+ this.basePath = basePath;
+ }
+ }
+ else {
+ if (basePathOrUsername) {
+ this.basePath = basePathOrUsername;
+ }
+ }
+ }
+ set useQuerystring(value) {
+ this._useQuerystring = value;
+ }
+ set basePath(basePath) {
+ this._basePath = basePath;
+ }
+ get basePath() {
+ return this._basePath;
+ }
+ setDefaultAuthentication(auth) {
+ this.authentications.default = auth;
+ }
+ setApiKey(key, value) {
+ this.authentications[AutoscalingV1ApiApiKeys[key]].apiKey = value;
+ }
+ /**
+ * create a HorizontalPodAutoscaler
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createNamespacedHorizontalPodAutoscaler(namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/autoscaling/v1/namespaces/{namespace}/horizontalpodautoscalers'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling createNamespacedHorizontalPodAutoscaler.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling createNamespacedHorizontalPodAutoscaler.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'POST',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1HorizontalPodAutoscaler")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1HorizontalPodAutoscaler");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete collection of HorizontalPodAutoscaler
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionNamespacedHorizontalPodAutoscaler(namespace, pretty, allowWatchBookmarks, _continue, dryRun, fieldSelector, gracePeriodSeconds, labelSelector, limit, orphanDependents, propagationPolicy, resourceVersion, timeoutSeconds, watch, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/autoscaling/v1/namespaces/{namespace}/horizontalpodautoscalers'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling deleteCollectionNamespacedHorizontalPodAutoscaler.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete a HorizontalPodAutoscaler
+ * @param name name of the HorizontalPodAutoscaler
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteNamespacedHorizontalPodAutoscaler(name, namespace, pretty, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/autoscaling/v1/namespaces/{namespace}/horizontalpodautoscalers/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling deleteNamespacedHorizontalPodAutoscaler.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling deleteNamespacedHorizontalPodAutoscaler.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * get available resources
+ */
+ getAPIResources(options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/autoscaling/v1/';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1APIResourceList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind HorizontalPodAutoscaler
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listHorizontalPodAutoscalerForAllNamespaces(allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, pretty, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/autoscaling/v1/horizontalpodautoscalers';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1HorizontalPodAutoscalerList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind HorizontalPodAutoscaler
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listNamespacedHorizontalPodAutoscaler(namespace, pretty, allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/autoscaling/v1/namespaces/{namespace}/horizontalpodautoscalers'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling listNamespacedHorizontalPodAutoscaler.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1HorizontalPodAutoscalerList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update the specified HorizontalPodAutoscaler
+ * @param name name of the HorizontalPodAutoscaler
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedHorizontalPodAutoscaler(name, namespace, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/autoscaling/v1/namespaces/{namespace}/horizontalpodautoscalers/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchNamespacedHorizontalPodAutoscaler.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling patchNamespacedHorizontalPodAutoscaler.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchNamespacedHorizontalPodAutoscaler.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1HorizontalPodAutoscaler");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update status of the specified HorizontalPodAutoscaler
+ * @param name name of the HorizontalPodAutoscaler
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedHorizontalPodAutoscalerStatus(name, namespace, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/autoscaling/v1/namespaces/{namespace}/horizontalpodautoscalers/{name}/status'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchNamespacedHorizontalPodAutoscalerStatus.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling patchNamespacedHorizontalPodAutoscalerStatus.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchNamespacedHorizontalPodAutoscalerStatus.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1HorizontalPodAutoscaler");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read the specified HorizontalPodAutoscaler
+ * @param name name of the HorizontalPodAutoscaler
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readNamespacedHorizontalPodAutoscaler(name, namespace, pretty, exact, _export, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/autoscaling/v1/namespaces/{namespace}/horizontalpodautoscalers/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readNamespacedHorizontalPodAutoscaler.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling readNamespacedHorizontalPodAutoscaler.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (exact !== undefined) {
+ localVarQueryParameters['exact'] = models_1.ObjectSerializer.serialize(exact, "boolean");
+ }
+ if (_export !== undefined) {
+ localVarQueryParameters['export'] = models_1.ObjectSerializer.serialize(_export, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1HorizontalPodAutoscaler");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read status of the specified HorizontalPodAutoscaler
+ * @param name name of the HorizontalPodAutoscaler
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readNamespacedHorizontalPodAutoscalerStatus(name, namespace, pretty, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/autoscaling/v1/namespaces/{namespace}/horizontalpodautoscalers/{name}/status'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readNamespacedHorizontalPodAutoscalerStatus.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling readNamespacedHorizontalPodAutoscalerStatus.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1HorizontalPodAutoscaler");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace the specified HorizontalPodAutoscaler
+ * @param name name of the HorizontalPodAutoscaler
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedHorizontalPodAutoscaler(name, namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/autoscaling/v1/namespaces/{namespace}/horizontalpodautoscalers/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceNamespacedHorizontalPodAutoscaler.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling replaceNamespacedHorizontalPodAutoscaler.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceNamespacedHorizontalPodAutoscaler.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1HorizontalPodAutoscaler")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1HorizontalPodAutoscaler");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace status of the specified HorizontalPodAutoscaler
+ * @param name name of the HorizontalPodAutoscaler
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedHorizontalPodAutoscalerStatus(name, namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/autoscaling/v1/namespaces/{namespace}/horizontalpodautoscalers/{name}/status'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceNamespacedHorizontalPodAutoscalerStatus.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling replaceNamespacedHorizontalPodAutoscalerStatus.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceNamespacedHorizontalPodAutoscalerStatus.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1HorizontalPodAutoscaler")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1HorizontalPodAutoscaler");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+}
+exports.AutoscalingV1Api = AutoscalingV1Api;
+//# sourceMappingURL=autoscalingV1Api.js.map
\ No newline at end of file
diff --git a/dist/gen/api/autoscalingV1Api.js.map b/dist/gen/api/autoscalingV1Api.js.map
new file mode 100644
index 0000000000..bfbd148961
--- /dev/null
+++ b/dist/gen/api/autoscalingV1Api.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"autoscalingV1Api.js","sourceRoot":"","sources":["../../../src/gen/api/autoscalingV1Api.ts"],"names":[],"mappings":"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"}
\ No newline at end of file
diff --git a/dist/gen/api/autoscalingV2beta1Api.d.ts b/dist/gen/api/autoscalingV2beta1Api.d.ts
new file mode 100644
index 0000000000..396256c247
--- /dev/null
+++ b/dist/gen/api/autoscalingV2beta1Api.d.ts
@@ -0,0 +1,250 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+///
+import http = require('http');
+import { V1APIResourceList } from '../model/v1APIResourceList';
+import { V1DeleteOptions } from '../model/v1DeleteOptions';
+import { V1Status } from '../model/v1Status';
+import { V2beta1HorizontalPodAutoscaler } from '../model/v2beta1HorizontalPodAutoscaler';
+import { V2beta1HorizontalPodAutoscalerList } from '../model/v2beta1HorizontalPodAutoscalerList';
+import { Authentication } from '../model/models';
+import { ApiKeyAuth } from '../model/models';
+export declare enum AutoscalingV2beta1ApiApiKeys {
+ BearerToken = 0
+}
+export declare class AutoscalingV2beta1Api {
+ protected _basePath: string;
+ protected defaultHeaders: any;
+ protected _useQuerystring: boolean;
+ protected authentications: {
+ 'default': Authentication;
+ 'BearerToken': ApiKeyAuth;
+ };
+ constructor(basePath?: string);
+ useQuerystring: boolean;
+ basePath: string;
+ setDefaultAuthentication(auth: Authentication): void;
+ setApiKey(key: AutoscalingV2beta1ApiApiKeys, value: string): void;
+ /**
+ * create a HorizontalPodAutoscaler
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createNamespacedHorizontalPodAutoscaler(namespace: string, body: V2beta1HorizontalPodAutoscaler, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V2beta1HorizontalPodAutoscaler;
+ }>;
+ /**
+ * delete collection of HorizontalPodAutoscaler
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionNamespacedHorizontalPodAutoscaler(namespace: string, pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, dryRun?: string, fieldSelector?: string, gracePeriodSeconds?: number, labelSelector?: string, limit?: number, orphanDependents?: boolean, propagationPolicy?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete a HorizontalPodAutoscaler
+ * @param name name of the HorizontalPodAutoscaler
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteNamespacedHorizontalPodAutoscaler(name: string, namespace: string, pretty?: string, dryRun?: string, gracePeriodSeconds?: number, orphanDependents?: boolean, propagationPolicy?: string, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * get available resources
+ */
+ getAPIResources(options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1APIResourceList;
+ }>;
+ /**
+ * list or watch objects of kind HorizontalPodAutoscaler
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listHorizontalPodAutoscalerForAllNamespaces(allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, pretty?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V2beta1HorizontalPodAutoscalerList;
+ }>;
+ /**
+ * list or watch objects of kind HorizontalPodAutoscaler
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listNamespacedHorizontalPodAutoscaler(namespace: string, pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V2beta1HorizontalPodAutoscalerList;
+ }>;
+ /**
+ * partially update the specified HorizontalPodAutoscaler
+ * @param name name of the HorizontalPodAutoscaler
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedHorizontalPodAutoscaler(name: string, namespace: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V2beta1HorizontalPodAutoscaler;
+ }>;
+ /**
+ * partially update status of the specified HorizontalPodAutoscaler
+ * @param name name of the HorizontalPodAutoscaler
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedHorizontalPodAutoscalerStatus(name: string, namespace: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V2beta1HorizontalPodAutoscaler;
+ }>;
+ /**
+ * read the specified HorizontalPodAutoscaler
+ * @param name name of the HorizontalPodAutoscaler
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readNamespacedHorizontalPodAutoscaler(name: string, namespace: string, pretty?: string, exact?: boolean, _export?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V2beta1HorizontalPodAutoscaler;
+ }>;
+ /**
+ * read status of the specified HorizontalPodAutoscaler
+ * @param name name of the HorizontalPodAutoscaler
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readNamespacedHorizontalPodAutoscalerStatus(name: string, namespace: string, pretty?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V2beta1HorizontalPodAutoscaler;
+ }>;
+ /**
+ * replace the specified HorizontalPodAutoscaler
+ * @param name name of the HorizontalPodAutoscaler
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedHorizontalPodAutoscaler(name: string, namespace: string, body: V2beta1HorizontalPodAutoscaler, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V2beta1HorizontalPodAutoscaler;
+ }>;
+ /**
+ * replace status of the specified HorizontalPodAutoscaler
+ * @param name name of the HorizontalPodAutoscaler
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedHorizontalPodAutoscalerStatus(name: string, namespace: string, body: V2beta1HorizontalPodAutoscaler, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V2beta1HorizontalPodAutoscaler;
+ }>;
+}
diff --git a/dist/gen/api/autoscalingV2beta1Api.js b/dist/gen/api/autoscalingV2beta1Api.js
new file mode 100644
index 0000000000..ee3c6d45a5
--- /dev/null
+++ b/dist/gen/api/autoscalingV2beta1Api.js
@@ -0,0 +1,1027 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+const tslib_1 = require("tslib");
+const localVarRequest = require("request");
+const models_1 = require("../model/models");
+const models_2 = require("../model/models");
+let defaultBasePath = 'http://localhost/';
+// ===============================================
+// This file is autogenerated - Please do not edit
+// ===============================================
+var AutoscalingV2beta1ApiApiKeys;
+(function (AutoscalingV2beta1ApiApiKeys) {
+ AutoscalingV2beta1ApiApiKeys[AutoscalingV2beta1ApiApiKeys["BearerToken"] = 0] = "BearerToken";
+})(AutoscalingV2beta1ApiApiKeys = exports.AutoscalingV2beta1ApiApiKeys || (exports.AutoscalingV2beta1ApiApiKeys = {}));
+class AutoscalingV2beta1Api {
+ constructor(basePathOrUsername, password, basePath) {
+ this._basePath = defaultBasePath;
+ this.defaultHeaders = {};
+ this._useQuerystring = false;
+ this.authentications = {
+ 'default': new models_1.VoidAuth(),
+ 'BearerToken': new models_2.ApiKeyAuth('header', 'authorization'),
+ };
+ if (password) {
+ if (basePath) {
+ this.basePath = basePath;
+ }
+ }
+ else {
+ if (basePathOrUsername) {
+ this.basePath = basePathOrUsername;
+ }
+ }
+ }
+ set useQuerystring(value) {
+ this._useQuerystring = value;
+ }
+ set basePath(basePath) {
+ this._basePath = basePath;
+ }
+ get basePath() {
+ return this._basePath;
+ }
+ setDefaultAuthentication(auth) {
+ this.authentications.default = auth;
+ }
+ setApiKey(key, value) {
+ this.authentications[AutoscalingV2beta1ApiApiKeys[key]].apiKey = value;
+ }
+ /**
+ * create a HorizontalPodAutoscaler
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createNamespacedHorizontalPodAutoscaler(namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/autoscaling/v2beta1/namespaces/{namespace}/horizontalpodautoscalers'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling createNamespacedHorizontalPodAutoscaler.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling createNamespacedHorizontalPodAutoscaler.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'POST',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V2beta1HorizontalPodAutoscaler")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V2beta1HorizontalPodAutoscaler");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete collection of HorizontalPodAutoscaler
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionNamespacedHorizontalPodAutoscaler(namespace, pretty, allowWatchBookmarks, _continue, dryRun, fieldSelector, gracePeriodSeconds, labelSelector, limit, orphanDependents, propagationPolicy, resourceVersion, timeoutSeconds, watch, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/autoscaling/v2beta1/namespaces/{namespace}/horizontalpodautoscalers'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling deleteCollectionNamespacedHorizontalPodAutoscaler.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete a HorizontalPodAutoscaler
+ * @param name name of the HorizontalPodAutoscaler
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteNamespacedHorizontalPodAutoscaler(name, namespace, pretty, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/autoscaling/v2beta1/namespaces/{namespace}/horizontalpodautoscalers/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling deleteNamespacedHorizontalPodAutoscaler.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling deleteNamespacedHorizontalPodAutoscaler.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * get available resources
+ */
+ getAPIResources(options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/autoscaling/v2beta1/';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1APIResourceList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind HorizontalPodAutoscaler
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listHorizontalPodAutoscalerForAllNamespaces(allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, pretty, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/autoscaling/v2beta1/horizontalpodautoscalers';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V2beta1HorizontalPodAutoscalerList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind HorizontalPodAutoscaler
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listNamespacedHorizontalPodAutoscaler(namespace, pretty, allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/autoscaling/v2beta1/namespaces/{namespace}/horizontalpodautoscalers'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling listNamespacedHorizontalPodAutoscaler.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V2beta1HorizontalPodAutoscalerList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update the specified HorizontalPodAutoscaler
+ * @param name name of the HorizontalPodAutoscaler
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedHorizontalPodAutoscaler(name, namespace, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/autoscaling/v2beta1/namespaces/{namespace}/horizontalpodautoscalers/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchNamespacedHorizontalPodAutoscaler.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling patchNamespacedHorizontalPodAutoscaler.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchNamespacedHorizontalPodAutoscaler.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V2beta1HorizontalPodAutoscaler");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update status of the specified HorizontalPodAutoscaler
+ * @param name name of the HorizontalPodAutoscaler
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedHorizontalPodAutoscalerStatus(name, namespace, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/autoscaling/v2beta1/namespaces/{namespace}/horizontalpodautoscalers/{name}/status'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchNamespacedHorizontalPodAutoscalerStatus.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling patchNamespacedHorizontalPodAutoscalerStatus.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchNamespacedHorizontalPodAutoscalerStatus.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V2beta1HorizontalPodAutoscaler");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read the specified HorizontalPodAutoscaler
+ * @param name name of the HorizontalPodAutoscaler
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readNamespacedHorizontalPodAutoscaler(name, namespace, pretty, exact, _export, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/autoscaling/v2beta1/namespaces/{namespace}/horizontalpodautoscalers/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readNamespacedHorizontalPodAutoscaler.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling readNamespacedHorizontalPodAutoscaler.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (exact !== undefined) {
+ localVarQueryParameters['exact'] = models_1.ObjectSerializer.serialize(exact, "boolean");
+ }
+ if (_export !== undefined) {
+ localVarQueryParameters['export'] = models_1.ObjectSerializer.serialize(_export, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V2beta1HorizontalPodAutoscaler");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read status of the specified HorizontalPodAutoscaler
+ * @param name name of the HorizontalPodAutoscaler
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readNamespacedHorizontalPodAutoscalerStatus(name, namespace, pretty, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/autoscaling/v2beta1/namespaces/{namespace}/horizontalpodautoscalers/{name}/status'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readNamespacedHorizontalPodAutoscalerStatus.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling readNamespacedHorizontalPodAutoscalerStatus.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V2beta1HorizontalPodAutoscaler");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace the specified HorizontalPodAutoscaler
+ * @param name name of the HorizontalPodAutoscaler
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedHorizontalPodAutoscaler(name, namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/autoscaling/v2beta1/namespaces/{namespace}/horizontalpodautoscalers/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceNamespacedHorizontalPodAutoscaler.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling replaceNamespacedHorizontalPodAutoscaler.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceNamespacedHorizontalPodAutoscaler.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V2beta1HorizontalPodAutoscaler")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V2beta1HorizontalPodAutoscaler");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace status of the specified HorizontalPodAutoscaler
+ * @param name name of the HorizontalPodAutoscaler
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedHorizontalPodAutoscalerStatus(name, namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/autoscaling/v2beta1/namespaces/{namespace}/horizontalpodautoscalers/{name}/status'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceNamespacedHorizontalPodAutoscalerStatus.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling replaceNamespacedHorizontalPodAutoscalerStatus.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceNamespacedHorizontalPodAutoscalerStatus.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V2beta1HorizontalPodAutoscaler")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V2beta1HorizontalPodAutoscaler");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+}
+exports.AutoscalingV2beta1Api = AutoscalingV2beta1Api;
+//# sourceMappingURL=autoscalingV2beta1Api.js.map
\ No newline at end of file
diff --git a/dist/gen/api/autoscalingV2beta1Api.js.map b/dist/gen/api/autoscalingV2beta1Api.js.map
new file mode 100644
index 0000000000..276eca9c43
--- /dev/null
+++ b/dist/gen/api/autoscalingV2beta1Api.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"autoscalingV2beta1Api.js","sourceRoot":"","sources":["../../../src/gen/api/autoscalingV2beta1Api.ts"],"names":[],"mappings":"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"}
\ No newline at end of file
diff --git a/dist/gen/api/autoscalingV2beta2Api.d.ts b/dist/gen/api/autoscalingV2beta2Api.d.ts
new file mode 100644
index 0000000000..2f8d3c3c65
--- /dev/null
+++ b/dist/gen/api/autoscalingV2beta2Api.d.ts
@@ -0,0 +1,250 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+///
+import http = require('http');
+import { V1APIResourceList } from '../model/v1APIResourceList';
+import { V1DeleteOptions } from '../model/v1DeleteOptions';
+import { V1Status } from '../model/v1Status';
+import { V2beta2HorizontalPodAutoscaler } from '../model/v2beta2HorizontalPodAutoscaler';
+import { V2beta2HorizontalPodAutoscalerList } from '../model/v2beta2HorizontalPodAutoscalerList';
+import { Authentication } from '../model/models';
+import { ApiKeyAuth } from '../model/models';
+export declare enum AutoscalingV2beta2ApiApiKeys {
+ BearerToken = 0
+}
+export declare class AutoscalingV2beta2Api {
+ protected _basePath: string;
+ protected defaultHeaders: any;
+ protected _useQuerystring: boolean;
+ protected authentications: {
+ 'default': Authentication;
+ 'BearerToken': ApiKeyAuth;
+ };
+ constructor(basePath?: string);
+ useQuerystring: boolean;
+ basePath: string;
+ setDefaultAuthentication(auth: Authentication): void;
+ setApiKey(key: AutoscalingV2beta2ApiApiKeys, value: string): void;
+ /**
+ * create a HorizontalPodAutoscaler
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createNamespacedHorizontalPodAutoscaler(namespace: string, body: V2beta2HorizontalPodAutoscaler, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V2beta2HorizontalPodAutoscaler;
+ }>;
+ /**
+ * delete collection of HorizontalPodAutoscaler
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionNamespacedHorizontalPodAutoscaler(namespace: string, pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, dryRun?: string, fieldSelector?: string, gracePeriodSeconds?: number, labelSelector?: string, limit?: number, orphanDependents?: boolean, propagationPolicy?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete a HorizontalPodAutoscaler
+ * @param name name of the HorizontalPodAutoscaler
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteNamespacedHorizontalPodAutoscaler(name: string, namespace: string, pretty?: string, dryRun?: string, gracePeriodSeconds?: number, orphanDependents?: boolean, propagationPolicy?: string, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * get available resources
+ */
+ getAPIResources(options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1APIResourceList;
+ }>;
+ /**
+ * list or watch objects of kind HorizontalPodAutoscaler
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listHorizontalPodAutoscalerForAllNamespaces(allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, pretty?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V2beta2HorizontalPodAutoscalerList;
+ }>;
+ /**
+ * list or watch objects of kind HorizontalPodAutoscaler
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listNamespacedHorizontalPodAutoscaler(namespace: string, pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V2beta2HorizontalPodAutoscalerList;
+ }>;
+ /**
+ * partially update the specified HorizontalPodAutoscaler
+ * @param name name of the HorizontalPodAutoscaler
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedHorizontalPodAutoscaler(name: string, namespace: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V2beta2HorizontalPodAutoscaler;
+ }>;
+ /**
+ * partially update status of the specified HorizontalPodAutoscaler
+ * @param name name of the HorizontalPodAutoscaler
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedHorizontalPodAutoscalerStatus(name: string, namespace: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V2beta2HorizontalPodAutoscaler;
+ }>;
+ /**
+ * read the specified HorizontalPodAutoscaler
+ * @param name name of the HorizontalPodAutoscaler
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readNamespacedHorizontalPodAutoscaler(name: string, namespace: string, pretty?: string, exact?: boolean, _export?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V2beta2HorizontalPodAutoscaler;
+ }>;
+ /**
+ * read status of the specified HorizontalPodAutoscaler
+ * @param name name of the HorizontalPodAutoscaler
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readNamespacedHorizontalPodAutoscalerStatus(name: string, namespace: string, pretty?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V2beta2HorizontalPodAutoscaler;
+ }>;
+ /**
+ * replace the specified HorizontalPodAutoscaler
+ * @param name name of the HorizontalPodAutoscaler
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedHorizontalPodAutoscaler(name: string, namespace: string, body: V2beta2HorizontalPodAutoscaler, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V2beta2HorizontalPodAutoscaler;
+ }>;
+ /**
+ * replace status of the specified HorizontalPodAutoscaler
+ * @param name name of the HorizontalPodAutoscaler
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedHorizontalPodAutoscalerStatus(name: string, namespace: string, body: V2beta2HorizontalPodAutoscaler, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V2beta2HorizontalPodAutoscaler;
+ }>;
+}
diff --git a/dist/gen/api/autoscalingV2beta2Api.js b/dist/gen/api/autoscalingV2beta2Api.js
new file mode 100644
index 0000000000..db0ea87229
--- /dev/null
+++ b/dist/gen/api/autoscalingV2beta2Api.js
@@ -0,0 +1,1027 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+const tslib_1 = require("tslib");
+const localVarRequest = require("request");
+const models_1 = require("../model/models");
+const models_2 = require("../model/models");
+let defaultBasePath = 'http://localhost/';
+// ===============================================
+// This file is autogenerated - Please do not edit
+// ===============================================
+var AutoscalingV2beta2ApiApiKeys;
+(function (AutoscalingV2beta2ApiApiKeys) {
+ AutoscalingV2beta2ApiApiKeys[AutoscalingV2beta2ApiApiKeys["BearerToken"] = 0] = "BearerToken";
+})(AutoscalingV2beta2ApiApiKeys = exports.AutoscalingV2beta2ApiApiKeys || (exports.AutoscalingV2beta2ApiApiKeys = {}));
+class AutoscalingV2beta2Api {
+ constructor(basePathOrUsername, password, basePath) {
+ this._basePath = defaultBasePath;
+ this.defaultHeaders = {};
+ this._useQuerystring = false;
+ this.authentications = {
+ 'default': new models_1.VoidAuth(),
+ 'BearerToken': new models_2.ApiKeyAuth('header', 'authorization'),
+ };
+ if (password) {
+ if (basePath) {
+ this.basePath = basePath;
+ }
+ }
+ else {
+ if (basePathOrUsername) {
+ this.basePath = basePathOrUsername;
+ }
+ }
+ }
+ set useQuerystring(value) {
+ this._useQuerystring = value;
+ }
+ set basePath(basePath) {
+ this._basePath = basePath;
+ }
+ get basePath() {
+ return this._basePath;
+ }
+ setDefaultAuthentication(auth) {
+ this.authentications.default = auth;
+ }
+ setApiKey(key, value) {
+ this.authentications[AutoscalingV2beta2ApiApiKeys[key]].apiKey = value;
+ }
+ /**
+ * create a HorizontalPodAutoscaler
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createNamespacedHorizontalPodAutoscaler(namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/autoscaling/v2beta2/namespaces/{namespace}/horizontalpodautoscalers'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling createNamespacedHorizontalPodAutoscaler.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling createNamespacedHorizontalPodAutoscaler.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'POST',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V2beta2HorizontalPodAutoscaler")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V2beta2HorizontalPodAutoscaler");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete collection of HorizontalPodAutoscaler
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionNamespacedHorizontalPodAutoscaler(namespace, pretty, allowWatchBookmarks, _continue, dryRun, fieldSelector, gracePeriodSeconds, labelSelector, limit, orphanDependents, propagationPolicy, resourceVersion, timeoutSeconds, watch, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/autoscaling/v2beta2/namespaces/{namespace}/horizontalpodautoscalers'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling deleteCollectionNamespacedHorizontalPodAutoscaler.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete a HorizontalPodAutoscaler
+ * @param name name of the HorizontalPodAutoscaler
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteNamespacedHorizontalPodAutoscaler(name, namespace, pretty, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/autoscaling/v2beta2/namespaces/{namespace}/horizontalpodautoscalers/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling deleteNamespacedHorizontalPodAutoscaler.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling deleteNamespacedHorizontalPodAutoscaler.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * get available resources
+ */
+ getAPIResources(options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/autoscaling/v2beta2/';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1APIResourceList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind HorizontalPodAutoscaler
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listHorizontalPodAutoscalerForAllNamespaces(allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, pretty, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/autoscaling/v2beta2/horizontalpodautoscalers';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V2beta2HorizontalPodAutoscalerList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind HorizontalPodAutoscaler
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listNamespacedHorizontalPodAutoscaler(namespace, pretty, allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/autoscaling/v2beta2/namespaces/{namespace}/horizontalpodautoscalers'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling listNamespacedHorizontalPodAutoscaler.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V2beta2HorizontalPodAutoscalerList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update the specified HorizontalPodAutoscaler
+ * @param name name of the HorizontalPodAutoscaler
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedHorizontalPodAutoscaler(name, namespace, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/autoscaling/v2beta2/namespaces/{namespace}/horizontalpodautoscalers/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchNamespacedHorizontalPodAutoscaler.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling patchNamespacedHorizontalPodAutoscaler.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchNamespacedHorizontalPodAutoscaler.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V2beta2HorizontalPodAutoscaler");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update status of the specified HorizontalPodAutoscaler
+ * @param name name of the HorizontalPodAutoscaler
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedHorizontalPodAutoscalerStatus(name, namespace, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/autoscaling/v2beta2/namespaces/{namespace}/horizontalpodautoscalers/{name}/status'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchNamespacedHorizontalPodAutoscalerStatus.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling patchNamespacedHorizontalPodAutoscalerStatus.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchNamespacedHorizontalPodAutoscalerStatus.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V2beta2HorizontalPodAutoscaler");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read the specified HorizontalPodAutoscaler
+ * @param name name of the HorizontalPodAutoscaler
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readNamespacedHorizontalPodAutoscaler(name, namespace, pretty, exact, _export, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/autoscaling/v2beta2/namespaces/{namespace}/horizontalpodautoscalers/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readNamespacedHorizontalPodAutoscaler.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling readNamespacedHorizontalPodAutoscaler.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (exact !== undefined) {
+ localVarQueryParameters['exact'] = models_1.ObjectSerializer.serialize(exact, "boolean");
+ }
+ if (_export !== undefined) {
+ localVarQueryParameters['export'] = models_1.ObjectSerializer.serialize(_export, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V2beta2HorizontalPodAutoscaler");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read status of the specified HorizontalPodAutoscaler
+ * @param name name of the HorizontalPodAutoscaler
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readNamespacedHorizontalPodAutoscalerStatus(name, namespace, pretty, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/autoscaling/v2beta2/namespaces/{namespace}/horizontalpodautoscalers/{name}/status'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readNamespacedHorizontalPodAutoscalerStatus.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling readNamespacedHorizontalPodAutoscalerStatus.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V2beta2HorizontalPodAutoscaler");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace the specified HorizontalPodAutoscaler
+ * @param name name of the HorizontalPodAutoscaler
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedHorizontalPodAutoscaler(name, namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/autoscaling/v2beta2/namespaces/{namespace}/horizontalpodautoscalers/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceNamespacedHorizontalPodAutoscaler.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling replaceNamespacedHorizontalPodAutoscaler.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceNamespacedHorizontalPodAutoscaler.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V2beta2HorizontalPodAutoscaler")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V2beta2HorizontalPodAutoscaler");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace status of the specified HorizontalPodAutoscaler
+ * @param name name of the HorizontalPodAutoscaler
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedHorizontalPodAutoscalerStatus(name, namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/autoscaling/v2beta2/namespaces/{namespace}/horizontalpodautoscalers/{name}/status'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceNamespacedHorizontalPodAutoscalerStatus.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling replaceNamespacedHorizontalPodAutoscalerStatus.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceNamespacedHorizontalPodAutoscalerStatus.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V2beta2HorizontalPodAutoscaler")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V2beta2HorizontalPodAutoscaler");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+}
+exports.AutoscalingV2beta2Api = AutoscalingV2beta2Api;
+//# sourceMappingURL=autoscalingV2beta2Api.js.map
\ No newline at end of file
diff --git a/dist/gen/api/autoscalingV2beta2Api.js.map b/dist/gen/api/autoscalingV2beta2Api.js.map
new file mode 100644
index 0000000000..a545a9bbb0
--- /dev/null
+++ b/dist/gen/api/autoscalingV2beta2Api.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"autoscalingV2beta2Api.js","sourceRoot":"","sources":["../../../src/gen/api/autoscalingV2beta2Api.ts"],"names":[],"mappings":"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"}
\ No newline at end of file
diff --git a/dist/gen/api/batchApi.d.ts b/dist/gen/api/batchApi.d.ts
new file mode 100644
index 0000000000..fc23f0a888
--- /dev/null
+++ b/dist/gen/api/batchApi.d.ts
@@ -0,0 +1,44 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+///
+import http = require('http');
+import { V1APIGroup } from '../model/v1APIGroup';
+import { Authentication } from '../model/models';
+import { ApiKeyAuth } from '../model/models';
+export declare enum BatchApiApiKeys {
+ BearerToken = 0
+}
+export declare class BatchApi {
+ protected _basePath: string;
+ protected defaultHeaders: any;
+ protected _useQuerystring: boolean;
+ protected authentications: {
+ 'default': Authentication;
+ 'BearerToken': ApiKeyAuth;
+ };
+ constructor(basePath?: string);
+ useQuerystring: boolean;
+ basePath: string;
+ setDefaultAuthentication(auth: Authentication): void;
+ setApiKey(key: BatchApiApiKeys, value: string): void;
+ /**
+ * get information of a group
+ */
+ getAPIGroup(options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1APIGroup;
+ }>;
+}
diff --git a/dist/gen/api/batchApi.js b/dist/gen/api/batchApi.js
new file mode 100644
index 0000000000..6d36425b72
--- /dev/null
+++ b/dist/gen/api/batchApi.js
@@ -0,0 +1,113 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+const tslib_1 = require("tslib");
+const localVarRequest = require("request");
+const models_1 = require("../model/models");
+const models_2 = require("../model/models");
+let defaultBasePath = 'http://localhost/';
+// ===============================================
+// This file is autogenerated - Please do not edit
+// ===============================================
+var BatchApiApiKeys;
+(function (BatchApiApiKeys) {
+ BatchApiApiKeys[BatchApiApiKeys["BearerToken"] = 0] = "BearerToken";
+})(BatchApiApiKeys = exports.BatchApiApiKeys || (exports.BatchApiApiKeys = {}));
+class BatchApi {
+ constructor(basePathOrUsername, password, basePath) {
+ this._basePath = defaultBasePath;
+ this.defaultHeaders = {};
+ this._useQuerystring = false;
+ this.authentications = {
+ 'default': new models_1.VoidAuth(),
+ 'BearerToken': new models_2.ApiKeyAuth('header', 'authorization'),
+ };
+ if (password) {
+ if (basePath) {
+ this.basePath = basePath;
+ }
+ }
+ else {
+ if (basePathOrUsername) {
+ this.basePath = basePathOrUsername;
+ }
+ }
+ }
+ set useQuerystring(value) {
+ this._useQuerystring = value;
+ }
+ set basePath(basePath) {
+ this._basePath = basePath;
+ }
+ get basePath() {
+ return this._basePath;
+ }
+ setDefaultAuthentication(auth) {
+ this.authentications.default = auth;
+ }
+ setApiKey(key, value) {
+ this.authentications[BatchApiApiKeys[key]].apiKey = value;
+ }
+ /**
+ * get information of a group
+ */
+ getAPIGroup(options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/batch/';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1APIGroup");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+}
+exports.BatchApi = BatchApi;
+//# sourceMappingURL=batchApi.js.map
\ No newline at end of file
diff --git a/dist/gen/api/batchApi.js.map b/dist/gen/api/batchApi.js.map
new file mode 100644
index 0000000000..8015b70938
--- /dev/null
+++ b/dist/gen/api/batchApi.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"batchApi.js","sourceRoot":"","sources":["../../../src/gen/api/batchApi.ts"],"names":[],"mappings":"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"}
\ No newline at end of file
diff --git a/dist/gen/api/batchV1Api.d.ts b/dist/gen/api/batchV1Api.d.ts
new file mode 100644
index 0000000000..6191b49c0f
--- /dev/null
+++ b/dist/gen/api/batchV1Api.d.ts
@@ -0,0 +1,250 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+///
+import http = require('http');
+import { V1APIResourceList } from '../model/v1APIResourceList';
+import { V1DeleteOptions } from '../model/v1DeleteOptions';
+import { V1Job } from '../model/v1Job';
+import { V1JobList } from '../model/v1JobList';
+import { V1Status } from '../model/v1Status';
+import { Authentication } from '../model/models';
+import { ApiKeyAuth } from '../model/models';
+export declare enum BatchV1ApiApiKeys {
+ BearerToken = 0
+}
+export declare class BatchV1Api {
+ protected _basePath: string;
+ protected defaultHeaders: any;
+ protected _useQuerystring: boolean;
+ protected authentications: {
+ 'default': Authentication;
+ 'BearerToken': ApiKeyAuth;
+ };
+ constructor(basePath?: string);
+ useQuerystring: boolean;
+ basePath: string;
+ setDefaultAuthentication(auth: Authentication): void;
+ setApiKey(key: BatchV1ApiApiKeys, value: string): void;
+ /**
+ * create a Job
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createNamespacedJob(namespace: string, body: V1Job, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Job;
+ }>;
+ /**
+ * delete collection of Job
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionNamespacedJob(namespace: string, pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, dryRun?: string, fieldSelector?: string, gracePeriodSeconds?: number, labelSelector?: string, limit?: number, orphanDependents?: boolean, propagationPolicy?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete a Job
+ * @param name name of the Job
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteNamespacedJob(name: string, namespace: string, pretty?: string, dryRun?: string, gracePeriodSeconds?: number, orphanDependents?: boolean, propagationPolicy?: string, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * get available resources
+ */
+ getAPIResources(options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1APIResourceList;
+ }>;
+ /**
+ * list or watch objects of kind Job
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listJobForAllNamespaces(allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, pretty?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1JobList;
+ }>;
+ /**
+ * list or watch objects of kind Job
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listNamespacedJob(namespace: string, pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1JobList;
+ }>;
+ /**
+ * partially update the specified Job
+ * @param name name of the Job
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedJob(name: string, namespace: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Job;
+ }>;
+ /**
+ * partially update status of the specified Job
+ * @param name name of the Job
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedJobStatus(name: string, namespace: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Job;
+ }>;
+ /**
+ * read the specified Job
+ * @param name name of the Job
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readNamespacedJob(name: string, namespace: string, pretty?: string, exact?: boolean, _export?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Job;
+ }>;
+ /**
+ * read status of the specified Job
+ * @param name name of the Job
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readNamespacedJobStatus(name: string, namespace: string, pretty?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Job;
+ }>;
+ /**
+ * replace the specified Job
+ * @param name name of the Job
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedJob(name: string, namespace: string, body: V1Job, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Job;
+ }>;
+ /**
+ * replace status of the specified Job
+ * @param name name of the Job
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedJobStatus(name: string, namespace: string, body: V1Job, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Job;
+ }>;
+}
diff --git a/dist/gen/api/batchV1Api.js b/dist/gen/api/batchV1Api.js
new file mode 100644
index 0000000000..1c32bacc06
--- /dev/null
+++ b/dist/gen/api/batchV1Api.js
@@ -0,0 +1,1027 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+const tslib_1 = require("tslib");
+const localVarRequest = require("request");
+const models_1 = require("../model/models");
+const models_2 = require("../model/models");
+let defaultBasePath = 'http://localhost/';
+// ===============================================
+// This file is autogenerated - Please do not edit
+// ===============================================
+var BatchV1ApiApiKeys;
+(function (BatchV1ApiApiKeys) {
+ BatchV1ApiApiKeys[BatchV1ApiApiKeys["BearerToken"] = 0] = "BearerToken";
+})(BatchV1ApiApiKeys = exports.BatchV1ApiApiKeys || (exports.BatchV1ApiApiKeys = {}));
+class BatchV1Api {
+ constructor(basePathOrUsername, password, basePath) {
+ this._basePath = defaultBasePath;
+ this.defaultHeaders = {};
+ this._useQuerystring = false;
+ this.authentications = {
+ 'default': new models_1.VoidAuth(),
+ 'BearerToken': new models_2.ApiKeyAuth('header', 'authorization'),
+ };
+ if (password) {
+ if (basePath) {
+ this.basePath = basePath;
+ }
+ }
+ else {
+ if (basePathOrUsername) {
+ this.basePath = basePathOrUsername;
+ }
+ }
+ }
+ set useQuerystring(value) {
+ this._useQuerystring = value;
+ }
+ set basePath(basePath) {
+ this._basePath = basePath;
+ }
+ get basePath() {
+ return this._basePath;
+ }
+ setDefaultAuthentication(auth) {
+ this.authentications.default = auth;
+ }
+ setApiKey(key, value) {
+ this.authentications[BatchV1ApiApiKeys[key]].apiKey = value;
+ }
+ /**
+ * create a Job
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createNamespacedJob(namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/batch/v1/namespaces/{namespace}/jobs'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling createNamespacedJob.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling createNamespacedJob.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'POST',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1Job")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Job");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete collection of Job
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionNamespacedJob(namespace, pretty, allowWatchBookmarks, _continue, dryRun, fieldSelector, gracePeriodSeconds, labelSelector, limit, orphanDependents, propagationPolicy, resourceVersion, timeoutSeconds, watch, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/batch/v1/namespaces/{namespace}/jobs'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling deleteCollectionNamespacedJob.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete a Job
+ * @param name name of the Job
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteNamespacedJob(name, namespace, pretty, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/batch/v1/namespaces/{namespace}/jobs/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling deleteNamespacedJob.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling deleteNamespacedJob.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * get available resources
+ */
+ getAPIResources(options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/batch/v1/';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1APIResourceList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind Job
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listJobForAllNamespaces(allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, pretty, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/batch/v1/jobs';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1JobList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind Job
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listNamespacedJob(namespace, pretty, allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/batch/v1/namespaces/{namespace}/jobs'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling listNamespacedJob.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1JobList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update the specified Job
+ * @param name name of the Job
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedJob(name, namespace, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/batch/v1/namespaces/{namespace}/jobs/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchNamespacedJob.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling patchNamespacedJob.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchNamespacedJob.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Job");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update status of the specified Job
+ * @param name name of the Job
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedJobStatus(name, namespace, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/batch/v1/namespaces/{namespace}/jobs/{name}/status'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchNamespacedJobStatus.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling patchNamespacedJobStatus.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchNamespacedJobStatus.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Job");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read the specified Job
+ * @param name name of the Job
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readNamespacedJob(name, namespace, pretty, exact, _export, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/batch/v1/namespaces/{namespace}/jobs/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readNamespacedJob.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling readNamespacedJob.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (exact !== undefined) {
+ localVarQueryParameters['exact'] = models_1.ObjectSerializer.serialize(exact, "boolean");
+ }
+ if (_export !== undefined) {
+ localVarQueryParameters['export'] = models_1.ObjectSerializer.serialize(_export, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Job");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read status of the specified Job
+ * @param name name of the Job
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readNamespacedJobStatus(name, namespace, pretty, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/batch/v1/namespaces/{namespace}/jobs/{name}/status'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readNamespacedJobStatus.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling readNamespacedJobStatus.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Job");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace the specified Job
+ * @param name name of the Job
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedJob(name, namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/batch/v1/namespaces/{namespace}/jobs/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceNamespacedJob.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling replaceNamespacedJob.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceNamespacedJob.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1Job")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Job");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace status of the specified Job
+ * @param name name of the Job
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedJobStatus(name, namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/batch/v1/namespaces/{namespace}/jobs/{name}/status'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceNamespacedJobStatus.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling replaceNamespacedJobStatus.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceNamespacedJobStatus.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1Job")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Job");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+}
+exports.BatchV1Api = BatchV1Api;
+//# sourceMappingURL=batchV1Api.js.map
\ No newline at end of file
diff --git a/dist/gen/api/batchV1Api.js.map b/dist/gen/api/batchV1Api.js.map
new file mode 100644
index 0000000000..0939b2fac1
--- /dev/null
+++ b/dist/gen/api/batchV1Api.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"batchV1Api.js","sourceRoot":"","sources":["../../../src/gen/api/batchV1Api.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;;AAEH,2CAA4C;AAU5C,4CAA6E;AAC7E,4CAA6C;AAE7C,IAAI,eAAe,GAAG,kBAAkB,CAAC;AAEzC,kDAAkD;AAClD,kDAAkD;AAClD,kDAAkD;AAElD,IAAY,iBAEX;AAFD,WAAY,iBAAiB;IACzB,uEAAW,CAAA;AACf,CAAC,EAFW,iBAAiB,GAAjB,yBAAiB,KAAjB,yBAAiB,QAE5B;AAED,MAAa,UAAU;IAWnB,YAAY,kBAA0B,EAAE,QAAiB,EAAE,QAAiB;QAVlE,cAAS,GAAG,eAAe,CAAC;QAC5B,mBAAc,GAAS,EAAE,CAAC;QAC1B,oBAAe,GAAa,KAAK,CAAC;QAElC,oBAAe,GAAG;YACxB,SAAS,EAAkB,IAAI,iBAAQ,EAAE;YACzC,aAAa,EAAE,IAAI,mBAAU,CAAC,QAAQ,EAAE,eAAe,CAAC;SAC3D,CAAA;QAIG,IAAI,QAAQ,EAAE;YACV,IAAI,QAAQ,EAAE;gBACV,IAAI,CAAC,QAAQ,GAAG,QAAQ,CAAC;aAC5B;SACJ;aAAM;YACH,IAAI,kBAAkB,EAAE;gBACpB,IAAI,CAAC,QAAQ,GAAG,kBAAkB,CAAA;aACrC;SACJ;IACL,CAAC;IAED,IAAI,cAAc,CAAC,KAAc;QAC7B,IAAI,CAAC,eAAe,GAAG,KAAK,CAAC;IACjC,CAAC;IAED,IAAI,QAAQ,CAAC,QAAgB;QACzB,IAAI,CAAC,SAAS,GAAG,QAAQ,CAAC;IAC9B,CAAC;IAED,IAAI,QAAQ;QACR,OAAO,IAAI,CAAC,SAAS,CAAC;IAC1B,CAAC;IAEM,wBAAwB,CAAC,IAAoB;QAChD,IAAI,CAAC,eAAe,CAAC,OAAO,GAAG,IAAI,CAAC;IACxC,CAAC;IAEM,SAAS,CAAC,GAAsB,EAAE,KAAa;QACjD,IAAI,CAAC,eAAuB,CAAC,iBAAiB,CAAC,GAAG,CAAC,CAAC,CAAC,MAAM,GAAG,KAAK,CAAC;IACzE,CAAC;IAED;;;;;;;OAOG;IACU,mBAAmB,CAAE,SAAiB,EAAE,IAAW,EAAE,MAAe,EAAE,MAAe,EAAE,YAAqB,EAAE,UAA+C,EAAC,OAAO,EAAE,EAAE,EAAC;;YACnL,MAAM,YAAY,GAAG,IAAI,CAAC,QAAQ,GAAG,4CAA4C;iBAC5E,OAAO,CAAC,GAAG,GAAG,WAAW,GAAG,GAAG,EAAE,kBAAkB,CAAC,MAAM,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC;YAC7E,IAAI,uBAAuB,GAAQ,EAAE,CAAC;YACtC,IAAI,oBAAoB,GAAc,MAAO,CAAC,MAAM,CAAC,EAAE,EAAE,IAAI,CAAC,cAAc,CAAC,CAAC;YAC9E,IAAI,kBAAkB,GAAQ,EAAE,CAAC;YAEjC,iEAAiE;YACjE,IAAI,SAAS,KAAK,IAAI,IAAI,SAAS,KAAK,SAAS,EAAE;gBAC/C,MAAM,IAAI,KAAK,CAAC,sFAAsF,CAAC,CAAC;aAC3G;YAED,4DAA4D;YAC5D,IAAI,IAAI,KAAK,IAAI,IAAI,IAAI,KAAK,SAAS,EAAE;gBACrC,MAAM,IAAI,KAAK,CAAC,iFAAiF,CAAC,CAAC;aACtG;YAED,IAAI,MAAM,KAAK,SAAS,EAAE;gBACtB,uBAAuB,CAAC,QAAQ,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;aACpF;YAED,IAAI,MAAM,KAAK,SAAS,EAAE;gBACtB,uBAAuB,CAAC,QAAQ,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;aACpF;YAED,IAAI,YAAY,KAAK,SAAS,EAAE;gBAC5B,uBAAuB,CAAC,cAAc,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,YAAY,EAAE,QAAQ,CAAC,CAAC;aAChG;YAEK,MAAO,CAAC,MAAM,CAAC,oBAAoB,EAAE,OAAO,CAAC,OAAO,CAAC,CAAC;YAE5D,IAAI,mBAAmB,GAAG,KAAK,CAAC;YAEhC,IAAI,sBAAsB,GAA4B;gBAClD,MAAM,EAAE,MAAM;gBACd,EAAE,EAAE,uBAAuB;gBAC3B,OAAO,EAAE,oBAAoB;gBAC7B,GAAG,EAAE,YAAY;gBACjB,cAAc,EAAE,IAAI,CAAC,eAAe;gBACpC,IAAI,EAAE,IAAI;gBACV,IAAI,EAAE,yBAAgB,CAAC,SAAS,CAAC,IAAI,EAAE,OAAO,CAAC;aAClD,CAAC;YAEF,IAAI,qBAAqB,GAAG,OAAO,CAAC,OAAO,EAAE,CAAC;YAC9C,qBAAqB,GAAG,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,eAAe,CAAC,WAAW,CAAC,cAAc,CAAC,sBAAsB,CAAC,CAAC,CAAC;YAElI,qBAAqB,GAAG,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,eAAe,CAAC,OAAO,CAAC,cAAc,CAAC,sBAAsB,CAAC,CAAC,CAAC;YAC9H,OAAO,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE;gBACnC,IAAI,MAAM,CAAC,IAAI,CAAC,kBAAkB,CAAC,CAAC,MAAM,EAAE;oBACxC,IAAI,mBAAmB,EAAE;wBACf,sBAAuB,CAAC,QAAQ,GAAG,kBAAkB,CAAC;qBAC/D;yBAAM;wBACH,sBAAsB,CAAC,IAAI,GAAG,kBAAkB,CAAC;qBACpD;iBACJ;gBACD,OAAO,IAAI,OAAO,CAAoD,CAAC,OAAO,EAAE,MAAM,EAAE,EAAE;oBACtF,eAAe,CAAC,sBAAsB,EAAE,CAAC,KAAK,EAAE,QAAQ,EAAE,IAAI,EAAE,EAAE;wBAC9D,IAAI,KAAK,EAAE;4BACP,MAAM,CAAC,KAAK,CAAC,CAAC;yBACjB;6BAAM;4BACH,IAAI,GAAG,yBAAgB,CAAC,WAAW,CAAC,IAAI,EAAE,OAAO,CAAC,CAAC;4BACnD,IAAI,QAAQ,CAAC,UAAU,IAAI,QAAQ,CAAC,UAAU,IAAI,GAAG,IAAI,QAAQ,CAAC,UAAU,IAAI,GAAG,EAAE;gCACjF,OAAO,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;6BAC/C;iCAAM;gCACH,MAAM,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;6BAC9C;yBACJ;oBACL,CAAC,CAAC,CAAC;gBACP,CAAC,CAAC,CAAC;YACP,CAAC,CAAC,CAAC;QACP,CAAC;KAAA;IACD;;;;;;;;;;;;;;;;;OAiBG;IACU,6BAA6B,CAAE,SAAiB,EAAE,MAAe,EAAE,mBAA6B,EAAE,SAAkB,EAAE,MAAe,EAAE,aAAsB,EAAE,kBAA2B,EAAE,aAAsB,EAAE,KAAc,EAAE,gBAA0B,EAAE,iBAA0B,EAAE,eAAwB,EAAE,cAAuB,EAAE,KAAe,EAAE,IAAsB,EAAE,UAA+C,EAAC,OAAO,EAAE,EAAE,EAAC;;YAC7b,MAAM,YAAY,GAAG,IAAI,CAAC,QAAQ,GAAG,4CAA4C;iBAC5E,OAAO,CAAC,GAAG,GAAG,WAAW,GAAG,GAAG,EAAE,kBAAkB,CAAC,MAAM,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC;YAC7E,IAAI,uBAAuB,GAAQ,EAAE,CAAC;YACtC,IAAI,oBAAoB,GAAc,MAAO,CAAC,MAAM,CAAC,EAAE,EAAE,IAAI,CAAC,cAAc,CAAC,CAAC;YAC9E,IAAI,kBAAkB,GAAQ,EAAE,CAAC;YAEjC,iEAAiE;YACjE,IAAI,SAAS,KAAK,IAAI,IAAI,SAAS,KAAK,SAAS,EAAE;gBAC/C,MAAM,IAAI,KAAK,CAAC,gGAAgG,CAAC,CAAC;aACrH;YAED,IAAI,MAAM,KAAK,SAAS,EAAE;gBACtB,uBAAuB,CAAC,QAAQ,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;aACpF;YAED,IAAI,mBAAmB,KAAK,SAAS,EAAE;gBACnC,uBAAuB,CAAC,qBAAqB,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,mBAAmB,EAAE,SAAS,CAAC,CAAC;aAC/G;YAED,IAAI,SAAS,KAAK,SAAS,EAAE;gBACzB,uBAAuB,CAAC,UAAU,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,SAAS,EAAE,QAAQ,CAAC,CAAC;aACzF;YAED,IAAI,MAAM,KAAK,SAAS,EAAE;gBACtB,uBAAuB,CAAC,QAAQ,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;aACpF;YAED,IAAI,aAAa,KAAK,SAAS,EAAE;gBAC7B,uBAAuB,CAAC,eAAe,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,aAAa,EAAE,QAAQ,CAAC,CAAC;aAClG;YAED,IAAI,kBAAkB,KAAK,SAAS,EAAE;gBAClC,uBAAuB,CAAC,oBAAoB,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,kBAAkB,EAAE,QAAQ,CAAC,CAAC;aAC5G;YAED,IAAI,aAAa,KAAK,SAAS,EAAE;gBAC7B,uBAAuB,CAAC,eAAe,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,aAAa,EAAE,QAAQ,CAAC,CAAC;aAClG;YAED,IAAI,KAAK,KAAK,SAAS,EAAE;gBACrB,uBAAuB,CAAC,OAAO,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,KAAK,EAAE,QAAQ,CAAC,CAAC;aAClF;YAED,IAAI,gBAAgB,KAAK,SAAS,EAAE;gBAChC,uBAAuB,CAAC,kBAAkB,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,gBAAgB,EAAE,SAAS,CAAC,CAAC;aACzG;YAED,IAAI,iBAAiB,KAAK,SAAS,EAAE;gBACjC,uBAAuB,CAAC,mBAAmB,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,iBAAiB,EAAE,QAAQ,CAAC,CAAC;aAC1G;YAED,IAAI,eAAe,KAAK,SAAS,EAAE;gBAC/B,uBAAuB,CAAC,iBAAiB,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,eAAe,EAAE,QAAQ,CAAC,CAAC;aACtG;YAED,IAAI,cAAc,KAAK,SAAS,EAAE;gBAC9B,uBAAuB,CAAC,gBAAgB,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,cAAc,EAAE,QAAQ,CAAC,CAAC;aACpG;YAED,IAAI,KAAK,KAAK,SAAS,EAAE;gBACrB,uBAAuB,CAAC,OAAO,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,KAAK,EAAE,SAAS,CAAC,CAAC;aACnF;YAEK,MAAO,CAAC,MAAM,CAAC,oBAAoB,EAAE,OAAO,CAAC,OAAO,CAAC,CAAC;YAE5D,IAAI,mBAAmB,GAAG,KAAK,CAAC;YAEhC,IAAI,sBAAsB,GAA4B;gBAClD,MAAM,EAAE,QAAQ;gBAChB,EAAE,EAAE,uBAAuB;gBAC3B,OAAO,EAAE,oBAAoB;gBAC7B,GAAG,EAAE,YAAY;gBACjB,cAAc,EAAE,IAAI,CAAC,eAAe;gBACpC,IAAI,EAAE,IAAI;gBACV,IAAI,EAAE,yBAAgB,CAAC,SAAS,CAAC,IAAI,EAAE,iBAAiB,CAAC;aAC5D,CAAC;YAEF,IAAI,qBAAqB,GAAG,OAAO,CAAC,OAAO,EAAE,CAAC;YAC9C,qBAAqB,GAAG,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,eAAe,CAAC,WAAW,CAAC,cAAc,CAAC,sBAAsB,CAAC,CAAC,CAAC;YAElI,qBAAqB,GAAG,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,eAAe,CAAC,OAAO,CAAC,cAAc,CAAC,sBAAsB,CAAC,CAAC,CAAC;YAC9H,OAAO,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE;gBACnC,IAAI,MAAM,CAAC,IAAI,CAAC,kBAAkB,CAAC,CAAC,MAAM,EAAE;oBACxC,IAAI,mBAAmB,EAAE;wBACf,sBAAuB,CAAC,QAAQ,GAAG,kBAAkB,CAAC;qBAC/D;yBAAM;wBACH,sBAAsB,CAAC,IAAI,GAAG,kBAAkB,CAAC;qBACpD;iBACJ;gBACD,OAAO,IAAI,OAAO,CAAuD,CAAC,OAAO,EAAE,MAAM,EAAE,EAAE;oBACzF,eAAe,CAAC,sBAAsB,EAAE,CAAC,KAAK,EAAE,QAAQ,EAAE,IAAI,EAAE,EAAE;wBAC9D,IAAI,KAAK,EAAE;4BACP,MAAM,CAAC,KAAK,CAAC,CAAC;yBACjB;6BAAM;4BACH,IAAI,GAAG,yBAAgB,CAAC,WAAW,CAAC,IAAI,EAAE,UAAU,CAAC,CAAC;4BACtD,IAAI,QAAQ,CAAC,UAAU,IAAI,QAAQ,CAAC,UAAU,IAAI,GAAG,IAAI,QAAQ,CAAC,UAAU,IAAI,GAAG,EAAE;gCACjF,OAAO,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;6BAC/C;iCAAM;gCACH,MAAM,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;6BAC9C;yBACJ;oBACL,CAAC,CAAC,CAAC;gBACP,CAAC,CAAC,CAAC;YACP,CAAC,CAAC,CAAC;QACP,CAAC;KAAA;IACD;;;;;;;;;;OAUG;IACU,mBAAmB,CAAE,IAAY,EAAE,SAAiB,EAAE,MAAe,EAAE,MAAe,EAAE,kBAA2B,EAAE,gBAA0B,EAAE,iBAA0B,EAAE,IAAsB,EAAE,UAA+C,EAAC,OAAO,EAAE,EAAE,EAAC;;YAC1Q,MAAM,YAAY,GAAG,IAAI,CAAC,QAAQ,GAAG,mDAAmD;iBACnF,OAAO,CAAC,GAAG,GAAG,MAAM,GAAG,GAAG,EAAE,kBAAkB,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,CAAC;iBAC7D,OAAO,CAAC,GAAG,GAAG,WAAW,GAAG,GAAG,EAAE,kBAAkB,CAAC,MAAM,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC;YAC7E,IAAI,uBAAuB,GAAQ,EAAE,CAAC;YACtC,IAAI,oBAAoB,GAAc,MAAO,CAAC,MAAM,CAAC,EAAE,EAAE,IAAI,CAAC,cAAc,CAAC,CAAC;YAC9E,IAAI,kBAAkB,GAAQ,EAAE,CAAC;YAEjC,4DAA4D;YAC5D,IAAI,IAAI,KAAK,IAAI,IAAI,IAAI,KAAK,SAAS,EAAE;gBACrC,MAAM,IAAI,KAAK,CAAC,iFAAiF,CAAC,CAAC;aACtG;YAED,iEAAiE;YACjE,IAAI,SAAS,KAAK,IAAI,IAAI,SAAS,KAAK,SAAS,EAAE;gBAC/C,MAAM,IAAI,KAAK,CAAC,sFAAsF,CAAC,CAAC;aAC3G;YAED,IAAI,MAAM,KAAK,SAAS,EAAE;gBACtB,uBAAuB,CAAC,QAAQ,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;aACpF;YAED,IAAI,MAAM,KAAK,SAAS,EAAE;gBACtB,uBAAuB,CAAC,QAAQ,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;aACpF;YAED,IAAI,kBAAkB,KAAK,SAAS,EAAE;gBAClC,uBAAuB,CAAC,oBAAoB,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,kBAAkB,EAAE,QAAQ,CAAC,CAAC;aAC5G;YAED,IAAI,gBAAgB,KAAK,SAAS,EAAE;gBAChC,uBAAuB,CAAC,kBAAkB,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,gBAAgB,EAAE,SAAS,CAAC,CAAC;aACzG;YAED,IAAI,iBAAiB,KAAK,SAAS,EAAE;gBACjC,uBAAuB,CAAC,mBAAmB,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,iBAAiB,EAAE,QAAQ,CAAC,CAAC;aAC1G;YAEK,MAAO,CAAC,MAAM,CAAC,oBAAoB,EAAE,OAAO,CAAC,OAAO,CAAC,CAAC;YAE5D,IAAI,mBAAmB,GAAG,KAAK,CAAC;YAEhC,IAAI,sBAAsB,GAA4B;gBAClD,MAAM,EAAE,QAAQ;gBAChB,EAAE,EAAE,uBAAuB;gBAC3B,OAAO,EAAE,oBAAoB;gBAC7B,GAAG,EAAE,YAAY;gBACjB,cAAc,EAAE,IAAI,CAAC,eAAe;gBACpC,IAAI,EAAE,IAAI;gBACV,IAAI,EAAE,yBAAgB,CAAC,SAAS,CAAC,IAAI,EAAE,iBAAiB,CAAC;aAC5D,CAAC;YAEF,IAAI,qBAAqB,GAAG,OAAO,CAAC,OAAO,EAAE,CAAC;YAC9C,qBAAqB,GAAG,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,eAAe,CAAC,WAAW,CAAC,cAAc,CAAC,sBAAsB,CAAC,CAAC,CAAC;YAElI,qBAAqB,GAAG,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,eAAe,CAAC,OAAO,CAAC,cAAc,CAAC,sBAAsB,CAAC,CAAC,CAAC;YAC9H,OAAO,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE;gBACnC,IAAI,MAAM,CAAC,IAAI,CAAC,kBAAkB,CAAC,CAAC,MAAM,EAAE;oBACxC,IAAI,mBAAmB,EAAE;wBACf,sBAAuB,CAAC,QAAQ,GAAG,kBAAkB,CAAC;qBAC/D;yBAAM;wBACH,sBAAsB,CAAC,IAAI,GAAG,kBAAkB,CAAC;qBACpD;iBACJ;gBACD,OAAO,IAAI,OAAO,CAAuD,CAAC,OAAO,EAAE,MAAM,EAAE,EAAE;oBACzF,eAAe,CAAC,sBAAsB,EAAE,CAAC,KAAK,EAAE,QAAQ,EAAE,IAAI,EAAE,EAAE;wBAC9D,IAAI,KAAK,EAAE;4BACP,MAAM,CAAC,KAAK,CAAC,CAAC;yBACjB;6BAAM;4BACH,IAAI,GAAG,yBAAgB,CAAC,WAAW,CAAC,IAAI,EAAE,UAAU,CAAC,CAAC;4BACtD,IAAI,QAAQ,CAAC,UAAU,IAAI,QAAQ,CAAC,UAAU,IAAI,GAAG,IAAI,QAAQ,CAAC,UAAU,IAAI,GAAG,EAAE;gCACjF,OAAO,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;6BAC/C;iCAAM;gCACH,MAAM,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;6BAC9C;yBACJ;oBACL,CAAC,CAAC,CAAC;gBACP,CAAC,CAAC,CAAC;YACP,CAAC,CAAC,CAAC;QACP,CAAC;KAAA;IACD;;OAEG;IACU,eAAe,CAAE,UAA+C,EAAC,OAAO,EAAE,EAAE,EAAC;;YACtF,MAAM,YAAY,GAAG,IAAI,CAAC,QAAQ,GAAG,iBAAiB,CAAC;YACvD,IAAI,uBAAuB,GAAQ,EAAE,CAAC;YACtC,IAAI,oBAAoB,GAAc,MAAO,CAAC,MAAM,CAAC,EAAE,EAAE,IAAI,CAAC,cAAc,CAAC,CAAC;YAC9E,IAAI,kBAAkB,GAAQ,EAAE,CAAC;YAE3B,MAAO,CAAC,MAAM,CAAC,oBAAoB,EAAE,OAAO,CAAC,OAAO,CAAC,CAAC;YAE5D,IAAI,mBAAmB,GAAG,KAAK,CAAC;YAEhC,IAAI,sBAAsB,GAA4B;gBAClD,MAAM,EAAE,KAAK;gBACb,EAAE,EAAE,uBAAuB;gBAC3B,OAAO,EAAE,oBAAoB;gBAC7B,GAAG,EAAE,YAAY;gBACjB,cAAc,EAAE,IAAI,CAAC,eAAe;gBACpC,IAAI,EAAE,IAAI;aACb,CAAC;YAEF,IAAI,qBAAqB,GAAG,OAAO,CAAC,OAAO,EAAE,CAAC;YAC9C,qBAAqB,GAAG,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,eAAe,CAAC,WAAW,CAAC,cAAc,CAAC,sBAAsB,CAAC,CAAC,CAAC;YAElI,qBAAqB,GAAG,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,eAAe,CAAC,OAAO,CAAC,cAAc,CAAC,sBAAsB,CAAC,CAAC,CAAC;YAC9H,OAAO,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE;gBACnC,IAAI,MAAM,CAAC,IAAI,CAAC,kBAAkB,CAAC,CAAC,MAAM,EAAE;oBACxC,IAAI,mBAAmB,EAAE;wBACf,sBAAuB,CAAC,QAAQ,GAAG,kBAAkB,CAAC;qBAC/D;yBAAM;wBACH,sBAAsB,CAAC,IAAI,GAAG,kBAAkB,CAAC;qBACpD;iBACJ;gBACD,OAAO,IAAI,OAAO,CAAgE,CAAC,OAAO,EAAE,MAAM,EAAE,EAAE;oBAClG,eAAe,CAAC,sBAAsB,EAAE,CAAC,KAAK,EAAE,QAAQ,EAAE,IAAI,EAAE,EAAE;wBAC9D,IAAI,KAAK,EAAE;4BACP,MAAM,CAAC,KAAK,CAAC,CAAC;yBACjB;6BAAM;4BACH,IAAI,GAAG,yBAAgB,CAAC,WAAW,CAAC,IAAI,EAAE,mBAAmB,CAAC,CAAC;4BAC/D,IAAI,QAAQ,CAAC,UAAU,IAAI,QAAQ,CAAC,UAAU,IAAI,GAAG,IAAI,QAAQ,CAAC,UAAU,IAAI,GAAG,EAAE;gCACjF,OAAO,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;6BAC/C;iCAAM;gCACH,MAAM,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;6BAC9C;yBACJ;oBACL,CAAC,CAAC,CAAC;gBACP,CAAC,CAAC,CAAC;YACP,CAAC,CAAC,CAAC;QACP,CAAC;KAAA;IACD;;;;;;;;;;;OAWG;IACU,uBAAuB,CAAE,mBAA6B,EAAE,SAAkB,EAAE,aAAsB,EAAE,aAAsB,EAAE,KAAc,EAAE,MAAe,EAAE,eAAwB,EAAE,cAAuB,EAAE,KAAe,EAAE,UAA+C,EAAC,OAAO,EAAE,EAAE,EAAC;;YACtS,MAAM,YAAY,GAAG,IAAI,CAAC,QAAQ,GAAG,qBAAqB,CAAC;YAC3D,IAAI,uBAAuB,GAAQ,EAAE,CAAC;YACtC,IAAI,oBAAoB,GAAc,MAAO,CAAC,MAAM,CAAC,EAAE,EAAE,IAAI,CAAC,cAAc,CAAC,CAAC;YAC9E,IAAI,kBAAkB,GAAQ,EAAE,CAAC;YAEjC,IAAI,mBAAmB,KAAK,SAAS,EAAE;gBACnC,uBAAuB,CAAC,qBAAqB,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,mBAAmB,EAAE,SAAS,CAAC,CAAC;aAC/G;YAED,IAAI,SAAS,KAAK,SAAS,EAAE;gBACzB,uBAAuB,CAAC,UAAU,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,SAAS,EAAE,QAAQ,CAAC,CAAC;aACzF;YAED,IAAI,aAAa,KAAK,SAAS,EAAE;gBAC7B,uBAAuB,CAAC,eAAe,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,aAAa,EAAE,QAAQ,CAAC,CAAC;aAClG;YAED,IAAI,aAAa,KAAK,SAAS,EAAE;gBAC7B,uBAAuB,CAAC,eAAe,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,aAAa,EAAE,QAAQ,CAAC,CAAC;aAClG;YAED,IAAI,KAAK,KAAK,SAAS,EAAE;gBACrB,uBAAuB,CAAC,OAAO,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,KAAK,EAAE,QAAQ,CAAC,CAAC;aAClF;YAED,IAAI,MAAM,KAAK,SAAS,EAAE;gBACtB,uBAAuB,CAAC,QAAQ,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;aACpF;YAED,IAAI,eAAe,KAAK,SAAS,EAAE;gBAC/B,uBAAuB,CAAC,iBAAiB,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,eAAe,EAAE,QAAQ,CAAC,CAAC;aACtG;YAED,IAAI,cAAc,KAAK,SAAS,EAAE;gBAC9B,uBAAuB,CAAC,gBAAgB,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,cAAc,EAAE,QAAQ,CAAC,CAAC;aACpG;YAED,IAAI,KAAK,KAAK,SAAS,EAAE;gBACrB,uBAAuB,CAAC,OAAO,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,KAAK,EAAE,SAAS,CAAC,CAAC;aACnF;YAEK,MAAO,CAAC,MAAM,CAAC,oBAAoB,EAAE,OAAO,CAAC,OAAO,CAAC,CAAC;YAE5D,IAAI,mBAAmB,GAAG,KAAK,CAAC;YAEhC,IAAI,sBAAsB,GAA4B;gBAClD,MAAM,EAAE,KAAK;gBACb,EAAE,EAAE,uBAAuB;gBAC3B,OAAO,EAAE,oBAAoB;gBAC7B,GAAG,EAAE,YAAY;gBACjB,cAAc,EAAE,IAAI,CAAC,eAAe;gBACpC,IAAI,EAAE,IAAI;aACb,CAAC;YAEF,IAAI,qBAAqB,GAAG,OAAO,CAAC,OAAO,EAAE,CAAC;YAC9C,qBAAqB,GAAG,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,eAAe,CAAC,WAAW,CAAC,cAAc,CAAC,sBAAsB,CAAC,CAAC,CAAC;YAElI,qBAAqB,GAAG,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,eAAe,CAAC,OAAO,CAAC,cAAc,CAAC,sBAAsB,CAAC,CAAC,CAAC;YAC9H,OAAO,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE;gBACnC,IAAI,MAAM,CAAC,IAAI,CAAC,kBAAkB,CAAC,CAAC,MAAM,EAAE;oBACxC,IAAI,mBAAmB,EAAE;wBACf,sBAAuB,CAAC,QAAQ,GAAG,kBAAkB,CAAC;qBAC/D;yBAAM;wBACH,sBAAsB,CAAC,IAAI,GAAG,kBAAkB,CAAC;qBACpD;iBACJ;gBACD,OAAO,IAAI,OAAO,CAAwD,CAAC,OAAO,EAAE,MAAM,EAAE,EAAE;oBAC1F,eAAe,CAAC,sBAAsB,EAAE,CAAC,KAAK,EAAE,QAAQ,EAAE,IAAI,EAAE,EAAE;wBAC9D,IAAI,KAAK,EAAE;4BACP,MAAM,CAAC,KAAK,CAAC,CAAC;yBACjB;6BAAM;4BACH,IAAI,GAAG,yBAAgB,CAAC,WAAW,CAAC,IAAI,EAAE,WAAW,CAAC,CAAC;4BACvD,IAAI,QAAQ,CAAC,UAAU,IAAI,QAAQ,CAAC,UAAU,IAAI,GAAG,IAAI,QAAQ,CAAC,UAAU,IAAI,GAAG,EAAE;gCACjF,OAAO,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;6BAC/C;iCAAM;gCACH,MAAM,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;6BAC9C;yBACJ;oBACL,CAAC,CAAC,CAAC;gBACP,CAAC,CAAC,CAAC;YACP,CAAC,CAAC,CAAC;QACP,CAAC;KAAA;IACD;;;;;;;;;;;;OAYG;IACU,iBAAiB,CAAE,SAAiB,EAAE,MAAe,EAAE,mBAA6B,EAAE,SAAkB,EAAE,aAAsB,EAAE,aAAsB,EAAE,KAAc,EAAE,eAAwB,EAAE,cAAuB,EAAE,KAAe,EAAE,UAA+C,EAAC,OAAO,EAAE,EAAE,EAAC;;YACnT,MAAM,YAAY,GAAG,IAAI,CAAC,QAAQ,GAAG,4CAA4C;iBAC5E,OAAO,CAAC,GAAG,GAAG,WAAW,GAAG,GAAG,EAAE,kBAAkB,CAAC,MAAM,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC;YAC7E,IAAI,uBAAuB,GAAQ,EAAE,CAAC;YACtC,IAAI,oBAAoB,GAAc,MAAO,CAAC,MAAM,CAAC,EAAE,EAAE,IAAI,CAAC,cAAc,CAAC,CAAC;YAC9E,IAAI,kBAAkB,GAAQ,EAAE,CAAC;YAEjC,iEAAiE;YACjE,IAAI,SAAS,KAAK,IAAI,IAAI,SAAS,KAAK,SAAS,EAAE;gBAC/C,MAAM,IAAI,KAAK,CAAC,oFAAoF,CAAC,CAAC;aACzG;YAED,IAAI,MAAM,KAAK,SAAS,EAAE;gBACtB,uBAAuB,CAAC,QAAQ,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;aACpF;YAED,IAAI,mBAAmB,KAAK,SAAS,EAAE;gBACnC,uBAAuB,CAAC,qBAAqB,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,mBAAmB,EAAE,SAAS,CAAC,CAAC;aAC/G;YAED,IAAI,SAAS,KAAK,SAAS,EAAE;gBACzB,uBAAuB,CAAC,UAAU,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,SAAS,EAAE,QAAQ,CAAC,CAAC;aACzF;YAED,IAAI,aAAa,KAAK,SAAS,EAAE;gBAC7B,uBAAuB,CAAC,eAAe,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,aAAa,EAAE,QAAQ,CAAC,CAAC;aAClG;YAED,IAAI,aAAa,KAAK,SAAS,EAAE;gBAC7B,uBAAuB,CAAC,eAAe,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,aAAa,EAAE,QAAQ,CAAC,CAAC;aAClG;YAED,IAAI,KAAK,KAAK,SAAS,EAAE;gBACrB,uBAAuB,CAAC,OAAO,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,KAAK,EAAE,QAAQ,CAAC,CAAC;aAClF;YAED,IAAI,eAAe,KAAK,SAAS,EAAE;gBAC/B,uBAAuB,CAAC,iBAAiB,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,eAAe,EAAE,QAAQ,CAAC,CAAC;aACtG;YAED,IAAI,cAAc,KAAK,SAAS,EAAE;gBAC9B,uBAAuB,CAAC,gBAAgB,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,cAAc,EAAE,QAAQ,CAAC,CAAC;aACpG;YAED,IAAI,KAAK,KAAK,SAAS,EAAE;gBACrB,uBAAuB,CAAC,OAAO,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,KAAK,EAAE,SAAS,CAAC,CAAC;aACnF;YAEK,MAAO,CAAC,MAAM,CAAC,oBAAoB,EAAE,OAAO,CAAC,OAAO,CAAC,CAAC;YAE5D,IAAI,mBAAmB,GAAG,KAAK,CAAC;YAEhC,IAAI,sBAAsB,GAA4B;gBAClD,MAAM,EAAE,KAAK;gBACb,EAAE,EAAE,uBAAuB;gBAC3B,OAAO,EAAE,oBAAoB;gBAC7B,GAAG,EAAE,YAAY;gBACjB,cAAc,EAAE,IAAI,CAAC,eAAe;gBACpC,IAAI,EAAE,IAAI;aACb,CAAC;YAEF,IAAI,qBAAqB,GAAG,OAAO,CAAC,OAAO,EAAE,CAAC;YAC9C,qBAAqB,GAAG,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,eAAe,CAAC,WAAW,CAAC,cAAc,CAAC,sBAAsB,CAAC,CAAC,CAAC;YAElI,qBAAqB,GAAG,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,eAAe,CAAC,OAAO,CAAC,cAAc,CAAC,sBAAsB,CAAC,CAAC,CAAC;YAC9H,OAAO,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE;gBACnC,IAAI,MAAM,CAAC,IAAI,CAAC,kBAAkB,CAAC,CAAC,MAAM,EAAE;oBACxC,IAAI,mBAAmB,EAAE;wBACf,sBAAuB,CAAC,QAAQ,GAAG,kBAAkB,CAAC;qBAC/D;yBAAM;wBACH,sBAAsB,CAAC,IAAI,GAAG,kBAAkB,CAAC;qBACpD;iBACJ;gBACD,OAAO,IAAI,OAAO,CAAwD,CAAC,OAAO,EAAE,MAAM,EAAE,EAAE;oBAC1F,eAAe,CAAC,sBAAsB,EAAE,CAAC,KAAK,EAAE,QAAQ,EAAE,IAAI,EAAE,EAAE;wBAC9D,IAAI,KAAK,EAAE;4BACP,MAAM,CAAC,KAAK,CAAC,CAAC;yBACjB;6BAAM;4BACH,IAAI,GAAG,yBAAgB,CAAC,WAAW,CAAC,IAAI,EAAE,WAAW,CAAC,CAAC;4BACvD,IAAI,QAAQ,CAAC,UAAU,IAAI,QAAQ,CAAC,UAAU,IAAI,GAAG,IAAI,QAAQ,CAAC,UAAU,IAAI,GAAG,EAAE;gCACjF,OAAO,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;6BAC/C;iCAAM;gCACH,MAAM,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;6BAC9C;yBACJ;oBACL,CAAC,CAAC,CAAC;gBACP,CAAC,CAAC,CAAC;YACP,CAAC,CAAC,CAAC;QACP,CAAC;KAAA;IACD;;;;;;;;;OASG;IACU,kBAAkB,CAAE,IAAY,EAAE,SAAiB,EAAE,IAAY,EAAE,MAAe,EAAE,MAAe,EAAE,YAAqB,EAAE,KAAe,EAAE,UAA+C,EAAC,OAAO,EAAE,EAAE,EAAC;;YAClN,MAAM,YAAY,GAAG,IAAI,CAAC,QAAQ,GAAG,mDAAmD;iBACnF,OAAO,CAAC,GAAG,GAAG,MAAM,GAAG,GAAG,EAAE,kBAAkB,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,CAAC;iBAC7D,OAAO,CAAC,GAAG,GAAG,WAAW,GAAG,GAAG,EAAE,kBAAkB,CAAC,MAAM,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC;YAC7E,IAAI,uBAAuB,GAAQ,EAAE,CAAC;YACtC,IAAI,oBAAoB,GAAc,MAAO,CAAC,MAAM,CAAC,EAAE,EAAE,IAAI,CAAC,cAAc,CAAC,CAAC;YAC9E,IAAI,kBAAkB,GAAQ,EAAE,CAAC;YAEjC,4DAA4D;YAC5D,IAAI,IAAI,KAAK,IAAI,IAAI,IAAI,KAAK,SAAS,EAAE;gBACrC,MAAM,IAAI,KAAK,CAAC,gFAAgF,CAAC,CAAC;aACrG;YAED,iEAAiE;YACjE,IAAI,SAAS,KAAK,IAAI,IAAI,SAAS,KAAK,SAAS,EAAE;gBAC/C,MAAM,IAAI,KAAK,CAAC,qFAAqF,CAAC,CAAC;aAC1G;YAED,4DAA4D;YAC5D,IAAI,IAAI,KAAK,IAAI,IAAI,IAAI,KAAK,SAAS,EAAE;gBACrC,MAAM,IAAI,KAAK,CAAC,gFAAgF,CAAC,CAAC;aACrG;YAED,IAAI,MAAM,KAAK,SAAS,EAAE;gBACtB,uBAAuB,CAAC,QAAQ,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;aACpF;YAED,IAAI,MAAM,KAAK,SAAS,EAAE;gBACtB,uBAAuB,CAAC,QAAQ,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;aACpF;YAED,IAAI,YAAY,KAAK,SAAS,EAAE;gBAC5B,uBAAuB,CAAC,cAAc,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,YAAY,EAAE,QAAQ,CAAC,CAAC;aAChG;YAED,IAAI,KAAK,KAAK,SAAS,EAAE;gBACrB,uBAAuB,CAAC,OAAO,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,KAAK,EAAE,SAAS,CAAC,CAAC;aACnF;YAEK,MAAO,CAAC,MAAM,CAAC,oBAAoB,EAAE,OAAO,CAAC,OAAO,CAAC,CAAC;YAE5D,IAAI,mBAAmB,GAAG,KAAK,CAAC;YAEhC,IAAI,sBAAsB,GAA4B;gBAClD,MAAM,EAAE,OAAO;gBACf,EAAE,EAAE,uBAAuB;gBAC3B,OAAO,EAAE,oBAAoB;gBAC7B,GAAG,EAAE,YAAY;gBACjB,cAAc,EAAE,IAAI,CAAC,eAAe;gBACpC,IAAI,EAAE,IAAI;gBACV,IAAI,EAAE,yBAAgB,CAAC,SAAS,CAAC,IAAI,EAAE,QAAQ,CAAC;aACnD,CAAC;YAEF,IAAI,qBAAqB,GAAG,OAAO,CAAC,OAAO,EAAE,CAAC;YAC9C,qBAAqB,GAAG,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,eAAe,CAAC,WAAW,CAAC,cAAc,CAAC,sBAAsB,CAAC,CAAC,CAAC;YAElI,qBAAqB,GAAG,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,eAAe,CAAC,OAAO,CAAC,cAAc,CAAC,sBAAsB,CAAC,CAAC,CAAC;YAC9H,OAAO,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE;gBACnC,IAAI,MAAM,CAAC,IAAI,CAAC,kBAAkB,CAAC,CAAC,MAAM,EAAE;oBACxC,IAAI,mBAAmB,EAAE;wBACf,sBAAuB,CAAC,QAAQ,GAAG,kBAAkB,CAAC;qBAC/D;yBAAM;wBACH,sBAAsB,CAAC,IAAI,GAAG,kBAAkB,CAAC;qBACpD;iBACJ;gBACD,OAAO,IAAI,OAAO,CAAoD,CAAC,OAAO,EAAE,MAAM,EAAE,EAAE;oBACtF,eAAe,CAAC,sBAAsB,EAAE,CAAC,KAAK,EAAE,QAAQ,EAAE,IAAI,EAAE,EAAE;wBAC9D,IAAI,KAAK,EAAE;4BACP,MAAM,CAAC,KAAK,CAAC,CAAC;yBACjB;6BAAM;4BACH,IAAI,GAAG,yBAAgB,CAAC,WAAW,CAAC,IAAI,EAAE,OAAO,CAAC,CAAC;4BACnD,IAAI,QAAQ,CAAC,UAAU,IAAI,QAAQ,CAAC,UAAU,IAAI,GAAG,IAAI,QAAQ,CAAC,UAAU,IAAI,GAAG,EAAE;gCACjF,OAAO,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;6BAC/C;iCAAM;gCACH,MAAM,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;6BAC9C;yBACJ;oBACL,CAAC,CAAC,CAAC;gBACP,CAAC,CAAC,CAAC;YACP,CAAC,CAAC,CAAC;QACP,CAAC;KAAA;IACD;;;;;;;;;OASG;IACU,wBAAwB,CAAE,IAAY,EAAE,SAAiB,EAAE,IAAY,EAAE,MAAe,EAAE,MAAe,EAAE,YAAqB,EAAE,KAAe,EAAE,UAA+C,EAAC,OAAO,EAAE,EAAE,EAAC;;YACxN,MAAM,YAAY,GAAG,IAAI,CAAC,QAAQ,GAAG,0DAA0D;iBAC1F,OAAO,CAAC,GAAG,GAAG,MAAM,GAAG,GAAG,EAAE,kBAAkB,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,CAAC;iBAC7D,OAAO,CAAC,GAAG,GAAG,WAAW,GAAG,GAAG,EAAE,kBAAkB,CAAC,MAAM,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC;YAC7E,IAAI,uBAAuB,GAAQ,EAAE,CAAC;YACtC,IAAI,oBAAoB,GAAc,MAAO,CAAC,MAAM,CAAC,EAAE,EAAE,IAAI,CAAC,cAAc,CAAC,CAAC;YAC9E,IAAI,kBAAkB,GAAQ,EAAE,CAAC;YAEjC,4DAA4D;YAC5D,IAAI,IAAI,KAAK,IAAI,IAAI,IAAI,KAAK,SAAS,EAAE;gBACrC,MAAM,IAAI,KAAK,CAAC,sFAAsF,CAAC,CAAC;aAC3G;YAED,iEAAiE;YACjE,IAAI,SAAS,KAAK,IAAI,IAAI,SAAS,KAAK,SAAS,EAAE;gBAC/C,MAAM,IAAI,KAAK,CAAC,2FAA2F,CAAC,CAAC;aAChH;YAED,4DAA4D;YAC5D,IAAI,IAAI,KAAK,IAAI,IAAI,IAAI,KAAK,SAAS,EAAE;gBACrC,MAAM,IAAI,KAAK,CAAC,sFAAsF,CAAC,CAAC;aAC3G;YAED,IAAI,MAAM,KAAK,SAAS,EAAE;gBACtB,uBAAuB,CAAC,QAAQ,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;aACpF;YAED,IAAI,MAAM,KAAK,SAAS,EAAE;gBACtB,uBAAuB,CAAC,QAAQ,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;aACpF;YAED,IAAI,YAAY,KAAK,SAAS,EAAE;gBAC5B,uBAAuB,CAAC,cAAc,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,YAAY,EAAE,QAAQ,CAAC,CAAC;aAChG;YAED,IAAI,KAAK,KAAK,SAAS,EAAE;gBACrB,uBAAuB,CAAC,OAAO,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,KAAK,EAAE,SAAS,CAAC,CAAC;aACnF;YAEK,MAAO,CAAC,MAAM,CAAC,oBAAoB,EAAE,OAAO,CAAC,OAAO,CAAC,CAAC;YAE5D,IAAI,mBAAmB,GAAG,KAAK,CAAC;YAEhC,IAAI,sBAAsB,GAA4B;gBAClD,MAAM,EAAE,OAAO;gBACf,EAAE,EAAE,uBAAuB;gBAC3B,OAAO,EAAE,oBAAoB;gBAC7B,GAAG,EAAE,YAAY;gBACjB,cAAc,EAAE,IAAI,CAAC,eAAe;gBACpC,IAAI,EAAE,IAAI;gBACV,IAAI,EAAE,yBAAgB,CAAC,SAAS,CAAC,IAAI,EAAE,QAAQ,CAAC;aACnD,CAAC;YAEF,IAAI,qBAAqB,GAAG,OAAO,CAAC,OAAO,EAAE,CAAC;YAC9C,qBAAqB,GAAG,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,eAAe,CAAC,WAAW,CAAC,cAAc,CAAC,sBAAsB,CAAC,CAAC,CAAC;YAElI,qBAAqB,GAAG,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,eAAe,CAAC,OAAO,CAAC,cAAc,CAAC,sBAAsB,CAAC,CAAC,CAAC;YAC9H,OAAO,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE;gBACnC,IAAI,MAAM,CAAC,IAAI,CAAC,kBAAkB,CAAC,CAAC,MAAM,EAAE;oBACxC,IAAI,mBAAmB,EAAE;wBACf,sBAAuB,CAAC,QAAQ,GAAG,kBAAkB,CAAC;qBAC/D;yBAAM;wBACH,sBAAsB,CAAC,IAAI,GAAG,kBAAkB,CAAC;qBACpD;iBACJ;gBACD,OAAO,IAAI,OAAO,CAAoD,CAAC,OAAO,EAAE,MAAM,EAAE,EAAE;oBACtF,eAAe,CAAC,sBAAsB,EAAE,CAAC,KAAK,EAAE,QAAQ,EAAE,IAAI,EAAE,EAAE;wBAC9D,IAAI,KAAK,EAAE;4BACP,MAAM,CAAC,KAAK,CAAC,CAAC;yBACjB;6BAAM;4BACH,IAAI,GAAG,yBAAgB,CAAC,WAAW,CAAC,IAAI,EAAE,OAAO,CAAC,CAAC;4BACnD,IAAI,QAAQ,CAAC,UAAU,IAAI,QAAQ,CAAC,UAAU,IAAI,GAAG,IAAI,QAAQ,CAAC,UAAU,IAAI,GAAG,EAAE;gCACjF,OAAO,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;6BAC/C;iCAAM;gCACH,MAAM,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;6BAC9C;yBACJ;oBACL,CAAC,CAAC,CAAC;gBACP,CAAC,CAAC,CAAC;YACP,CAAC,CAAC,CAAC;QACP,CAAC;KAAA;IACD;;;;;;;OAOG;IACU,iBAAiB,CAAE,IAAY,EAAE,SAAiB,EAAE,MAAe,EAAE,KAAe,EAAE,OAAiB,EAAE,UAA+C,EAAC,OAAO,EAAE,EAAE,EAAC;;YAC9K,MAAM,YAAY,GAAG,IAAI,CAAC,QAAQ,GAAG,mDAAmD;iBACnF,OAAO,CAAC,GAAG,GAAG,MAAM,GAAG,GAAG,EAAE,kBAAkB,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,CAAC;iBAC7D,OAAO,CAAC,GAAG,GAAG,WAAW,GAAG,GAAG,EAAE,kBAAkB,CAAC,MAAM,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC;YAC7E,IAAI,uBAAuB,GAAQ,EAAE,CAAC;YACtC,IAAI,oBAAoB,GAAc,MAAO,CAAC,MAAM,CAAC,EAAE,EAAE,IAAI,CAAC,cAAc,CAAC,CAAC;YAC9E,IAAI,kBAAkB,GAAQ,EAAE,CAAC;YAEjC,4DAA4D;YAC5D,IAAI,IAAI,KAAK,IAAI,IAAI,IAAI,KAAK,SAAS,EAAE;gBACrC,MAAM,IAAI,KAAK,CAAC,+EAA+E,CAAC,CAAC;aACpG;YAED,iEAAiE;YACjE,IAAI,SAAS,KAAK,IAAI,IAAI,SAAS,KAAK,SAAS,EAAE;gBAC/C,MAAM,IAAI,KAAK,CAAC,oFAAoF,CAAC,CAAC;aACzG;YAED,IAAI,MAAM,KAAK,SAAS,EAAE;gBACtB,uBAAuB,CAAC,QAAQ,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;aACpF;YAED,IAAI,KAAK,KAAK,SAAS,EAAE;gBACrB,uBAAuB,CAAC,OAAO,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,KAAK,EAAE,SAAS,CAAC,CAAC;aACnF;YAED,IAAI,OAAO,KAAK,SAAS,EAAE;gBACvB,uBAAuB,CAAC,QAAQ,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,OAAO,EAAE,SAAS,CAAC,CAAC;aACtF;YAEK,MAAO,CAAC,MAAM,CAAC,oBAAoB,EAAE,OAAO,CAAC,OAAO,CAAC,CAAC;YAE5D,IAAI,mBAAmB,GAAG,KAAK,CAAC;YAEhC,IAAI,sBAAsB,GAA4B;gBAClD,MAAM,EAAE,KAAK;gBACb,EAAE,EAAE,uBAAuB;gBAC3B,OAAO,EAAE,oBAAoB;gBAC7B,GAAG,EAAE,YAAY;gBACjB,cAAc,EAAE,IAAI,CAAC,eAAe;gBACpC,IAAI,EAAE,IAAI;aACb,CAAC;YAEF,IAAI,qBAAqB,GAAG,OAAO,CAAC,OAAO,EAAE,CAAC;YAC9C,qBAAqB,GAAG,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,eAAe,CAAC,WAAW,CAAC,cAAc,CAAC,sBAAsB,CAAC,CAAC,CAAC;YAElI,qBAAqB,GAAG,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,eAAe,CAAC,OAAO,CAAC,cAAc,CAAC,sBAAsB,CAAC,CAAC,CAAC;YAC9H,OAAO,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE;gBACnC,IAAI,MAAM,CAAC,IAAI,CAAC,kBAAkB,CAAC,CAAC,MAAM,EAAE;oBACxC,IAAI,mBAAmB,EAAE;wBACf,sBAAuB,CAAC,QAAQ,GAAG,kBAAkB,CAAC;qBAC/D;yBAAM;wBACH,sBAAsB,CAAC,IAAI,GAAG,kBAAkB,CAAC;qBACpD;iBACJ;gBACD,OAAO,IAAI,OAAO,CAAoD,CAAC,OAAO,EAAE,MAAM,EAAE,EAAE;oBACtF,eAAe,CAAC,sBAAsB,EAAE,CAAC,KAAK,EAAE,QAAQ,EAAE,IAAI,EAAE,EAAE;wBAC9D,IAAI,KAAK,EAAE;4BACP,MAAM,CAAC,KAAK,CAAC,CAAC;yBACjB;6BAAM;4BACH,IAAI,GAAG,yBAAgB,CAAC,WAAW,CAAC,IAAI,EAAE,OAAO,CAAC,CAAC;4BACnD,IAAI,QAAQ,CAAC,UAAU,IAAI,QAAQ,CAAC,UAAU,IAAI,GAAG,IAAI,QAAQ,CAAC,UAAU,IAAI,GAAG,EAAE;gCACjF,OAAO,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;6BAC/C;iCAAM;gCACH,MAAM,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;6BAC9C;yBACJ;oBACL,CAAC,CAAC,CAAC;gBACP,CAAC,CAAC,CAAC;YACP,CAAC,CAAC,CAAC;QACP,CAAC;KAAA;IACD;;;;;OAKG;IACU,uBAAuB,CAAE,IAAY,EAAE,SAAiB,EAAE,MAAe,EAAE,UAA+C,EAAC,OAAO,EAAE,EAAE,EAAC;;YAChJ,MAAM,YAAY,GAAG,IAAI,CAAC,QAAQ,GAAG,0DAA0D;iBAC1F,OAAO,CAAC,GAAG,GAAG,MAAM,GAAG,GAAG,EAAE,kBAAkB,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,CAAC;iBAC7D,OAAO,CAAC,GAAG,GAAG,WAAW,GAAG,GAAG,EAAE,kBAAkB,CAAC,MAAM,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC;YAC7E,IAAI,uBAAuB,GAAQ,EAAE,CAAC;YACtC,IAAI,oBAAoB,GAAc,MAAO,CAAC,MAAM,CAAC,EAAE,EAAE,IAAI,CAAC,cAAc,CAAC,CAAC;YAC9E,IAAI,kBAAkB,GAAQ,EAAE,CAAC;YAEjC,4DAA4D;YAC5D,IAAI,IAAI,KAAK,IAAI,IAAI,IAAI,KAAK,SAAS,EAAE;gBACrC,MAAM,IAAI,KAAK,CAAC,qFAAqF,CAAC,CAAC;aAC1G;YAED,iEAAiE;YACjE,IAAI,SAAS,KAAK,IAAI,IAAI,SAAS,KAAK,SAAS,EAAE;gBAC/C,MAAM,IAAI,KAAK,CAAC,0FAA0F,CAAC,CAAC;aAC/G;YAED,IAAI,MAAM,KAAK,SAAS,EAAE;gBACtB,uBAAuB,CAAC,QAAQ,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;aACpF;YAEK,MAAO,CAAC,MAAM,CAAC,oBAAoB,EAAE,OAAO,CAAC,OAAO,CAAC,CAAC;YAE5D,IAAI,mBAAmB,GAAG,KAAK,CAAC;YAEhC,IAAI,sBAAsB,GAA4B;gBAClD,MAAM,EAAE,KAAK;gBACb,EAAE,EAAE,uBAAuB;gBAC3B,OAAO,EAAE,oBAAoB;gBAC7B,GAAG,EAAE,YAAY;gBACjB,cAAc,EAAE,IAAI,CAAC,eAAe;gBACpC,IAAI,EAAE,IAAI;aACb,CAAC;YAEF,IAAI,qBAAqB,GAAG,OAAO,CAAC,OAAO,EAAE,CAAC;YAC9C,qBAAqB,GAAG,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,eAAe,CAAC,WAAW,CAAC,cAAc,CAAC,sBAAsB,CAAC,CAAC,CAAC;YAElI,qBAAqB,GAAG,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,eAAe,CAAC,OAAO,CAAC,cAAc,CAAC,sBAAsB,CAAC,CAAC,CAAC;YAC9H,OAAO,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE;gBACnC,IAAI,MAAM,CAAC,IAAI,CAAC,kBAAkB,CAAC,CAAC,MAAM,EAAE;oBACxC,IAAI,mBAAmB,EAAE;wBACf,sBAAuB,CAAC,QAAQ,GAAG,kBAAkB,CAAC;qBAC/D;yBAAM;wBACH,sBAAsB,CAAC,IAAI,GAAG,kBAAkB,CAAC;qBACpD;iBACJ;gBACD,OAAO,IAAI,OAAO,CAAoD,CAAC,OAAO,EAAE,MAAM,EAAE,EAAE;oBACtF,eAAe,CAAC,sBAAsB,EAAE,CAAC,KAAK,EAAE,QAAQ,EAAE,IAAI,EAAE,EAAE;wBAC9D,IAAI,KAAK,EAAE;4BACP,MAAM,CAAC,KAAK,CAAC,CAAC;yBACjB;6BAAM;4BACH,IAAI,GAAG,yBAAgB,CAAC,WAAW,CAAC,IAAI,EAAE,OAAO,CAAC,CAAC;4BACnD,IAAI,QAAQ,CAAC,UAAU,IAAI,QAAQ,CAAC,UAAU,IAAI,GAAG,IAAI,QAAQ,CAAC,UAAU,IAAI,GAAG,EAAE;gCACjF,OAAO,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;6BAC/C;iCAAM;gCACH,MAAM,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;6BAC9C;yBACJ;oBACL,CAAC,CAAC,CAAC;gBACP,CAAC,CAAC,CAAC;YACP,CAAC,CAAC,CAAC;QACP,CAAC;KAAA;IACD;;;;;;;;OAQG;IACU,oBAAoB,CAAE,IAAY,EAAE,SAAiB,EAAE,IAAW,EAAE,MAAe,EAAE,MAAe,EAAE,YAAqB,EAAE,UAA+C,EAAC,OAAO,EAAE,EAAE,EAAC;;YAClM,MAAM,YAAY,GAAG,IAAI,CAAC,QAAQ,GAAG,mDAAmD;iBACnF,OAAO,CAAC,GAAG,GAAG,MAAM,GAAG,GAAG,EAAE,kBAAkB,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,CAAC;iBAC7D,OAAO,CAAC,GAAG,GAAG,WAAW,GAAG,GAAG,EAAE,kBAAkB,CAAC,MAAM,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC;YAC7E,IAAI,uBAAuB,GAAQ,EAAE,CAAC;YACtC,IAAI,oBAAoB,GAAc,MAAO,CAAC,MAAM,CAAC,EAAE,EAAE,IAAI,CAAC,cAAc,CAAC,CAAC;YAC9E,IAAI,kBAAkB,GAAQ,EAAE,CAAC;YAEjC,4DAA4D;YAC5D,IAAI,IAAI,KAAK,IAAI,IAAI,IAAI,KAAK,SAAS,EAAE;gBACrC,MAAM,IAAI,KAAK,CAAC,kFAAkF,CAAC,CAAC;aACvG;YAED,iEAAiE;YACjE,IAAI,SAAS,KAAK,IAAI,IAAI,SAAS,KAAK,SAAS,EAAE;gBAC/C,MAAM,IAAI,KAAK,CAAC,uFAAuF,CAAC,CAAC;aAC5G;YAED,4DAA4D;YAC5D,IAAI,IAAI,KAAK,IAAI,IAAI,IAAI,KAAK,SAAS,EAAE;gBACrC,MAAM,IAAI,KAAK,CAAC,kFAAkF,CAAC,CAAC;aACvG;YAED,IAAI,MAAM,KAAK,SAAS,EAAE;gBACtB,uBAAuB,CAAC,QAAQ,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;aACpF;YAED,IAAI,MAAM,KAAK,SAAS,EAAE;gBACtB,uBAAuB,CAAC,QAAQ,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;aACpF;YAED,IAAI,YAAY,KAAK,SAAS,EAAE;gBAC5B,uBAAuB,CAAC,cAAc,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,YAAY,EAAE,QAAQ,CAAC,CAAC;aAChG;YAEK,MAAO,CAAC,MAAM,CAAC,oBAAoB,EAAE,OAAO,CAAC,OAAO,CAAC,CAAC;YAE5D,IAAI,mBAAmB,GAAG,KAAK,CAAC;YAEhC,IAAI,sBAAsB,GAA4B;gBAClD,MAAM,EAAE,KAAK;gBACb,EAAE,EAAE,uBAAuB;gBAC3B,OAAO,EAAE,oBAAoB;gBAC7B,GAAG,EAAE,YAAY;gBACjB,cAAc,EAAE,IAAI,CAAC,eAAe;gBACpC,IAAI,EAAE,IAAI;gBACV,IAAI,EAAE,yBAAgB,CAAC,SAAS,CAAC,IAAI,EAAE,OAAO,CAAC;aAClD,CAAC;YAEF,IAAI,qBAAqB,GAAG,OAAO,CAAC,OAAO,EAAE,CAAC;YAC9C,qBAAqB,GAAG,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,eAAe,CAAC,WAAW,CAAC,cAAc,CAAC,sBAAsB,CAAC,CAAC,CAAC;YAElI,qBAAqB,GAAG,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,eAAe,CAAC,OAAO,CAAC,cAAc,CAAC,sBAAsB,CAAC,CAAC,CAAC;YAC9H,OAAO,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE;gBACnC,IAAI,MAAM,CAAC,IAAI,CAAC,kBAAkB,CAAC,CAAC,MAAM,EAAE;oBACxC,IAAI,mBAAmB,EAAE;wBACf,sBAAuB,CAAC,QAAQ,GAAG,kBAAkB,CAAC;qBAC/D;yBAAM;wBACH,sBAAsB,CAAC,IAAI,GAAG,kBAAkB,CAAC;qBACpD;iBACJ;gBACD,OAAO,IAAI,OAAO,CAAoD,CAAC,OAAO,EAAE,MAAM,EAAE,EAAE;oBACtF,eAAe,CAAC,sBAAsB,EAAE,CAAC,KAAK,EAAE,QAAQ,EAAE,IAAI,EAAE,EAAE;wBAC9D,IAAI,KAAK,EAAE;4BACP,MAAM,CAAC,KAAK,CAAC,CAAC;yBACjB;6BAAM;4BACH,IAAI,GAAG,yBAAgB,CAAC,WAAW,CAAC,IAAI,EAAE,OAAO,CAAC,CAAC;4BACnD,IAAI,QAAQ,CAAC,UAAU,IAAI,QAAQ,CAAC,UAAU,IAAI,GAAG,IAAI,QAAQ,CAAC,UAAU,IAAI,GAAG,EAAE;gCACjF,OAAO,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;6BAC/C;iCAAM;gCACH,MAAM,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;6BAC9C;yBACJ;oBACL,CAAC,CAAC,CAAC;gBACP,CAAC,CAAC,CAAC;YACP,CAAC,CAAC,CAAC;QACP,CAAC;KAAA;IACD;;;;;;;;OAQG;IACU,0BAA0B,CAAE,IAAY,EAAE,SAAiB,EAAE,IAAW,EAAE,MAAe,EAAE,MAAe,EAAE,YAAqB,EAAE,UAA+C,EAAC,OAAO,EAAE,EAAE,EAAC;;YACxM,MAAM,YAAY,GAAG,IAAI,CAAC,QAAQ,GAAG,0DAA0D;iBAC1F,OAAO,CAAC,GAAG,GAAG,MAAM,GAAG,GAAG,EAAE,kBAAkB,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,CAAC;iBAC7D,OAAO,CAAC,GAAG,GAAG,WAAW,GAAG,GAAG,EAAE,kBAAkB,CAAC,MAAM,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC;YAC7E,IAAI,uBAAuB,GAAQ,EAAE,CAAC;YACtC,IAAI,oBAAoB,GAAc,MAAO,CAAC,MAAM,CAAC,EAAE,EAAE,IAAI,CAAC,cAAc,CAAC,CAAC;YAC9E,IAAI,kBAAkB,GAAQ,EAAE,CAAC;YAEjC,4DAA4D;YAC5D,IAAI,IAAI,KAAK,IAAI,IAAI,IAAI,KAAK,SAAS,EAAE;gBACrC,MAAM,IAAI,KAAK,CAAC,wFAAwF,CAAC,CAAC;aAC7G;YAED,iEAAiE;YACjE,IAAI,SAAS,KAAK,IAAI,IAAI,SAAS,KAAK,SAAS,EAAE;gBAC/C,MAAM,IAAI,KAAK,CAAC,6FAA6F,CAAC,CAAC;aAClH;YAED,4DAA4D;YAC5D,IAAI,IAAI,KAAK,IAAI,IAAI,IAAI,KAAK,SAAS,EAAE;gBACrC,MAAM,IAAI,KAAK,CAAC,wFAAwF,CAAC,CAAC;aAC7G;YAED,IAAI,MAAM,KAAK,SAAS,EAAE;gBACtB,uBAAuB,CAAC,QAAQ,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;aACpF;YAED,IAAI,MAAM,KAAK,SAAS,EAAE;gBACtB,uBAAuB,CAAC,QAAQ,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;aACpF;YAED,IAAI,YAAY,KAAK,SAAS,EAAE;gBAC5B,uBAAuB,CAAC,cAAc,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,YAAY,EAAE,QAAQ,CAAC,CAAC;aAChG;YAEK,MAAO,CAAC,MAAM,CAAC,oBAAoB,EAAE,OAAO,CAAC,OAAO,CAAC,CAAC;YAE5D,IAAI,mBAAmB,GAAG,KAAK,CAAC;YAEhC,IAAI,sBAAsB,GAA4B;gBAClD,MAAM,EAAE,KAAK;gBACb,EAAE,EAAE,uBAAuB;gBAC3B,OAAO,EAAE,oBAAoB;gBAC7B,GAAG,EAAE,YAAY;gBACjB,cAAc,EAAE,IAAI,CAAC,eAAe;gBACpC,IAAI,EAAE,IAAI;gBACV,IAAI,EAAE,yBAAgB,CAAC,SAAS,CAAC,IAAI,EAAE,OAAO,CAAC;aAClD,CAAC;YAEF,IAAI,qBAAqB,GAAG,OAAO,CAAC,OAAO,EAAE,CAAC;YAC9C,qBAAqB,GAAG,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,eAAe,CAAC,WAAW,CAAC,cAAc,CAAC,sBAAsB,CAAC,CAAC,CAAC;YAElI,qBAAqB,GAAG,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,eAAe,CAAC,OAAO,CAAC,cAAc,CAAC,sBAAsB,CAAC,CAAC,CAAC;YAC9H,OAAO,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE;gBACnC,IAAI,MAAM,CAAC,IAAI,CAAC,kBAAkB,CAAC,CAAC,MAAM,EAAE;oBACxC,IAAI,mBAAmB,EAAE;wBACf,sBAAuB,CAAC,QAAQ,GAAG,kBAAkB,CAAC;qBAC/D;yBAAM;wBACH,sBAAsB,CAAC,IAAI,GAAG,kBAAkB,CAAC;qBACpD;iBACJ;gBACD,OAAO,IAAI,OAAO,CAAoD,CAAC,OAAO,EAAE,MAAM,EAAE,EAAE;oBACtF,eAAe,CAAC,sBAAsB,EAAE,CAAC,KAAK,EAAE,QAAQ,EAAE,IAAI,EAAE,EAAE;wBAC9D,IAAI,KAAK,EAAE;4BACP,MAAM,CAAC,KAAK,CAAC,CAAC;yBACjB;6BAAM;4BACH,IAAI,GAAG,yBAAgB,CAAC,WAAW,CAAC,IAAI,EAAE,OAAO,CAAC,CAAC;4BACnD,IAAI,QAAQ,CAAC,UAAU,IAAI,QAAQ,CAAC,UAAU,IAAI,GAAG,IAAI,QAAQ,CAAC,UAAU,IAAI,GAAG,EAAE;gCACjF,OAAO,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;6BAC/C;iCAAM;gCACH,MAAM,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;6BAC9C;yBACJ;oBACL,CAAC,CAAC,CAAC;gBACP,CAAC,CAAC,CAAC;YACP,CAAC,CAAC,CAAC;QACP,CAAC;KAAA;CACJ;AA9jCD,gCA8jCC"}
\ No newline at end of file
diff --git a/dist/gen/api/batchV1beta1Api.d.ts b/dist/gen/api/batchV1beta1Api.d.ts
new file mode 100644
index 0000000000..c783bb1ea0
--- /dev/null
+++ b/dist/gen/api/batchV1beta1Api.d.ts
@@ -0,0 +1,250 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+///
+import http = require('http');
+import { V1APIResourceList } from '../model/v1APIResourceList';
+import { V1DeleteOptions } from '../model/v1DeleteOptions';
+import { V1Status } from '../model/v1Status';
+import { V1beta1CronJob } from '../model/v1beta1CronJob';
+import { V1beta1CronJobList } from '../model/v1beta1CronJobList';
+import { Authentication } from '../model/models';
+import { ApiKeyAuth } from '../model/models';
+export declare enum BatchV1beta1ApiApiKeys {
+ BearerToken = 0
+}
+export declare class BatchV1beta1Api {
+ protected _basePath: string;
+ protected defaultHeaders: any;
+ protected _useQuerystring: boolean;
+ protected authentications: {
+ 'default': Authentication;
+ 'BearerToken': ApiKeyAuth;
+ };
+ constructor(basePath?: string);
+ useQuerystring: boolean;
+ basePath: string;
+ setDefaultAuthentication(auth: Authentication): void;
+ setApiKey(key: BatchV1beta1ApiApiKeys, value: string): void;
+ /**
+ * create a CronJob
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createNamespacedCronJob(namespace: string, body: V1beta1CronJob, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1CronJob;
+ }>;
+ /**
+ * delete collection of CronJob
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionNamespacedCronJob(namespace: string, pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, dryRun?: string, fieldSelector?: string, gracePeriodSeconds?: number, labelSelector?: string, limit?: number, orphanDependents?: boolean, propagationPolicy?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete a CronJob
+ * @param name name of the CronJob
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteNamespacedCronJob(name: string, namespace: string, pretty?: string, dryRun?: string, gracePeriodSeconds?: number, orphanDependents?: boolean, propagationPolicy?: string, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * get available resources
+ */
+ getAPIResources(options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1APIResourceList;
+ }>;
+ /**
+ * list or watch objects of kind CronJob
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listCronJobForAllNamespaces(allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, pretty?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1CronJobList;
+ }>;
+ /**
+ * list or watch objects of kind CronJob
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listNamespacedCronJob(namespace: string, pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1CronJobList;
+ }>;
+ /**
+ * partially update the specified CronJob
+ * @param name name of the CronJob
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedCronJob(name: string, namespace: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1CronJob;
+ }>;
+ /**
+ * partially update status of the specified CronJob
+ * @param name name of the CronJob
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedCronJobStatus(name: string, namespace: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1CronJob;
+ }>;
+ /**
+ * read the specified CronJob
+ * @param name name of the CronJob
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readNamespacedCronJob(name: string, namespace: string, pretty?: string, exact?: boolean, _export?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1CronJob;
+ }>;
+ /**
+ * read status of the specified CronJob
+ * @param name name of the CronJob
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readNamespacedCronJobStatus(name: string, namespace: string, pretty?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1CronJob;
+ }>;
+ /**
+ * replace the specified CronJob
+ * @param name name of the CronJob
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedCronJob(name: string, namespace: string, body: V1beta1CronJob, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1CronJob;
+ }>;
+ /**
+ * replace status of the specified CronJob
+ * @param name name of the CronJob
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedCronJobStatus(name: string, namespace: string, body: V1beta1CronJob, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1CronJob;
+ }>;
+}
diff --git a/dist/gen/api/batchV1beta1Api.js b/dist/gen/api/batchV1beta1Api.js
new file mode 100644
index 0000000000..00d2cf0690
--- /dev/null
+++ b/dist/gen/api/batchV1beta1Api.js
@@ -0,0 +1,1027 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+const tslib_1 = require("tslib");
+const localVarRequest = require("request");
+const models_1 = require("../model/models");
+const models_2 = require("../model/models");
+let defaultBasePath = 'http://localhost/';
+// ===============================================
+// This file is autogenerated - Please do not edit
+// ===============================================
+var BatchV1beta1ApiApiKeys;
+(function (BatchV1beta1ApiApiKeys) {
+ BatchV1beta1ApiApiKeys[BatchV1beta1ApiApiKeys["BearerToken"] = 0] = "BearerToken";
+})(BatchV1beta1ApiApiKeys = exports.BatchV1beta1ApiApiKeys || (exports.BatchV1beta1ApiApiKeys = {}));
+class BatchV1beta1Api {
+ constructor(basePathOrUsername, password, basePath) {
+ this._basePath = defaultBasePath;
+ this.defaultHeaders = {};
+ this._useQuerystring = false;
+ this.authentications = {
+ 'default': new models_1.VoidAuth(),
+ 'BearerToken': new models_2.ApiKeyAuth('header', 'authorization'),
+ };
+ if (password) {
+ if (basePath) {
+ this.basePath = basePath;
+ }
+ }
+ else {
+ if (basePathOrUsername) {
+ this.basePath = basePathOrUsername;
+ }
+ }
+ }
+ set useQuerystring(value) {
+ this._useQuerystring = value;
+ }
+ set basePath(basePath) {
+ this._basePath = basePath;
+ }
+ get basePath() {
+ return this._basePath;
+ }
+ setDefaultAuthentication(auth) {
+ this.authentications.default = auth;
+ }
+ setApiKey(key, value) {
+ this.authentications[BatchV1beta1ApiApiKeys[key]].apiKey = value;
+ }
+ /**
+ * create a CronJob
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createNamespacedCronJob(namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/batch/v1beta1/namespaces/{namespace}/cronjobs'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling createNamespacedCronJob.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling createNamespacedCronJob.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'POST',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1beta1CronJob")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1CronJob");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete collection of CronJob
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionNamespacedCronJob(namespace, pretty, allowWatchBookmarks, _continue, dryRun, fieldSelector, gracePeriodSeconds, labelSelector, limit, orphanDependents, propagationPolicy, resourceVersion, timeoutSeconds, watch, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/batch/v1beta1/namespaces/{namespace}/cronjobs'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling deleteCollectionNamespacedCronJob.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete a CronJob
+ * @param name name of the CronJob
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteNamespacedCronJob(name, namespace, pretty, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/batch/v1beta1/namespaces/{namespace}/cronjobs/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling deleteNamespacedCronJob.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling deleteNamespacedCronJob.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * get available resources
+ */
+ getAPIResources(options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/batch/v1beta1/';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1APIResourceList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind CronJob
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listCronJobForAllNamespaces(allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, pretty, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/batch/v1beta1/cronjobs';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1CronJobList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind CronJob
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listNamespacedCronJob(namespace, pretty, allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/batch/v1beta1/namespaces/{namespace}/cronjobs'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling listNamespacedCronJob.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1CronJobList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update the specified CronJob
+ * @param name name of the CronJob
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedCronJob(name, namespace, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/batch/v1beta1/namespaces/{namespace}/cronjobs/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchNamespacedCronJob.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling patchNamespacedCronJob.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchNamespacedCronJob.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1CronJob");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update status of the specified CronJob
+ * @param name name of the CronJob
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedCronJobStatus(name, namespace, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/batch/v1beta1/namespaces/{namespace}/cronjobs/{name}/status'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchNamespacedCronJobStatus.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling patchNamespacedCronJobStatus.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchNamespacedCronJobStatus.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1CronJob");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read the specified CronJob
+ * @param name name of the CronJob
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readNamespacedCronJob(name, namespace, pretty, exact, _export, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/batch/v1beta1/namespaces/{namespace}/cronjobs/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readNamespacedCronJob.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling readNamespacedCronJob.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (exact !== undefined) {
+ localVarQueryParameters['exact'] = models_1.ObjectSerializer.serialize(exact, "boolean");
+ }
+ if (_export !== undefined) {
+ localVarQueryParameters['export'] = models_1.ObjectSerializer.serialize(_export, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1CronJob");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read status of the specified CronJob
+ * @param name name of the CronJob
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readNamespacedCronJobStatus(name, namespace, pretty, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/batch/v1beta1/namespaces/{namespace}/cronjobs/{name}/status'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readNamespacedCronJobStatus.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling readNamespacedCronJobStatus.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1CronJob");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace the specified CronJob
+ * @param name name of the CronJob
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedCronJob(name, namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/batch/v1beta1/namespaces/{namespace}/cronjobs/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceNamespacedCronJob.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling replaceNamespacedCronJob.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceNamespacedCronJob.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1beta1CronJob")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1CronJob");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace status of the specified CronJob
+ * @param name name of the CronJob
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedCronJobStatus(name, namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/batch/v1beta1/namespaces/{namespace}/cronjobs/{name}/status'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceNamespacedCronJobStatus.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling replaceNamespacedCronJobStatus.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceNamespacedCronJobStatus.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1beta1CronJob")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1CronJob");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+}
+exports.BatchV1beta1Api = BatchV1beta1Api;
+//# sourceMappingURL=batchV1beta1Api.js.map
\ No newline at end of file
diff --git a/dist/gen/api/batchV1beta1Api.js.map b/dist/gen/api/batchV1beta1Api.js.map
new file mode 100644
index 0000000000..c387da7bb8
--- /dev/null
+++ b/dist/gen/api/batchV1beta1Api.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"batchV1beta1Api.js","sourceRoot":"","sources":["../../../src/gen/api/batchV1beta1Api.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;;AAEH,2CAA4C;AAU5C,4CAA6E;AAC7E,4CAA6C;AAE7C,IAAI,eAAe,GAAG,kBAAkB,CAAC;AAEzC,kDAAkD;AAClD,kDAAkD;AAClD,kDAAkD;AAElD,IAAY,sBAEX;AAFD,WAAY,sBAAsB;IAC9B,iFAAW,CAAA;AACf,CAAC,EAFW,sBAAsB,GAAtB,8BAAsB,KAAtB,8BAAsB,QAEjC;AAED,MAAa,eAAe;IAWxB,YAAY,kBAA0B,EAAE,QAAiB,EAAE,QAAiB;QAVlE,cAAS,GAAG,eAAe,CAAC;QAC5B,mBAAc,GAAS,EAAE,CAAC;QAC1B,oBAAe,GAAa,KAAK,CAAC;QAElC,oBAAe,GAAG;YACxB,SAAS,EAAkB,IAAI,iBAAQ,EAAE;YACzC,aAAa,EAAE,IAAI,mBAAU,CAAC,QAAQ,EAAE,eAAe,CAAC;SAC3D,CAAA;QAIG,IAAI,QAAQ,EAAE;YACV,IAAI,QAAQ,EAAE;gBACV,IAAI,CAAC,QAAQ,GAAG,QAAQ,CAAC;aAC5B;SACJ;aAAM;YACH,IAAI,kBAAkB,EAAE;gBACpB,IAAI,CAAC,QAAQ,GAAG,kBAAkB,CAAA;aACrC;SACJ;IACL,CAAC;IAED,IAAI,cAAc,CAAC,KAAc;QAC7B,IAAI,CAAC,eAAe,GAAG,KAAK,CAAC;IACjC,CAAC;IAED,IAAI,QAAQ,CAAC,QAAgB;QACzB,IAAI,CAAC,SAAS,GAAG,QAAQ,CAAC;IAC9B,CAAC;IAED,IAAI,QAAQ;QACR,OAAO,IAAI,CAAC,SAAS,CAAC;IAC1B,CAAC;IAEM,wBAAwB,CAAC,IAAoB;QAChD,IAAI,CAAC,eAAe,CAAC,OAAO,GAAG,IAAI,CAAC;IACxC,CAAC;IAEM,SAAS,CAAC,GAA2B,EAAE,KAAa;QACtD,IAAI,CAAC,eAAuB,CAAC,sBAAsB,CAAC,GAAG,CAAC,CAAC,CAAC,MAAM,GAAG,KAAK,CAAC;IAC9E,CAAC;IAED;;;;;;;OAOG;IACU,uBAAuB,CAAE,SAAiB,EAAE,IAAoB,EAAE,MAAe,EAAE,MAAe,EAAE,YAAqB,EAAE,UAA+C,EAAC,OAAO,EAAE,EAAE,EAAC;;YAChM,MAAM,YAAY,GAAG,IAAI,CAAC,QAAQ,GAAG,qDAAqD;iBACrF,OAAO,CAAC,GAAG,GAAG,WAAW,GAAG,GAAG,EAAE,kBAAkB,CAAC,MAAM,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC;YAC7E,IAAI,uBAAuB,GAAQ,EAAE,CAAC;YACtC,IAAI,oBAAoB,GAAc,MAAO,CAAC,MAAM,CAAC,EAAE,EAAE,IAAI,CAAC,cAAc,CAAC,CAAC;YAC9E,IAAI,kBAAkB,GAAQ,EAAE,CAAC;YAEjC,iEAAiE;YACjE,IAAI,SAAS,KAAK,IAAI,IAAI,SAAS,KAAK,SAAS,EAAE;gBAC/C,MAAM,IAAI,KAAK,CAAC,0FAA0F,CAAC,CAAC;aAC/G;YAED,4DAA4D;YAC5D,IAAI,IAAI,KAAK,IAAI,IAAI,IAAI,KAAK,SAAS,EAAE;gBACrC,MAAM,IAAI,KAAK,CAAC,qFAAqF,CAAC,CAAC;aAC1G;YAED,IAAI,MAAM,KAAK,SAAS,EAAE;gBACtB,uBAAuB,CAAC,QAAQ,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;aACpF;YAED,IAAI,MAAM,KAAK,SAAS,EAAE;gBACtB,uBAAuB,CAAC,QAAQ,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;aACpF;YAED,IAAI,YAAY,KAAK,SAAS,EAAE;gBAC5B,uBAAuB,CAAC,cAAc,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,YAAY,EAAE,QAAQ,CAAC,CAAC;aAChG;YAEK,MAAO,CAAC,MAAM,CAAC,oBAAoB,EAAE,OAAO,CAAC,OAAO,CAAC,CAAC;YAE5D,IAAI,mBAAmB,GAAG,KAAK,CAAC;YAEhC,IAAI,sBAAsB,GAA4B;gBAClD,MAAM,EAAE,MAAM;gBACd,EAAE,EAAE,uBAAuB;gBAC3B,OAAO,EAAE,oBAAoB;gBAC7B,GAAG,EAAE,YAAY;gBACjB,cAAc,EAAE,IAAI,CAAC,eAAe;gBACpC,IAAI,EAAE,IAAI;gBACV,IAAI,EAAE,yBAAgB,CAAC,SAAS,CAAC,IAAI,EAAE,gBAAgB,CAAC;aAC3D,CAAC;YAEF,IAAI,qBAAqB,GAAG,OAAO,CAAC,OAAO,EAAE,CAAC;YAC9C,qBAAqB,GAAG,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,eAAe,CAAC,WAAW,CAAC,cAAc,CAAC,sBAAsB,CAAC,CAAC,CAAC;YAElI,qBAAqB,GAAG,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,eAAe,CAAC,OAAO,CAAC,cAAc,CAAC,sBAAsB,CAAC,CAAC,CAAC;YAC9H,OAAO,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE;gBACnC,IAAI,MAAM,CAAC,IAAI,CAAC,kBAAkB,CAAC,CAAC,MAAM,EAAE;oBACxC,IAAI,mBAAmB,EAAE;wBACf,sBAAuB,CAAC,QAAQ,GAAG,kBAAkB,CAAC;qBAC/D;yBAAM;wBACH,sBAAsB,CAAC,IAAI,GAAG,kBAAkB,CAAC;qBACpD;iBACJ;gBACD,OAAO,IAAI,OAAO,CAA6D,CAAC,OAAO,EAAE,MAAM,EAAE,EAAE;oBAC/F,eAAe,CAAC,sBAAsB,EAAE,CAAC,KAAK,EAAE,QAAQ,EAAE,IAAI,EAAE,EAAE;wBAC9D,IAAI,KAAK,EAAE;4BACP,MAAM,CAAC,KAAK,CAAC,CAAC;yBACjB;6BAAM;4BACH,IAAI,GAAG,yBAAgB,CAAC,WAAW,CAAC,IAAI,EAAE,gBAAgB,CAAC,CAAC;4BAC5D,IAAI,QAAQ,CAAC,UAAU,IAAI,QAAQ,CAAC,UAAU,IAAI,GAAG,IAAI,QAAQ,CAAC,UAAU,IAAI,GAAG,EAAE;gCACjF,OAAO,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;6BAC/C;iCAAM;gCACH,MAAM,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;6BAC9C;yBACJ;oBACL,CAAC,CAAC,CAAC;gBACP,CAAC,CAAC,CAAC;YACP,CAAC,CAAC,CAAC;QACP,CAAC;KAAA;IACD;;;;;;;;;;;;;;;;;OAiBG;IACU,iCAAiC,CAAE,SAAiB,EAAE,MAAe,EAAE,mBAA6B,EAAE,SAAkB,EAAE,MAAe,EAAE,aAAsB,EAAE,kBAA2B,EAAE,aAAsB,EAAE,KAAc,EAAE,gBAA0B,EAAE,iBAA0B,EAAE,eAAwB,EAAE,cAAuB,EAAE,KAAe,EAAE,IAAsB,EAAE,UAA+C,EAAC,OAAO,EAAE,EAAE,EAAC;;YACjc,MAAM,YAAY,GAAG,IAAI,CAAC,QAAQ,GAAG,qDAAqD;iBACrF,OAAO,CAAC,GAAG,GAAG,WAAW,GAAG,GAAG,EAAE,kBAAkB,CAAC,MAAM,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC;YAC7E,IAAI,uBAAuB,GAAQ,EAAE,CAAC;YACtC,IAAI,oBAAoB,GAAc,MAAO,CAAC,MAAM,CAAC,EAAE,EAAE,IAAI,CAAC,cAAc,CAAC,CAAC;YAC9E,IAAI,kBAAkB,GAAQ,EAAE,CAAC;YAEjC,iEAAiE;YACjE,IAAI,SAAS,KAAK,IAAI,IAAI,SAAS,KAAK,SAAS,EAAE;gBAC/C,MAAM,IAAI,KAAK,CAAC,oGAAoG,CAAC,CAAC;aACzH;YAED,IAAI,MAAM,KAAK,SAAS,EAAE;gBACtB,uBAAuB,CAAC,QAAQ,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;aACpF;YAED,IAAI,mBAAmB,KAAK,SAAS,EAAE;gBACnC,uBAAuB,CAAC,qBAAqB,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,mBAAmB,EAAE,SAAS,CAAC,CAAC;aAC/G;YAED,IAAI,SAAS,KAAK,SAAS,EAAE;gBACzB,uBAAuB,CAAC,UAAU,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,SAAS,EAAE,QAAQ,CAAC,CAAC;aACzF;YAED,IAAI,MAAM,KAAK,SAAS,EAAE;gBACtB,uBAAuB,CAAC,QAAQ,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;aACpF;YAED,IAAI,aAAa,KAAK,SAAS,EAAE;gBAC7B,uBAAuB,CAAC,eAAe,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,aAAa,EAAE,QAAQ,CAAC,CAAC;aAClG;YAED,IAAI,kBAAkB,KAAK,SAAS,EAAE;gBAClC,uBAAuB,CAAC,oBAAoB,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,kBAAkB,EAAE,QAAQ,CAAC,CAAC;aAC5G;YAED,IAAI,aAAa,KAAK,SAAS,EAAE;gBAC7B,uBAAuB,CAAC,eAAe,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,aAAa,EAAE,QAAQ,CAAC,CAAC;aAClG;YAED,IAAI,KAAK,KAAK,SAAS,EAAE;gBACrB,uBAAuB,CAAC,OAAO,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,KAAK,EAAE,QAAQ,CAAC,CAAC;aAClF;YAED,IAAI,gBAAgB,KAAK,SAAS,EAAE;gBAChC,uBAAuB,CAAC,kBAAkB,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,gBAAgB,EAAE,SAAS,CAAC,CAAC;aACzG;YAED,IAAI,iBAAiB,KAAK,SAAS,EAAE;gBACjC,uBAAuB,CAAC,mBAAmB,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,iBAAiB,EAAE,QAAQ,CAAC,CAAC;aAC1G;YAED,IAAI,eAAe,KAAK,SAAS,EAAE;gBAC/B,uBAAuB,CAAC,iBAAiB,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,eAAe,EAAE,QAAQ,CAAC,CAAC;aACtG;YAED,IAAI,cAAc,KAAK,SAAS,EAAE;gBAC9B,uBAAuB,CAAC,gBAAgB,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,cAAc,EAAE,QAAQ,CAAC,CAAC;aACpG;YAED,IAAI,KAAK,KAAK,SAAS,EAAE;gBACrB,uBAAuB,CAAC,OAAO,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,KAAK,EAAE,SAAS,CAAC,CAAC;aACnF;YAEK,MAAO,CAAC,MAAM,CAAC,oBAAoB,EAAE,OAAO,CAAC,OAAO,CAAC,CAAC;YAE5D,IAAI,mBAAmB,GAAG,KAAK,CAAC;YAEhC,IAAI,sBAAsB,GAA4B;gBAClD,MAAM,EAAE,QAAQ;gBAChB,EAAE,EAAE,uBAAuB;gBAC3B,OAAO,EAAE,oBAAoB;gBAC7B,GAAG,EAAE,YAAY;gBACjB,cAAc,EAAE,IAAI,CAAC,eAAe;gBACpC,IAAI,EAAE,IAAI;gBACV,IAAI,EAAE,yBAAgB,CAAC,SAAS,CAAC,IAAI,EAAE,iBAAiB,CAAC;aAC5D,CAAC;YAEF,IAAI,qBAAqB,GAAG,OAAO,CAAC,OAAO,EAAE,CAAC;YAC9C,qBAAqB,GAAG,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,eAAe,CAAC,WAAW,CAAC,cAAc,CAAC,sBAAsB,CAAC,CAAC,CAAC;YAElI,qBAAqB,GAAG,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,eAAe,CAAC,OAAO,CAAC,cAAc,CAAC,sBAAsB,CAAC,CAAC,CAAC;YAC9H,OAAO,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE;gBACnC,IAAI,MAAM,CAAC,IAAI,CAAC,kBAAkB,CAAC,CAAC,MAAM,EAAE;oBACxC,IAAI,mBAAmB,EAAE;wBACf,sBAAuB,CAAC,QAAQ,GAAG,kBAAkB,CAAC;qBAC/D;yBAAM;wBACH,sBAAsB,CAAC,IAAI,GAAG,kBAAkB,CAAC;qBACpD;iBACJ;gBACD,OAAO,IAAI,OAAO,CAAuD,CAAC,OAAO,EAAE,MAAM,EAAE,EAAE;oBACzF,eAAe,CAAC,sBAAsB,EAAE,CAAC,KAAK,EAAE,QAAQ,EAAE,IAAI,EAAE,EAAE;wBAC9D,IAAI,KAAK,EAAE;4BACP,MAAM,CAAC,KAAK,CAAC,CAAC;yBACjB;6BAAM;4BACH,IAAI,GAAG,yBAAgB,CAAC,WAAW,CAAC,IAAI,EAAE,UAAU,CAAC,CAAC;4BACtD,IAAI,QAAQ,CAAC,UAAU,IAAI,QAAQ,CAAC,UAAU,IAAI,GAAG,IAAI,QAAQ,CAAC,UAAU,IAAI,GAAG,EAAE;gCACjF,OAAO,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;6BAC/C;iCAAM;gCACH,MAAM,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;6BAC9C;yBACJ;oBACL,CAAC,CAAC,CAAC;gBACP,CAAC,CAAC,CAAC;YACP,CAAC,CAAC,CAAC;QACP,CAAC;KAAA;IACD;;;;;;;;;;OAUG;IACU,uBAAuB,CAAE,IAAY,EAAE,SAAiB,EAAE,MAAe,EAAE,MAAe,EAAE,kBAA2B,EAAE,gBAA0B,EAAE,iBAA0B,EAAE,IAAsB,EAAE,UAA+C,EAAC,OAAO,EAAE,EAAE,EAAC;;YAC9Q,MAAM,YAAY,GAAG,IAAI,CAAC,QAAQ,GAAG,4DAA4D;iBAC5F,OAAO,CAAC,GAAG,GAAG,MAAM,GAAG,GAAG,EAAE,kBAAkB,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,CAAC;iBAC7D,OAAO,CAAC,GAAG,GAAG,WAAW,GAAG,GAAG,EAAE,kBAAkB,CAAC,MAAM,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC;YAC7E,IAAI,uBAAuB,GAAQ,EAAE,CAAC;YACtC,IAAI,oBAAoB,GAAc,MAAO,CAAC,MAAM,CAAC,EAAE,EAAE,IAAI,CAAC,cAAc,CAAC,CAAC;YAC9E,IAAI,kBAAkB,GAAQ,EAAE,CAAC;YAEjC,4DAA4D;YAC5D,IAAI,IAAI,KAAK,IAAI,IAAI,IAAI,KAAK,SAAS,EAAE;gBACrC,MAAM,IAAI,KAAK,CAAC,qFAAqF,CAAC,CAAC;aAC1G;YAED,iEAAiE;YACjE,IAAI,SAAS,KAAK,IAAI,IAAI,SAAS,KAAK,SAAS,EAAE;gBAC/C,MAAM,IAAI,KAAK,CAAC,0FAA0F,CAAC,CAAC;aAC/G;YAED,IAAI,MAAM,KAAK,SAAS,EAAE;gBACtB,uBAAuB,CAAC,QAAQ,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;aACpF;YAED,IAAI,MAAM,KAAK,SAAS,EAAE;gBACtB,uBAAuB,CAAC,QAAQ,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;aACpF;YAED,IAAI,kBAAkB,KAAK,SAAS,EAAE;gBAClC,uBAAuB,CAAC,oBAAoB,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,kBAAkB,EAAE,QAAQ,CAAC,CAAC;aAC5G;YAED,IAAI,gBAAgB,KAAK,SAAS,EAAE;gBAChC,uBAAuB,CAAC,kBAAkB,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,gBAAgB,EAAE,SAAS,CAAC,CAAC;aACzG;YAED,IAAI,iBAAiB,KAAK,SAAS,EAAE;gBACjC,uBAAuB,CAAC,mBAAmB,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,iBAAiB,EAAE,QAAQ,CAAC,CAAC;aAC1G;YAEK,MAAO,CAAC,MAAM,CAAC,oBAAoB,EAAE,OAAO,CAAC,OAAO,CAAC,CAAC;YAE5D,IAAI,mBAAmB,GAAG,KAAK,CAAC;YAEhC,IAAI,sBAAsB,GAA4B;gBAClD,MAAM,EAAE,QAAQ;gBAChB,EAAE,EAAE,uBAAuB;gBAC3B,OAAO,EAAE,oBAAoB;gBAC7B,GAAG,EAAE,YAAY;gBACjB,cAAc,EAAE,IAAI,CAAC,eAAe;gBACpC,IAAI,EAAE,IAAI;gBACV,IAAI,EAAE,yBAAgB,CAAC,SAAS,CAAC,IAAI,EAAE,iBAAiB,CAAC;aAC5D,CAAC;YAEF,IAAI,qBAAqB,GAAG,OAAO,CAAC,OAAO,EAAE,CAAC;YAC9C,qBAAqB,GAAG,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,eAAe,CAAC,WAAW,CAAC,cAAc,CAAC,sBAAsB,CAAC,CAAC,CAAC;YAElI,qBAAqB,GAAG,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,eAAe,CAAC,OAAO,CAAC,cAAc,CAAC,sBAAsB,CAAC,CAAC,CAAC;YAC9H,OAAO,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE;gBACnC,IAAI,MAAM,CAAC,IAAI,CAAC,kBAAkB,CAAC,CAAC,MAAM,EAAE;oBACxC,IAAI,mBAAmB,EAAE;wBACf,sBAAuB,CAAC,QAAQ,GAAG,kBAAkB,CAAC;qBAC/D;yBAAM;wBACH,sBAAsB,CAAC,IAAI,GAAG,kBAAkB,CAAC;qBACpD;iBACJ;gBACD,OAAO,IAAI,OAAO,CAAuD,CAAC,OAAO,EAAE,MAAM,EAAE,EAAE;oBACzF,eAAe,CAAC,sBAAsB,EAAE,CAAC,KAAK,EAAE,QAAQ,EAAE,IAAI,EAAE,EAAE;wBAC9D,IAAI,KAAK,EAAE;4BACP,MAAM,CAAC,KAAK,CAAC,CAAC;yBACjB;6BAAM;4BACH,IAAI,GAAG,yBAAgB,CAAC,WAAW,CAAC,IAAI,EAAE,UAAU,CAAC,CAAC;4BACtD,IAAI,QAAQ,CAAC,UAAU,IAAI,QAAQ,CAAC,UAAU,IAAI,GAAG,IAAI,QAAQ,CAAC,UAAU,IAAI,GAAG,EAAE;gCACjF,OAAO,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;6BAC/C;iCAAM;gCACH,MAAM,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;6BAC9C;yBACJ;oBACL,CAAC,CAAC,CAAC;gBACP,CAAC,CAAC,CAAC;YACP,CAAC,CAAC,CAAC;QACP,CAAC;KAAA;IACD;;OAEG;IACU,eAAe,CAAE,UAA+C,EAAC,OAAO,EAAE,EAAE,EAAC;;YACtF,MAAM,YAAY,GAAG,IAAI,CAAC,QAAQ,GAAG,sBAAsB,CAAC;YAC5D,IAAI,uBAAuB,GAAQ,EAAE,CAAC;YACtC,IAAI,oBAAoB,GAAc,MAAO,CAAC,MAAM,CAAC,EAAE,EAAE,IAAI,CAAC,cAAc,CAAC,CAAC;YAC9E,IAAI,kBAAkB,GAAQ,EAAE,CAAC;YAE3B,MAAO,CAAC,MAAM,CAAC,oBAAoB,EAAE,OAAO,CAAC,OAAO,CAAC,CAAC;YAE5D,IAAI,mBAAmB,GAAG,KAAK,CAAC;YAEhC,IAAI,sBAAsB,GAA4B;gBAClD,MAAM,EAAE,KAAK;gBACb,EAAE,EAAE,uBAAuB;gBAC3B,OAAO,EAAE,oBAAoB;gBAC7B,GAAG,EAAE,YAAY;gBACjB,cAAc,EAAE,IAAI,CAAC,eAAe;gBACpC,IAAI,EAAE,IAAI;aACb,CAAC;YAEF,IAAI,qBAAqB,GAAG,OAAO,CAAC,OAAO,EAAE,CAAC;YAC9C,qBAAqB,GAAG,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,eAAe,CAAC,WAAW,CAAC,cAAc,CAAC,sBAAsB,CAAC,CAAC,CAAC;YAElI,qBAAqB,GAAG,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,eAAe,CAAC,OAAO,CAAC,cAAc,CAAC,sBAAsB,CAAC,CAAC,CAAC;YAC9H,OAAO,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE;gBACnC,IAAI,MAAM,CAAC,IAAI,CAAC,kBAAkB,CAAC,CAAC,MAAM,EAAE;oBACxC,IAAI,mBAAmB,EAAE;wBACf,sBAAuB,CAAC,QAAQ,GAAG,kBAAkB,CAAC;qBAC/D;yBAAM;wBACH,sBAAsB,CAAC,IAAI,GAAG,kBAAkB,CAAC;qBACpD;iBACJ;gBACD,OAAO,IAAI,OAAO,CAAgE,CAAC,OAAO,EAAE,MAAM,EAAE,EAAE;oBAClG,eAAe,CAAC,sBAAsB,EAAE,CAAC,KAAK,EAAE,QAAQ,EAAE,IAAI,EAAE,EAAE;wBAC9D,IAAI,KAAK,EAAE;4BACP,MAAM,CAAC,KAAK,CAAC,CAAC;yBACjB;6BAAM;4BACH,IAAI,GAAG,yBAAgB,CAAC,WAAW,CAAC,IAAI,EAAE,mBAAmB,CAAC,CAAC;4BAC/D,IAAI,QAAQ,CAAC,UAAU,IAAI,QAAQ,CAAC,UAAU,IAAI,GAAG,IAAI,QAAQ,CAAC,UAAU,IAAI,GAAG,EAAE;gCACjF,OAAO,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;6BAC/C;iCAAM;gCACH,MAAM,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;6BAC9C;yBACJ;oBACL,CAAC,CAAC,CAAC;gBACP,CAAC,CAAC,CAAC;YACP,CAAC,CAAC,CAAC;QACP,CAAC;KAAA;IACD;;;;;;;;;;;OAWG;IACU,2BAA2B,CAAE,mBAA6B,EAAE,SAAkB,EAAE,aAAsB,EAAE,aAAsB,EAAE,KAAc,EAAE,MAAe,EAAE,eAAwB,EAAE,cAAuB,EAAE,KAAe,EAAE,UAA+C,EAAC,OAAO,EAAE,EAAE,EAAC;;YAC1S,MAAM,YAAY,GAAG,IAAI,CAAC,QAAQ,GAAG,8BAA8B,CAAC;YACpE,IAAI,uBAAuB,GAAQ,EAAE,CAAC;YACtC,IAAI,oBAAoB,GAAc,MAAO,CAAC,MAAM,CAAC,EAAE,EAAE,IAAI,CAAC,cAAc,CAAC,CAAC;YAC9E,IAAI,kBAAkB,GAAQ,EAAE,CAAC;YAEjC,IAAI,mBAAmB,KAAK,SAAS,EAAE;gBACnC,uBAAuB,CAAC,qBAAqB,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,mBAAmB,EAAE,SAAS,CAAC,CAAC;aAC/G;YAED,IAAI,SAAS,KAAK,SAAS,EAAE;gBACzB,uBAAuB,CAAC,UAAU,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,SAAS,EAAE,QAAQ,CAAC,CAAC;aACzF;YAED,IAAI,aAAa,KAAK,SAAS,EAAE;gBAC7B,uBAAuB,CAAC,eAAe,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,aAAa,EAAE,QAAQ,CAAC,CAAC;aAClG;YAED,IAAI,aAAa,KAAK,SAAS,EAAE;gBAC7B,uBAAuB,CAAC,eAAe,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,aAAa,EAAE,QAAQ,CAAC,CAAC;aAClG;YAED,IAAI,KAAK,KAAK,SAAS,EAAE;gBACrB,uBAAuB,CAAC,OAAO,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,KAAK,EAAE,QAAQ,CAAC,CAAC;aAClF;YAED,IAAI,MAAM,KAAK,SAAS,EAAE;gBACtB,uBAAuB,CAAC,QAAQ,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;aACpF;YAED,IAAI,eAAe,KAAK,SAAS,EAAE;gBAC/B,uBAAuB,CAAC,iBAAiB,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,eAAe,EAAE,QAAQ,CAAC,CAAC;aACtG;YAED,IAAI,cAAc,KAAK,SAAS,EAAE;gBAC9B,uBAAuB,CAAC,gBAAgB,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,cAAc,EAAE,QAAQ,CAAC,CAAC;aACpG;YAED,IAAI,KAAK,KAAK,SAAS,EAAE;gBACrB,uBAAuB,CAAC,OAAO,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,KAAK,EAAE,SAAS,CAAC,CAAC;aACnF;YAEK,MAAO,CAAC,MAAM,CAAC,oBAAoB,EAAE,OAAO,CAAC,OAAO,CAAC,CAAC;YAE5D,IAAI,mBAAmB,GAAG,KAAK,CAAC;YAEhC,IAAI,sBAAsB,GAA4B;gBAClD,MAAM,EAAE,KAAK;gBACb,EAAE,EAAE,uBAAuB;gBAC3B,OAAO,EAAE,oBAAoB;gBAC7B,GAAG,EAAE,YAAY;gBACjB,cAAc,EAAE,IAAI,CAAC,eAAe;gBACpC,IAAI,EAAE,IAAI;aACb,CAAC;YAEF,IAAI,qBAAqB,GAAG,OAAO,CAAC,OAAO,EAAE,CAAC;YAC9C,qBAAqB,GAAG,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,eAAe,CAAC,WAAW,CAAC,cAAc,CAAC,sBAAsB,CAAC,CAAC,CAAC;YAElI,qBAAqB,GAAG,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,eAAe,CAAC,OAAO,CAAC,cAAc,CAAC,sBAAsB,CAAC,CAAC,CAAC;YAC9H,OAAO,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE;gBACnC,IAAI,MAAM,CAAC,IAAI,CAAC,kBAAkB,CAAC,CAAC,MAAM,EAAE;oBACxC,IAAI,mBAAmB,EAAE;wBACf,sBAAuB,CAAC,QAAQ,GAAG,kBAAkB,CAAC;qBAC/D;yBAAM;wBACH,sBAAsB,CAAC,IAAI,GAAG,kBAAkB,CAAC;qBACpD;iBACJ;gBACD,OAAO,IAAI,OAAO,CAAiE,CAAC,OAAO,EAAE,MAAM,EAAE,EAAE;oBACnG,eAAe,CAAC,sBAAsB,EAAE,CAAC,KAAK,EAAE,QAAQ,EAAE,IAAI,EAAE,EAAE;wBAC9D,IAAI,KAAK,EAAE;4BACP,MAAM,CAAC,KAAK,CAAC,CAAC;yBACjB;6BAAM;4BACH,IAAI,GAAG,yBAAgB,CAAC,WAAW,CAAC,IAAI,EAAE,oBAAoB,CAAC,CAAC;4BAChE,IAAI,QAAQ,CAAC,UAAU,IAAI,QAAQ,CAAC,UAAU,IAAI,GAAG,IAAI,QAAQ,CAAC,UAAU,IAAI,GAAG,EAAE;gCACjF,OAAO,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;6BAC/C;iCAAM;gCACH,MAAM,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;6BAC9C;yBACJ;oBACL,CAAC,CAAC,CAAC;gBACP,CAAC,CAAC,CAAC;YACP,CAAC,CAAC,CAAC;QACP,CAAC;KAAA;IACD;;;;;;;;;;;;OAYG;IACU,qBAAqB,CAAE,SAAiB,EAAE,MAAe,EAAE,mBAA6B,EAAE,SAAkB,EAAE,aAAsB,EAAE,aAAsB,EAAE,KAAc,EAAE,eAAwB,EAAE,cAAuB,EAAE,KAAe,EAAE,UAA+C,EAAC,OAAO,EAAE,EAAE,EAAC;;YACvT,MAAM,YAAY,GAAG,IAAI,CAAC,QAAQ,GAAG,qDAAqD;iBACrF,OAAO,CAAC,GAAG,GAAG,WAAW,GAAG,GAAG,EAAE,kBAAkB,CAAC,MAAM,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC;YAC7E,IAAI,uBAAuB,GAAQ,EAAE,CAAC;YACtC,IAAI,oBAAoB,GAAc,MAAO,CAAC,MAAM,CAAC,EAAE,EAAE,IAAI,CAAC,cAAc,CAAC,CAAC;YAC9E,IAAI,kBAAkB,GAAQ,EAAE,CAAC;YAEjC,iEAAiE;YACjE,IAAI,SAAS,KAAK,IAAI,IAAI,SAAS,KAAK,SAAS,EAAE;gBAC/C,MAAM,IAAI,KAAK,CAAC,wFAAwF,CAAC,CAAC;aAC7G;YAED,IAAI,MAAM,KAAK,SAAS,EAAE;gBACtB,uBAAuB,CAAC,QAAQ,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;aACpF;YAED,IAAI,mBAAmB,KAAK,SAAS,EAAE;gBACnC,uBAAuB,CAAC,qBAAqB,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,mBAAmB,EAAE,SAAS,CAAC,CAAC;aAC/G;YAED,IAAI,SAAS,KAAK,SAAS,EAAE;gBACzB,uBAAuB,CAAC,UAAU,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,SAAS,EAAE,QAAQ,CAAC,CAAC;aACzF;YAED,IAAI,aAAa,KAAK,SAAS,EAAE;gBAC7B,uBAAuB,CAAC,eAAe,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,aAAa,EAAE,QAAQ,CAAC,CAAC;aAClG;YAED,IAAI,aAAa,KAAK,SAAS,EAAE;gBAC7B,uBAAuB,CAAC,eAAe,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,aAAa,EAAE,QAAQ,CAAC,CAAC;aAClG;YAED,IAAI,KAAK,KAAK,SAAS,EAAE;gBACrB,uBAAuB,CAAC,OAAO,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,KAAK,EAAE,QAAQ,CAAC,CAAC;aAClF;YAED,IAAI,eAAe,KAAK,SAAS,EAAE;gBAC/B,uBAAuB,CAAC,iBAAiB,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,eAAe,EAAE,QAAQ,CAAC,CAAC;aACtG;YAED,IAAI,cAAc,KAAK,SAAS,EAAE;gBAC9B,uBAAuB,CAAC,gBAAgB,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,cAAc,EAAE,QAAQ,CAAC,CAAC;aACpG;YAED,IAAI,KAAK,KAAK,SAAS,EAAE;gBACrB,uBAAuB,CAAC,OAAO,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,KAAK,EAAE,SAAS,CAAC,CAAC;aACnF;YAEK,MAAO,CAAC,MAAM,CAAC,oBAAoB,EAAE,OAAO,CAAC,OAAO,CAAC,CAAC;YAE5D,IAAI,mBAAmB,GAAG,KAAK,CAAC;YAEhC,IAAI,sBAAsB,GAA4B;gBAClD,MAAM,EAAE,KAAK;gBACb,EAAE,EAAE,uBAAuB;gBAC3B,OAAO,EAAE,oBAAoB;gBAC7B,GAAG,EAAE,YAAY;gBACjB,cAAc,EAAE,IAAI,CAAC,eAAe;gBACpC,IAAI,EAAE,IAAI;aACb,CAAC;YAEF,IAAI,qBAAqB,GAAG,OAAO,CAAC,OAAO,EAAE,CAAC;YAC9C,qBAAqB,GAAG,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,eAAe,CAAC,WAAW,CAAC,cAAc,CAAC,sBAAsB,CAAC,CAAC,CAAC;YAElI,qBAAqB,GAAG,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,eAAe,CAAC,OAAO,CAAC,cAAc,CAAC,sBAAsB,CAAC,CAAC,CAAC;YAC9H,OAAO,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE;gBACnC,IAAI,MAAM,CAAC,IAAI,CAAC,kBAAkB,CAAC,CAAC,MAAM,EAAE;oBACxC,IAAI,mBAAmB,EAAE;wBACf,sBAAuB,CAAC,QAAQ,GAAG,kBAAkB,CAAC;qBAC/D;yBAAM;wBACH,sBAAsB,CAAC,IAAI,GAAG,kBAAkB,CAAC;qBACpD;iBACJ;gBACD,OAAO,IAAI,OAAO,CAAiE,CAAC,OAAO,EAAE,MAAM,EAAE,EAAE;oBACnG,eAAe,CAAC,sBAAsB,EAAE,CAAC,KAAK,EAAE,QAAQ,EAAE,IAAI,EAAE,EAAE;wBAC9D,IAAI,KAAK,EAAE;4BACP,MAAM,CAAC,KAAK,CAAC,CAAC;yBACjB;6BAAM;4BACH,IAAI,GAAG,yBAAgB,CAAC,WAAW,CAAC,IAAI,EAAE,oBAAoB,CAAC,CAAC;4BAChE,IAAI,QAAQ,CAAC,UAAU,IAAI,QAAQ,CAAC,UAAU,IAAI,GAAG,IAAI,QAAQ,CAAC,UAAU,IAAI,GAAG,EAAE;gCACjF,OAAO,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;6BAC/C;iCAAM;gCACH,MAAM,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;6BAC9C;yBACJ;oBACL,CAAC,CAAC,CAAC;gBACP,CAAC,CAAC,CAAC;YACP,CAAC,CAAC,CAAC;QACP,CAAC;KAAA;IACD;;;;;;;;;OASG;IACU,sBAAsB,CAAE,IAAY,EAAE,SAAiB,EAAE,IAAY,EAAE,MAAe,EAAE,MAAe,EAAE,YAAqB,EAAE,KAAe,EAAE,UAA+C,EAAC,OAAO,EAAE,EAAE,EAAC;;YACtN,MAAM,YAAY,GAAG,IAAI,CAAC,QAAQ,GAAG,4DAA4D;iBAC5F,OAAO,CAAC,GAAG,GAAG,MAAM,GAAG,GAAG,EAAE,kBAAkB,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,CAAC;iBAC7D,OAAO,CAAC,GAAG,GAAG,WAAW,GAAG,GAAG,EAAE,kBAAkB,CAAC,MAAM,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC;YAC7E,IAAI,uBAAuB,GAAQ,EAAE,CAAC;YACtC,IAAI,oBAAoB,GAAc,MAAO,CAAC,MAAM,CAAC,EAAE,EAAE,IAAI,CAAC,cAAc,CAAC,CAAC;YAC9E,IAAI,kBAAkB,GAAQ,EAAE,CAAC;YAEjC,4DAA4D;YAC5D,IAAI,IAAI,KAAK,IAAI,IAAI,IAAI,KAAK,SAAS,EAAE;gBACrC,MAAM,IAAI,KAAK,CAAC,oFAAoF,CAAC,CAAC;aACzG;YAED,iEAAiE;YACjE,IAAI,SAAS,KAAK,IAAI,IAAI,SAAS,KAAK,SAAS,EAAE;gBAC/C,MAAM,IAAI,KAAK,CAAC,yFAAyF,CAAC,CAAC;aAC9G;YAED,4DAA4D;YAC5D,IAAI,IAAI,KAAK,IAAI,IAAI,IAAI,KAAK,SAAS,EAAE;gBACrC,MAAM,IAAI,KAAK,CAAC,oFAAoF,CAAC,CAAC;aACzG;YAED,IAAI,MAAM,KAAK,SAAS,EAAE;gBACtB,uBAAuB,CAAC,QAAQ,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;aACpF;YAED,IAAI,MAAM,KAAK,SAAS,EAAE;gBACtB,uBAAuB,CAAC,QAAQ,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;aACpF;YAED,IAAI,YAAY,KAAK,SAAS,EAAE;gBAC5B,uBAAuB,CAAC,cAAc,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,YAAY,EAAE,QAAQ,CAAC,CAAC;aAChG;YAED,IAAI,KAAK,KAAK,SAAS,EAAE;gBACrB,uBAAuB,CAAC,OAAO,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,KAAK,EAAE,SAAS,CAAC,CAAC;aACnF;YAEK,MAAO,CAAC,MAAM,CAAC,oBAAoB,EAAE,OAAO,CAAC,OAAO,CAAC,CAAC;YAE5D,IAAI,mBAAmB,GAAG,KAAK,CAAC;YAEhC,IAAI,sBAAsB,GAA4B;gBAClD,MAAM,EAAE,OAAO;gBACf,EAAE,EAAE,uBAAuB;gBAC3B,OAAO,EAAE,oBAAoB;gBAC7B,GAAG,EAAE,YAAY;gBACjB,cAAc,EAAE,IAAI,CAAC,eAAe;gBACpC,IAAI,EAAE,IAAI;gBACV,IAAI,EAAE,yBAAgB,CAAC,SAAS,CAAC,IAAI,EAAE,QAAQ,CAAC;aACnD,CAAC;YAEF,IAAI,qBAAqB,GAAG,OAAO,CAAC,OAAO,EAAE,CAAC;YAC9C,qBAAqB,GAAG,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,eAAe,CAAC,WAAW,CAAC,cAAc,CAAC,sBAAsB,CAAC,CAAC,CAAC;YAElI,qBAAqB,GAAG,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,eAAe,CAAC,OAAO,CAAC,cAAc,CAAC,sBAAsB,CAAC,CAAC,CAAC;YAC9H,OAAO,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE;gBACnC,IAAI,MAAM,CAAC,IAAI,CAAC,kBAAkB,CAAC,CAAC,MAAM,EAAE;oBACxC,IAAI,mBAAmB,EAAE;wBACf,sBAAuB,CAAC,QAAQ,GAAG,kBAAkB,CAAC;qBAC/D;yBAAM;wBACH,sBAAsB,CAAC,IAAI,GAAG,kBAAkB,CAAC;qBACpD;iBACJ;gBACD,OAAO,IAAI,OAAO,CAA6D,CAAC,OAAO,EAAE,MAAM,EAAE,EAAE;oBAC/F,eAAe,CAAC,sBAAsB,EAAE,CAAC,KAAK,EAAE,QAAQ,EAAE,IAAI,EAAE,EAAE;wBAC9D,IAAI,KAAK,EAAE;4BACP,MAAM,CAAC,KAAK,CAAC,CAAC;yBACjB;6BAAM;4BACH,IAAI,GAAG,yBAAgB,CAAC,WAAW,CAAC,IAAI,EAAE,gBAAgB,CAAC,CAAC;4BAC5D,IAAI,QAAQ,CAAC,UAAU,IAAI,QAAQ,CAAC,UAAU,IAAI,GAAG,IAAI,QAAQ,CAAC,UAAU,IAAI,GAAG,EAAE;gCACjF,OAAO,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;6BAC/C;iCAAM;gCACH,MAAM,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;6BAC9C;yBACJ;oBACL,CAAC,CAAC,CAAC;gBACP,CAAC,CAAC,CAAC;YACP,CAAC,CAAC,CAAC;QACP,CAAC;KAAA;IACD;;;;;;;;;OASG;IACU,4BAA4B,CAAE,IAAY,EAAE,SAAiB,EAAE,IAAY,EAAE,MAAe,EAAE,MAAe,EAAE,YAAqB,EAAE,KAAe,EAAE,UAA+C,EAAC,OAAO,EAAE,EAAE,EAAC;;YAC5N,MAAM,YAAY,GAAG,IAAI,CAAC,QAAQ,GAAG,mEAAmE;iBACnG,OAAO,CAAC,GAAG,GAAG,MAAM,GAAG,GAAG,EAAE,kBAAkB,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,CAAC;iBAC7D,OAAO,CAAC,GAAG,GAAG,WAAW,GAAG,GAAG,EAAE,kBAAkB,CAAC,MAAM,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC;YAC7E,IAAI,uBAAuB,GAAQ,EAAE,CAAC;YACtC,IAAI,oBAAoB,GAAc,MAAO,CAAC,MAAM,CAAC,EAAE,EAAE,IAAI,CAAC,cAAc,CAAC,CAAC;YAC9E,IAAI,kBAAkB,GAAQ,EAAE,CAAC;YAEjC,4DAA4D;YAC5D,IAAI,IAAI,KAAK,IAAI,IAAI,IAAI,KAAK,SAAS,EAAE;gBACrC,MAAM,IAAI,KAAK,CAAC,0FAA0F,CAAC,CAAC;aAC/G;YAED,iEAAiE;YACjE,IAAI,SAAS,KAAK,IAAI,IAAI,SAAS,KAAK,SAAS,EAAE;gBAC/C,MAAM,IAAI,KAAK,CAAC,+FAA+F,CAAC,CAAC;aACpH;YAED,4DAA4D;YAC5D,IAAI,IAAI,KAAK,IAAI,IAAI,IAAI,KAAK,SAAS,EAAE;gBACrC,MAAM,IAAI,KAAK,CAAC,0FAA0F,CAAC,CAAC;aAC/G;YAED,IAAI,MAAM,KAAK,SAAS,EAAE;gBACtB,uBAAuB,CAAC,QAAQ,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;aACpF;YAED,IAAI,MAAM,KAAK,SAAS,EAAE;gBACtB,uBAAuB,CAAC,QAAQ,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;aACpF;YAED,IAAI,YAAY,KAAK,SAAS,EAAE;gBAC5B,uBAAuB,CAAC,cAAc,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,YAAY,EAAE,QAAQ,CAAC,CAAC;aAChG;YAED,IAAI,KAAK,KAAK,SAAS,EAAE;gBACrB,uBAAuB,CAAC,OAAO,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,KAAK,EAAE,SAAS,CAAC,CAAC;aACnF;YAEK,MAAO,CAAC,MAAM,CAAC,oBAAoB,EAAE,OAAO,CAAC,OAAO,CAAC,CAAC;YAE5D,IAAI,mBAAmB,GAAG,KAAK,CAAC;YAEhC,IAAI,sBAAsB,GAA4B;gBAClD,MAAM,EAAE,OAAO;gBACf,EAAE,EAAE,uBAAuB;gBAC3B,OAAO,EAAE,oBAAoB;gBAC7B,GAAG,EAAE,YAAY;gBACjB,cAAc,EAAE,IAAI,CAAC,eAAe;gBACpC,IAAI,EAAE,IAAI;gBACV,IAAI,EAAE,yBAAgB,CAAC,SAAS,CAAC,IAAI,EAAE,QAAQ,CAAC;aACnD,CAAC;YAEF,IAAI,qBAAqB,GAAG,OAAO,CAAC,OAAO,EAAE,CAAC;YAC9C,qBAAqB,GAAG,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,eAAe,CAAC,WAAW,CAAC,cAAc,CAAC,sBAAsB,CAAC,CAAC,CAAC;YAElI,qBAAqB,GAAG,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,eAAe,CAAC,OAAO,CAAC,cAAc,CAAC,sBAAsB,CAAC,CAAC,CAAC;YAC9H,OAAO,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE;gBACnC,IAAI,MAAM,CAAC,IAAI,CAAC,kBAAkB,CAAC,CAAC,MAAM,EAAE;oBACxC,IAAI,mBAAmB,EAAE;wBACf,sBAAuB,CAAC,QAAQ,GAAG,kBAAkB,CAAC;qBAC/D;yBAAM;wBACH,sBAAsB,CAAC,IAAI,GAAG,kBAAkB,CAAC;qBACpD;iBACJ;gBACD,OAAO,IAAI,OAAO,CAA6D,CAAC,OAAO,EAAE,MAAM,EAAE,EAAE;oBAC/F,eAAe,CAAC,sBAAsB,EAAE,CAAC,KAAK,EAAE,QAAQ,EAAE,IAAI,EAAE,EAAE;wBAC9D,IAAI,KAAK,EAAE;4BACP,MAAM,CAAC,KAAK,CAAC,CAAC;yBACjB;6BAAM;4BACH,IAAI,GAAG,yBAAgB,CAAC,WAAW,CAAC,IAAI,EAAE,gBAAgB,CAAC,CAAC;4BAC5D,IAAI,QAAQ,CAAC,UAAU,IAAI,QAAQ,CAAC,UAAU,IAAI,GAAG,IAAI,QAAQ,CAAC,UAAU,IAAI,GAAG,EAAE;gCACjF,OAAO,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;6BAC/C;iCAAM;gCACH,MAAM,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;6BAC9C;yBACJ;oBACL,CAAC,CAAC,CAAC;gBACP,CAAC,CAAC,CAAC;YACP,CAAC,CAAC,CAAC;QACP,CAAC;KAAA;IACD;;;;;;;OAOG;IACU,qBAAqB,CAAE,IAAY,EAAE,SAAiB,EAAE,MAAe,EAAE,KAAe,EAAE,OAAiB,EAAE,UAA+C,EAAC,OAAO,EAAE,EAAE,EAAC;;YAClL,MAAM,YAAY,GAAG,IAAI,CAAC,QAAQ,GAAG,4DAA4D;iBAC5F,OAAO,CAAC,GAAG,GAAG,MAAM,GAAG,GAAG,EAAE,kBAAkB,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,CAAC;iBAC7D,OAAO,CAAC,GAAG,GAAG,WAAW,GAAG,GAAG,EAAE,kBAAkB,CAAC,MAAM,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC;YAC7E,IAAI,uBAAuB,GAAQ,EAAE,CAAC;YACtC,IAAI,oBAAoB,GAAc,MAAO,CAAC,MAAM,CAAC,EAAE,EAAE,IAAI,CAAC,cAAc,CAAC,CAAC;YAC9E,IAAI,kBAAkB,GAAQ,EAAE,CAAC;YAEjC,4DAA4D;YAC5D,IAAI,IAAI,KAAK,IAAI,IAAI,IAAI,KAAK,SAAS,EAAE;gBACrC,MAAM,IAAI,KAAK,CAAC,mFAAmF,CAAC,CAAC;aACxG;YAED,iEAAiE;YACjE,IAAI,SAAS,KAAK,IAAI,IAAI,SAAS,KAAK,SAAS,EAAE;gBAC/C,MAAM,IAAI,KAAK,CAAC,wFAAwF,CAAC,CAAC;aAC7G;YAED,IAAI,MAAM,KAAK,SAAS,EAAE;gBACtB,uBAAuB,CAAC,QAAQ,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;aACpF;YAED,IAAI,KAAK,KAAK,SAAS,EAAE;gBACrB,uBAAuB,CAAC,OAAO,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,KAAK,EAAE,SAAS,CAAC,CAAC;aACnF;YAED,IAAI,OAAO,KAAK,SAAS,EAAE;gBACvB,uBAAuB,CAAC,QAAQ,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,OAAO,EAAE,SAAS,CAAC,CAAC;aACtF;YAEK,MAAO,CAAC,MAAM,CAAC,oBAAoB,EAAE,OAAO,CAAC,OAAO,CAAC,CAAC;YAE5D,IAAI,mBAAmB,GAAG,KAAK,CAAC;YAEhC,IAAI,sBAAsB,GAA4B;gBAClD,MAAM,EAAE,KAAK;gBACb,EAAE,EAAE,uBAAuB;gBAC3B,OAAO,EAAE,oBAAoB;gBAC7B,GAAG,EAAE,YAAY;gBACjB,cAAc,EAAE,IAAI,CAAC,eAAe;gBACpC,IAAI,EAAE,IAAI;aACb,CAAC;YAEF,IAAI,qBAAqB,GAAG,OAAO,CAAC,OAAO,EAAE,CAAC;YAC9C,qBAAqB,GAAG,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,eAAe,CAAC,WAAW,CAAC,cAAc,CAAC,sBAAsB,CAAC,CAAC,CAAC;YAElI,qBAAqB,GAAG,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,eAAe,CAAC,OAAO,CAAC,cAAc,CAAC,sBAAsB,CAAC,CAAC,CAAC;YAC9H,OAAO,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE;gBACnC,IAAI,MAAM,CAAC,IAAI,CAAC,kBAAkB,CAAC,CAAC,MAAM,EAAE;oBACxC,IAAI,mBAAmB,EAAE;wBACf,sBAAuB,CAAC,QAAQ,GAAG,kBAAkB,CAAC;qBAC/D;yBAAM;wBACH,sBAAsB,CAAC,IAAI,GAAG,kBAAkB,CAAC;qBACpD;iBACJ;gBACD,OAAO,IAAI,OAAO,CAA6D,CAAC,OAAO,EAAE,MAAM,EAAE,EAAE;oBAC/F,eAAe,CAAC,sBAAsB,EAAE,CAAC,KAAK,EAAE,QAAQ,EAAE,IAAI,EAAE,EAAE;wBAC9D,IAAI,KAAK,EAAE;4BACP,MAAM,CAAC,KAAK,CAAC,CAAC;yBACjB;6BAAM;4BACH,IAAI,GAAG,yBAAgB,CAAC,WAAW,CAAC,IAAI,EAAE,gBAAgB,CAAC,CAAC;4BAC5D,IAAI,QAAQ,CAAC,UAAU,IAAI,QAAQ,CAAC,UAAU,IAAI,GAAG,IAAI,QAAQ,CAAC,UAAU,IAAI,GAAG,EAAE;gCACjF,OAAO,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;6BAC/C;iCAAM;gCACH,MAAM,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;6BAC9C;yBACJ;oBACL,CAAC,CAAC,CAAC;gBACP,CAAC,CAAC,CAAC;YACP,CAAC,CAAC,CAAC;QACP,CAAC;KAAA;IACD;;;;;OAKG;IACU,2BAA2B,CAAE,IAAY,EAAE,SAAiB,EAAE,MAAe,EAAE,UAA+C,EAAC,OAAO,EAAE,EAAE,EAAC;;YACpJ,MAAM,YAAY,GAAG,IAAI,CAAC,QAAQ,GAAG,mEAAmE;iBACnG,OAAO,CAAC,GAAG,GAAG,MAAM,GAAG,GAAG,EAAE,kBAAkB,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,CAAC;iBAC7D,OAAO,CAAC,GAAG,GAAG,WAAW,GAAG,GAAG,EAAE,kBAAkB,CAAC,MAAM,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC;YAC7E,IAAI,uBAAuB,GAAQ,EAAE,CAAC;YACtC,IAAI,oBAAoB,GAAc,MAAO,CAAC,MAAM,CAAC,EAAE,EAAE,IAAI,CAAC,cAAc,CAAC,CAAC;YAC9E,IAAI,kBAAkB,GAAQ,EAAE,CAAC;YAEjC,4DAA4D;YAC5D,IAAI,IAAI,KAAK,IAAI,IAAI,IAAI,KAAK,SAAS,EAAE;gBACrC,MAAM,IAAI,KAAK,CAAC,yFAAyF,CAAC,CAAC;aAC9G;YAED,iEAAiE;YACjE,IAAI,SAAS,KAAK,IAAI,IAAI,SAAS,KAAK,SAAS,EAAE;gBAC/C,MAAM,IAAI,KAAK,CAAC,8FAA8F,CAAC,CAAC;aACnH;YAED,IAAI,MAAM,KAAK,SAAS,EAAE;gBACtB,uBAAuB,CAAC,QAAQ,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;aACpF;YAEK,MAAO,CAAC,MAAM,CAAC,oBAAoB,EAAE,OAAO,CAAC,OAAO,CAAC,CAAC;YAE5D,IAAI,mBAAmB,GAAG,KAAK,CAAC;YAEhC,IAAI,sBAAsB,GAA4B;gBAClD,MAAM,EAAE,KAAK;gBACb,EAAE,EAAE,uBAAuB;gBAC3B,OAAO,EAAE,oBAAoB;gBAC7B,GAAG,EAAE,YAAY;gBACjB,cAAc,EAAE,IAAI,CAAC,eAAe;gBACpC,IAAI,EAAE,IAAI;aACb,CAAC;YAEF,IAAI,qBAAqB,GAAG,OAAO,CAAC,OAAO,EAAE,CAAC;YAC9C,qBAAqB,GAAG,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,eAAe,CAAC,WAAW,CAAC,cAAc,CAAC,sBAAsB,CAAC,CAAC,CAAC;YAElI,qBAAqB,GAAG,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,eAAe,CAAC,OAAO,CAAC,cAAc,CAAC,sBAAsB,CAAC,CAAC,CAAC;YAC9H,OAAO,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE;gBACnC,IAAI,MAAM,CAAC,IAAI,CAAC,kBAAkB,CAAC,CAAC,MAAM,EAAE;oBACxC,IAAI,mBAAmB,EAAE;wBACf,sBAAuB,CAAC,QAAQ,GAAG,kBAAkB,CAAC;qBAC/D;yBAAM;wBACH,sBAAsB,CAAC,IAAI,GAAG,kBAAkB,CAAC;qBACpD;iBACJ;gBACD,OAAO,IAAI,OAAO,CAA6D,CAAC,OAAO,EAAE,MAAM,EAAE,EAAE;oBAC/F,eAAe,CAAC,sBAAsB,EAAE,CAAC,KAAK,EAAE,QAAQ,EAAE,IAAI,EAAE,EAAE;wBAC9D,IAAI,KAAK,EAAE;4BACP,MAAM,CAAC,KAAK,CAAC,CAAC;yBACjB;6BAAM;4BACH,IAAI,GAAG,yBAAgB,CAAC,WAAW,CAAC,IAAI,EAAE,gBAAgB,CAAC,CAAC;4BAC5D,IAAI,QAAQ,CAAC,UAAU,IAAI,QAAQ,CAAC,UAAU,IAAI,GAAG,IAAI,QAAQ,CAAC,UAAU,IAAI,GAAG,EAAE;gCACjF,OAAO,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;6BAC/C;iCAAM;gCACH,MAAM,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;6BAC9C;yBACJ;oBACL,CAAC,CAAC,CAAC;gBACP,CAAC,CAAC,CAAC;YACP,CAAC,CAAC,CAAC;QACP,CAAC;KAAA;IACD;;;;;;;;OAQG;IACU,wBAAwB,CAAE,IAAY,EAAE,SAAiB,EAAE,IAAoB,EAAE,MAAe,EAAE,MAAe,EAAE,YAAqB,EAAE,UAA+C,EAAC,OAAO,EAAE,EAAE,EAAC;;YAC/M,MAAM,YAAY,GAAG,IAAI,CAAC,QAAQ,GAAG,4DAA4D;iBAC5F,OAAO,CAAC,GAAG,GAAG,MAAM,GAAG,GAAG,EAAE,kBAAkB,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,CAAC;iBAC7D,OAAO,CAAC,GAAG,GAAG,WAAW,GAAG,GAAG,EAAE,kBAAkB,CAAC,MAAM,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC;YAC7E,IAAI,uBAAuB,GAAQ,EAAE,CAAC;YACtC,IAAI,oBAAoB,GAAc,MAAO,CAAC,MAAM,CAAC,EAAE,EAAE,IAAI,CAAC,cAAc,CAAC,CAAC;YAC9E,IAAI,kBAAkB,GAAQ,EAAE,CAAC;YAEjC,4DAA4D;YAC5D,IAAI,IAAI,KAAK,IAAI,IAAI,IAAI,KAAK,SAAS,EAAE;gBACrC,MAAM,IAAI,KAAK,CAAC,sFAAsF,CAAC,CAAC;aAC3G;YAED,iEAAiE;YACjE,IAAI,SAAS,KAAK,IAAI,IAAI,SAAS,KAAK,SAAS,EAAE;gBAC/C,MAAM,IAAI,KAAK,CAAC,2FAA2F,CAAC,CAAC;aAChH;YAED,4DAA4D;YAC5D,IAAI,IAAI,KAAK,IAAI,IAAI,IAAI,KAAK,SAAS,EAAE;gBACrC,MAAM,IAAI,KAAK,CAAC,sFAAsF,CAAC,CAAC;aAC3G;YAED,IAAI,MAAM,KAAK,SAAS,EAAE;gBACtB,uBAAuB,CAAC,QAAQ,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;aACpF;YAED,IAAI,MAAM,KAAK,SAAS,EAAE;gBACtB,uBAAuB,CAAC,QAAQ,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;aACpF;YAED,IAAI,YAAY,KAAK,SAAS,EAAE;gBAC5B,uBAAuB,CAAC,cAAc,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,YAAY,EAAE,QAAQ,CAAC,CAAC;aAChG;YAEK,MAAO,CAAC,MAAM,CAAC,oBAAoB,EAAE,OAAO,CAAC,OAAO,CAAC,CAAC;YAE5D,IAAI,mBAAmB,GAAG,KAAK,CAAC;YAEhC,IAAI,sBAAsB,GAA4B;gBAClD,MAAM,EAAE,KAAK;gBACb,EAAE,EAAE,uBAAuB;gBAC3B,OAAO,EAAE,oBAAoB;gBAC7B,GAAG,EAAE,YAAY;gBACjB,cAAc,EAAE,IAAI,CAAC,eAAe;gBACpC,IAAI,EAAE,IAAI;gBACV,IAAI,EAAE,yBAAgB,CAAC,SAAS,CAAC,IAAI,EAAE,gBAAgB,CAAC;aAC3D,CAAC;YAEF,IAAI,qBAAqB,GAAG,OAAO,CAAC,OAAO,EAAE,CAAC;YAC9C,qBAAqB,GAAG,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,eAAe,CAAC,WAAW,CAAC,cAAc,CAAC,sBAAsB,CAAC,CAAC,CAAC;YAElI,qBAAqB,GAAG,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,eAAe,CAAC,OAAO,CAAC,cAAc,CAAC,sBAAsB,CAAC,CAAC,CAAC;YAC9H,OAAO,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE;gBACnC,IAAI,MAAM,CAAC,IAAI,CAAC,kBAAkB,CAAC,CAAC,MAAM,EAAE;oBACxC,IAAI,mBAAmB,EAAE;wBACf,sBAAuB,CAAC,QAAQ,GAAG,kBAAkB,CAAC;qBAC/D;yBAAM;wBACH,sBAAsB,CAAC,IAAI,GAAG,kBAAkB,CAAC;qBACpD;iBACJ;gBACD,OAAO,IAAI,OAAO,CAA6D,CAAC,OAAO,EAAE,MAAM,EAAE,EAAE;oBAC/F,eAAe,CAAC,sBAAsB,EAAE,CAAC,KAAK,EAAE,QAAQ,EAAE,IAAI,EAAE,EAAE;wBAC9D,IAAI,KAAK,EAAE;4BACP,MAAM,CAAC,KAAK,CAAC,CAAC;yBACjB;6BAAM;4BACH,IAAI,GAAG,yBAAgB,CAAC,WAAW,CAAC,IAAI,EAAE,gBAAgB,CAAC,CAAC;4BAC5D,IAAI,QAAQ,CAAC,UAAU,IAAI,QAAQ,CAAC,UAAU,IAAI,GAAG,IAAI,QAAQ,CAAC,UAAU,IAAI,GAAG,EAAE;gCACjF,OAAO,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;6BAC/C;iCAAM;gCACH,MAAM,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;6BAC9C;yBACJ;oBACL,CAAC,CAAC,CAAC;gBACP,CAAC,CAAC,CAAC;YACP,CAAC,CAAC,CAAC;QACP,CAAC;KAAA;IACD;;;;;;;;OAQG;IACU,8BAA8B,CAAE,IAAY,EAAE,SAAiB,EAAE,IAAoB,EAAE,MAAe,EAAE,MAAe,EAAE,YAAqB,EAAE,UAA+C,EAAC,OAAO,EAAE,EAAE,EAAC;;YACrN,MAAM,YAAY,GAAG,IAAI,CAAC,QAAQ,GAAG,mEAAmE;iBACnG,OAAO,CAAC,GAAG,GAAG,MAAM,GAAG,GAAG,EAAE,kBAAkB,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,CAAC;iBAC7D,OAAO,CAAC,GAAG,GAAG,WAAW,GAAG,GAAG,EAAE,kBAAkB,CAAC,MAAM,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC;YAC7E,IAAI,uBAAuB,GAAQ,EAAE,CAAC;YACtC,IAAI,oBAAoB,GAAc,MAAO,CAAC,MAAM,CAAC,EAAE,EAAE,IAAI,CAAC,cAAc,CAAC,CAAC;YAC9E,IAAI,kBAAkB,GAAQ,EAAE,CAAC;YAEjC,4DAA4D;YAC5D,IAAI,IAAI,KAAK,IAAI,IAAI,IAAI,KAAK,SAAS,EAAE;gBACrC,MAAM,IAAI,KAAK,CAAC,4FAA4F,CAAC,CAAC;aACjH;YAED,iEAAiE;YACjE,IAAI,SAAS,KAAK,IAAI,IAAI,SAAS,KAAK,SAAS,EAAE;gBAC/C,MAAM,IAAI,KAAK,CAAC,iGAAiG,CAAC,CAAC;aACtH;YAED,4DAA4D;YAC5D,IAAI,IAAI,KAAK,IAAI,IAAI,IAAI,KAAK,SAAS,EAAE;gBACrC,MAAM,IAAI,KAAK,CAAC,4FAA4F,CAAC,CAAC;aACjH;YAED,IAAI,MAAM,KAAK,SAAS,EAAE;gBACtB,uBAAuB,CAAC,QAAQ,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;aACpF;YAED,IAAI,MAAM,KAAK,SAAS,EAAE;gBACtB,uBAAuB,CAAC,QAAQ,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;aACpF;YAED,IAAI,YAAY,KAAK,SAAS,EAAE;gBAC5B,uBAAuB,CAAC,cAAc,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,YAAY,EAAE,QAAQ,CAAC,CAAC;aAChG;YAEK,MAAO,CAAC,MAAM,CAAC,oBAAoB,EAAE,OAAO,CAAC,OAAO,CAAC,CAAC;YAE5D,IAAI,mBAAmB,GAAG,KAAK,CAAC;YAEhC,IAAI,sBAAsB,GAA4B;gBAClD,MAAM,EAAE,KAAK;gBACb,EAAE,EAAE,uBAAuB;gBAC3B,OAAO,EAAE,oBAAoB;gBAC7B,GAAG,EAAE,YAAY;gBACjB,cAAc,EAAE,IAAI,CAAC,eAAe;gBACpC,IAAI,EAAE,IAAI;gBACV,IAAI,EAAE,yBAAgB,CAAC,SAAS,CAAC,IAAI,EAAE,gBAAgB,CAAC;aAC3D,CAAC;YAEF,IAAI,qBAAqB,GAAG,OAAO,CAAC,OAAO,EAAE,CAAC;YAC9C,qBAAqB,GAAG,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,eAAe,CAAC,WAAW,CAAC,cAAc,CAAC,sBAAsB,CAAC,CAAC,CAAC;YAElI,qBAAqB,GAAG,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,eAAe,CAAC,OAAO,CAAC,cAAc,CAAC,sBAAsB,CAAC,CAAC,CAAC;YAC9H,OAAO,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE;gBACnC,IAAI,MAAM,CAAC,IAAI,CAAC,kBAAkB,CAAC,CAAC,MAAM,EAAE;oBACxC,IAAI,mBAAmB,EAAE;wBACf,sBAAuB,CAAC,QAAQ,GAAG,kBAAkB,CAAC;qBAC/D;yBAAM;wBACH,sBAAsB,CAAC,IAAI,GAAG,kBAAkB,CAAC;qBACpD;iBACJ;gBACD,OAAO,IAAI,OAAO,CAA6D,CAAC,OAAO,EAAE,MAAM,EAAE,EAAE;oBAC/F,eAAe,CAAC,sBAAsB,EAAE,CAAC,KAAK,EAAE,QAAQ,EAAE,IAAI,EAAE,EAAE;wBAC9D,IAAI,KAAK,EAAE;4BACP,MAAM,CAAC,KAAK,CAAC,CAAC;yBACjB;6BAAM;4BACH,IAAI,GAAG,yBAAgB,CAAC,WAAW,CAAC,IAAI,EAAE,gBAAgB,CAAC,CAAC;4BAC5D,IAAI,QAAQ,CAAC,UAAU,IAAI,QAAQ,CAAC,UAAU,IAAI,GAAG,IAAI,QAAQ,CAAC,UAAU,IAAI,GAAG,EAAE;gCACjF,OAAO,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;6BAC/C;iCAAM;gCACH,MAAM,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;6BAC9C;yBACJ;oBACL,CAAC,CAAC,CAAC;gBACP,CAAC,CAAC,CAAC;YACP,CAAC,CAAC,CAAC;QACP,CAAC;KAAA;CACJ;AA9jCD,0CA8jCC"}
\ No newline at end of file
diff --git a/dist/gen/api/batchV2alpha1Api.d.ts b/dist/gen/api/batchV2alpha1Api.d.ts
new file mode 100644
index 0000000000..06e3824a2a
--- /dev/null
+++ b/dist/gen/api/batchV2alpha1Api.d.ts
@@ -0,0 +1,250 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+///
+import http = require('http');
+import { V1APIResourceList } from '../model/v1APIResourceList';
+import { V1DeleteOptions } from '../model/v1DeleteOptions';
+import { V1Status } from '../model/v1Status';
+import { V2alpha1CronJob } from '../model/v2alpha1CronJob';
+import { V2alpha1CronJobList } from '../model/v2alpha1CronJobList';
+import { Authentication } from '../model/models';
+import { ApiKeyAuth } from '../model/models';
+export declare enum BatchV2alpha1ApiApiKeys {
+ BearerToken = 0
+}
+export declare class BatchV2alpha1Api {
+ protected _basePath: string;
+ protected defaultHeaders: any;
+ protected _useQuerystring: boolean;
+ protected authentications: {
+ 'default': Authentication;
+ 'BearerToken': ApiKeyAuth;
+ };
+ constructor(basePath?: string);
+ useQuerystring: boolean;
+ basePath: string;
+ setDefaultAuthentication(auth: Authentication): void;
+ setApiKey(key: BatchV2alpha1ApiApiKeys, value: string): void;
+ /**
+ * create a CronJob
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createNamespacedCronJob(namespace: string, body: V2alpha1CronJob, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V2alpha1CronJob;
+ }>;
+ /**
+ * delete collection of CronJob
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionNamespacedCronJob(namespace: string, pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, dryRun?: string, fieldSelector?: string, gracePeriodSeconds?: number, labelSelector?: string, limit?: number, orphanDependents?: boolean, propagationPolicy?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete a CronJob
+ * @param name name of the CronJob
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteNamespacedCronJob(name: string, namespace: string, pretty?: string, dryRun?: string, gracePeriodSeconds?: number, orphanDependents?: boolean, propagationPolicy?: string, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * get available resources
+ */
+ getAPIResources(options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1APIResourceList;
+ }>;
+ /**
+ * list or watch objects of kind CronJob
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listCronJobForAllNamespaces(allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, pretty?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V2alpha1CronJobList;
+ }>;
+ /**
+ * list or watch objects of kind CronJob
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listNamespacedCronJob(namespace: string, pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V2alpha1CronJobList;
+ }>;
+ /**
+ * partially update the specified CronJob
+ * @param name name of the CronJob
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedCronJob(name: string, namespace: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V2alpha1CronJob;
+ }>;
+ /**
+ * partially update status of the specified CronJob
+ * @param name name of the CronJob
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedCronJobStatus(name: string, namespace: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V2alpha1CronJob;
+ }>;
+ /**
+ * read the specified CronJob
+ * @param name name of the CronJob
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readNamespacedCronJob(name: string, namespace: string, pretty?: string, exact?: boolean, _export?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V2alpha1CronJob;
+ }>;
+ /**
+ * read status of the specified CronJob
+ * @param name name of the CronJob
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readNamespacedCronJobStatus(name: string, namespace: string, pretty?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V2alpha1CronJob;
+ }>;
+ /**
+ * replace the specified CronJob
+ * @param name name of the CronJob
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedCronJob(name: string, namespace: string, body: V2alpha1CronJob, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V2alpha1CronJob;
+ }>;
+ /**
+ * replace status of the specified CronJob
+ * @param name name of the CronJob
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedCronJobStatus(name: string, namespace: string, body: V2alpha1CronJob, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V2alpha1CronJob;
+ }>;
+}
diff --git a/dist/gen/api/batchV2alpha1Api.js b/dist/gen/api/batchV2alpha1Api.js
new file mode 100644
index 0000000000..8b88a433c3
--- /dev/null
+++ b/dist/gen/api/batchV2alpha1Api.js
@@ -0,0 +1,1027 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+const tslib_1 = require("tslib");
+const localVarRequest = require("request");
+const models_1 = require("../model/models");
+const models_2 = require("../model/models");
+let defaultBasePath = 'http://localhost/';
+// ===============================================
+// This file is autogenerated - Please do not edit
+// ===============================================
+var BatchV2alpha1ApiApiKeys;
+(function (BatchV2alpha1ApiApiKeys) {
+ BatchV2alpha1ApiApiKeys[BatchV2alpha1ApiApiKeys["BearerToken"] = 0] = "BearerToken";
+})(BatchV2alpha1ApiApiKeys = exports.BatchV2alpha1ApiApiKeys || (exports.BatchV2alpha1ApiApiKeys = {}));
+class BatchV2alpha1Api {
+ constructor(basePathOrUsername, password, basePath) {
+ this._basePath = defaultBasePath;
+ this.defaultHeaders = {};
+ this._useQuerystring = false;
+ this.authentications = {
+ 'default': new models_1.VoidAuth(),
+ 'BearerToken': new models_2.ApiKeyAuth('header', 'authorization'),
+ };
+ if (password) {
+ if (basePath) {
+ this.basePath = basePath;
+ }
+ }
+ else {
+ if (basePathOrUsername) {
+ this.basePath = basePathOrUsername;
+ }
+ }
+ }
+ set useQuerystring(value) {
+ this._useQuerystring = value;
+ }
+ set basePath(basePath) {
+ this._basePath = basePath;
+ }
+ get basePath() {
+ return this._basePath;
+ }
+ setDefaultAuthentication(auth) {
+ this.authentications.default = auth;
+ }
+ setApiKey(key, value) {
+ this.authentications[BatchV2alpha1ApiApiKeys[key]].apiKey = value;
+ }
+ /**
+ * create a CronJob
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createNamespacedCronJob(namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/batch/v2alpha1/namespaces/{namespace}/cronjobs'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling createNamespacedCronJob.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling createNamespacedCronJob.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'POST',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V2alpha1CronJob")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V2alpha1CronJob");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete collection of CronJob
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionNamespacedCronJob(namespace, pretty, allowWatchBookmarks, _continue, dryRun, fieldSelector, gracePeriodSeconds, labelSelector, limit, orphanDependents, propagationPolicy, resourceVersion, timeoutSeconds, watch, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/batch/v2alpha1/namespaces/{namespace}/cronjobs'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling deleteCollectionNamespacedCronJob.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete a CronJob
+ * @param name name of the CronJob
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteNamespacedCronJob(name, namespace, pretty, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/batch/v2alpha1/namespaces/{namespace}/cronjobs/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling deleteNamespacedCronJob.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling deleteNamespacedCronJob.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * get available resources
+ */
+ getAPIResources(options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/batch/v2alpha1/';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1APIResourceList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind CronJob
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listCronJobForAllNamespaces(allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, pretty, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/batch/v2alpha1/cronjobs';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V2alpha1CronJobList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind CronJob
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listNamespacedCronJob(namespace, pretty, allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/batch/v2alpha1/namespaces/{namespace}/cronjobs'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling listNamespacedCronJob.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V2alpha1CronJobList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update the specified CronJob
+ * @param name name of the CronJob
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedCronJob(name, namespace, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/batch/v2alpha1/namespaces/{namespace}/cronjobs/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchNamespacedCronJob.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling patchNamespacedCronJob.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchNamespacedCronJob.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V2alpha1CronJob");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update status of the specified CronJob
+ * @param name name of the CronJob
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedCronJobStatus(name, namespace, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/batch/v2alpha1/namespaces/{namespace}/cronjobs/{name}/status'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchNamespacedCronJobStatus.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling patchNamespacedCronJobStatus.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchNamespacedCronJobStatus.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V2alpha1CronJob");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read the specified CronJob
+ * @param name name of the CronJob
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readNamespacedCronJob(name, namespace, pretty, exact, _export, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/batch/v2alpha1/namespaces/{namespace}/cronjobs/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readNamespacedCronJob.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling readNamespacedCronJob.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (exact !== undefined) {
+ localVarQueryParameters['exact'] = models_1.ObjectSerializer.serialize(exact, "boolean");
+ }
+ if (_export !== undefined) {
+ localVarQueryParameters['export'] = models_1.ObjectSerializer.serialize(_export, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V2alpha1CronJob");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read status of the specified CronJob
+ * @param name name of the CronJob
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readNamespacedCronJobStatus(name, namespace, pretty, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/batch/v2alpha1/namespaces/{namespace}/cronjobs/{name}/status'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readNamespacedCronJobStatus.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling readNamespacedCronJobStatus.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V2alpha1CronJob");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace the specified CronJob
+ * @param name name of the CronJob
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedCronJob(name, namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/batch/v2alpha1/namespaces/{namespace}/cronjobs/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceNamespacedCronJob.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling replaceNamespacedCronJob.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceNamespacedCronJob.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V2alpha1CronJob")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V2alpha1CronJob");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace status of the specified CronJob
+ * @param name name of the CronJob
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedCronJobStatus(name, namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/batch/v2alpha1/namespaces/{namespace}/cronjobs/{name}/status'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceNamespacedCronJobStatus.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling replaceNamespacedCronJobStatus.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceNamespacedCronJobStatus.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V2alpha1CronJob")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V2alpha1CronJob");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+}
+exports.BatchV2alpha1Api = BatchV2alpha1Api;
+//# sourceMappingURL=batchV2alpha1Api.js.map
\ No newline at end of file
diff --git a/dist/gen/api/batchV2alpha1Api.js.map b/dist/gen/api/batchV2alpha1Api.js.map
new file mode 100644
index 0000000000..3543b916c2
--- /dev/null
+++ b/dist/gen/api/batchV2alpha1Api.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"batchV2alpha1Api.js","sourceRoot":"","sources":["../../../src/gen/api/batchV2alpha1Api.ts"],"names":[],"mappings":"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"}
\ No newline at end of file
diff --git a/dist/gen/api/certificatesApi.d.ts b/dist/gen/api/certificatesApi.d.ts
new file mode 100644
index 0000000000..1f2d12f3e8
--- /dev/null
+++ b/dist/gen/api/certificatesApi.d.ts
@@ -0,0 +1,44 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+///
+import http = require('http');
+import { V1APIGroup } from '../model/v1APIGroup';
+import { Authentication } from '../model/models';
+import { ApiKeyAuth } from '../model/models';
+export declare enum CertificatesApiApiKeys {
+ BearerToken = 0
+}
+export declare class CertificatesApi {
+ protected _basePath: string;
+ protected defaultHeaders: any;
+ protected _useQuerystring: boolean;
+ protected authentications: {
+ 'default': Authentication;
+ 'BearerToken': ApiKeyAuth;
+ };
+ constructor(basePath?: string);
+ useQuerystring: boolean;
+ basePath: string;
+ setDefaultAuthentication(auth: Authentication): void;
+ setApiKey(key: CertificatesApiApiKeys, value: string): void;
+ /**
+ * get information of a group
+ */
+ getAPIGroup(options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1APIGroup;
+ }>;
+}
diff --git a/dist/gen/api/certificatesApi.js b/dist/gen/api/certificatesApi.js
new file mode 100644
index 0000000000..c7e5777ebd
--- /dev/null
+++ b/dist/gen/api/certificatesApi.js
@@ -0,0 +1,113 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+const tslib_1 = require("tslib");
+const localVarRequest = require("request");
+const models_1 = require("../model/models");
+const models_2 = require("../model/models");
+let defaultBasePath = 'http://localhost/';
+// ===============================================
+// This file is autogenerated - Please do not edit
+// ===============================================
+var CertificatesApiApiKeys;
+(function (CertificatesApiApiKeys) {
+ CertificatesApiApiKeys[CertificatesApiApiKeys["BearerToken"] = 0] = "BearerToken";
+})(CertificatesApiApiKeys = exports.CertificatesApiApiKeys || (exports.CertificatesApiApiKeys = {}));
+class CertificatesApi {
+ constructor(basePathOrUsername, password, basePath) {
+ this._basePath = defaultBasePath;
+ this.defaultHeaders = {};
+ this._useQuerystring = false;
+ this.authentications = {
+ 'default': new models_1.VoidAuth(),
+ 'BearerToken': new models_2.ApiKeyAuth('header', 'authorization'),
+ };
+ if (password) {
+ if (basePath) {
+ this.basePath = basePath;
+ }
+ }
+ else {
+ if (basePathOrUsername) {
+ this.basePath = basePathOrUsername;
+ }
+ }
+ }
+ set useQuerystring(value) {
+ this._useQuerystring = value;
+ }
+ set basePath(basePath) {
+ this._basePath = basePath;
+ }
+ get basePath() {
+ return this._basePath;
+ }
+ setDefaultAuthentication(auth) {
+ this.authentications.default = auth;
+ }
+ setApiKey(key, value) {
+ this.authentications[CertificatesApiApiKeys[key]].apiKey = value;
+ }
+ /**
+ * get information of a group
+ */
+ getAPIGroup(options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/certificates.k8s.io/';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1APIGroup");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+}
+exports.CertificatesApi = CertificatesApi;
+//# sourceMappingURL=certificatesApi.js.map
\ No newline at end of file
diff --git a/dist/gen/api/certificatesApi.js.map b/dist/gen/api/certificatesApi.js.map
new file mode 100644
index 0000000000..07512cfad7
--- /dev/null
+++ b/dist/gen/api/certificatesApi.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"certificatesApi.js","sourceRoot":"","sources":["../../../src/gen/api/certificatesApi.ts"],"names":[],"mappings":"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"}
\ No newline at end of file
diff --git a/dist/gen/api/certificatesV1beta1Api.d.ts b/dist/gen/api/certificatesV1beta1Api.d.ts
new file mode 100644
index 0000000000..badfc05c3e
--- /dev/null
+++ b/dist/gen/api/certificatesV1beta1Api.d.ts
@@ -0,0 +1,236 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+///
+import http = require('http');
+import { V1APIResourceList } from '../model/v1APIResourceList';
+import { V1DeleteOptions } from '../model/v1DeleteOptions';
+import { V1Status } from '../model/v1Status';
+import { V1beta1CertificateSigningRequest } from '../model/v1beta1CertificateSigningRequest';
+import { V1beta1CertificateSigningRequestList } from '../model/v1beta1CertificateSigningRequestList';
+import { Authentication } from '../model/models';
+import { ApiKeyAuth } from '../model/models';
+export declare enum CertificatesV1beta1ApiApiKeys {
+ BearerToken = 0
+}
+export declare class CertificatesV1beta1Api {
+ protected _basePath: string;
+ protected defaultHeaders: any;
+ protected _useQuerystring: boolean;
+ protected authentications: {
+ 'default': Authentication;
+ 'BearerToken': ApiKeyAuth;
+ };
+ constructor(basePath?: string);
+ useQuerystring: boolean;
+ basePath: string;
+ setDefaultAuthentication(auth: Authentication): void;
+ setApiKey(key: CertificatesV1beta1ApiApiKeys, value: string): void;
+ /**
+ * create a CertificateSigningRequest
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createCertificateSigningRequest(body: V1beta1CertificateSigningRequest, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1CertificateSigningRequest;
+ }>;
+ /**
+ * delete a CertificateSigningRequest
+ * @param name name of the CertificateSigningRequest
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteCertificateSigningRequest(name: string, pretty?: string, dryRun?: string, gracePeriodSeconds?: number, orphanDependents?: boolean, propagationPolicy?: string, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete collection of CertificateSigningRequest
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionCertificateSigningRequest(pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, dryRun?: string, fieldSelector?: string, gracePeriodSeconds?: number, labelSelector?: string, limit?: number, orphanDependents?: boolean, propagationPolicy?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * get available resources
+ */
+ getAPIResources(options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1APIResourceList;
+ }>;
+ /**
+ * list or watch objects of kind CertificateSigningRequest
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listCertificateSigningRequest(pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1CertificateSigningRequestList;
+ }>;
+ /**
+ * partially update the specified CertificateSigningRequest
+ * @param name name of the CertificateSigningRequest
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchCertificateSigningRequest(name: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1CertificateSigningRequest;
+ }>;
+ /**
+ * partially update status of the specified CertificateSigningRequest
+ * @param name name of the CertificateSigningRequest
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchCertificateSigningRequestStatus(name: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1CertificateSigningRequest;
+ }>;
+ /**
+ * read the specified CertificateSigningRequest
+ * @param name name of the CertificateSigningRequest
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readCertificateSigningRequest(name: string, pretty?: string, exact?: boolean, _export?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1CertificateSigningRequest;
+ }>;
+ /**
+ * read status of the specified CertificateSigningRequest
+ * @param name name of the CertificateSigningRequest
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readCertificateSigningRequestStatus(name: string, pretty?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1CertificateSigningRequest;
+ }>;
+ /**
+ * replace the specified CertificateSigningRequest
+ * @param name name of the CertificateSigningRequest
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceCertificateSigningRequest(name: string, body: V1beta1CertificateSigningRequest, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1CertificateSigningRequest;
+ }>;
+ /**
+ * replace approval of the specified CertificateSigningRequest
+ * @param name name of the CertificateSigningRequest
+ * @param body
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ replaceCertificateSigningRequestApproval(name: string, body: V1beta1CertificateSigningRequest, dryRun?: string, fieldManager?: string, pretty?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1CertificateSigningRequest;
+ }>;
+ /**
+ * replace status of the specified CertificateSigningRequest
+ * @param name name of the CertificateSigningRequest
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceCertificateSigningRequestStatus(name: string, body: V1beta1CertificateSigningRequest, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1CertificateSigningRequest;
+ }>;
+}
diff --git a/dist/gen/api/certificatesV1beta1Api.js b/dist/gen/api/certificatesV1beta1Api.js
new file mode 100644
index 0000000000..b42d6fa30c
--- /dev/null
+++ b/dist/gen/api/certificatesV1beta1Api.js
@@ -0,0 +1,955 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+const tslib_1 = require("tslib");
+const localVarRequest = require("request");
+const models_1 = require("../model/models");
+const models_2 = require("../model/models");
+let defaultBasePath = 'http://localhost/';
+// ===============================================
+// This file is autogenerated - Please do not edit
+// ===============================================
+var CertificatesV1beta1ApiApiKeys;
+(function (CertificatesV1beta1ApiApiKeys) {
+ CertificatesV1beta1ApiApiKeys[CertificatesV1beta1ApiApiKeys["BearerToken"] = 0] = "BearerToken";
+})(CertificatesV1beta1ApiApiKeys = exports.CertificatesV1beta1ApiApiKeys || (exports.CertificatesV1beta1ApiApiKeys = {}));
+class CertificatesV1beta1Api {
+ constructor(basePathOrUsername, password, basePath) {
+ this._basePath = defaultBasePath;
+ this.defaultHeaders = {};
+ this._useQuerystring = false;
+ this.authentications = {
+ 'default': new models_1.VoidAuth(),
+ 'BearerToken': new models_2.ApiKeyAuth('header', 'authorization'),
+ };
+ if (password) {
+ if (basePath) {
+ this.basePath = basePath;
+ }
+ }
+ else {
+ if (basePathOrUsername) {
+ this.basePath = basePathOrUsername;
+ }
+ }
+ }
+ set useQuerystring(value) {
+ this._useQuerystring = value;
+ }
+ set basePath(basePath) {
+ this._basePath = basePath;
+ }
+ get basePath() {
+ return this._basePath;
+ }
+ setDefaultAuthentication(auth) {
+ this.authentications.default = auth;
+ }
+ setApiKey(key, value) {
+ this.authentications[CertificatesV1beta1ApiApiKeys[key]].apiKey = value;
+ }
+ /**
+ * create a CertificateSigningRequest
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createCertificateSigningRequest(body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/certificates.k8s.io/v1beta1/certificatesigningrequests';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling createCertificateSigningRequest.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'POST',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1beta1CertificateSigningRequest")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1CertificateSigningRequest");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete a CertificateSigningRequest
+ * @param name name of the CertificateSigningRequest
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteCertificateSigningRequest(name, pretty, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/certificates.k8s.io/v1beta1/certificatesigningrequests/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling deleteCertificateSigningRequest.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete collection of CertificateSigningRequest
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionCertificateSigningRequest(pretty, allowWatchBookmarks, _continue, dryRun, fieldSelector, gracePeriodSeconds, labelSelector, limit, orphanDependents, propagationPolicy, resourceVersion, timeoutSeconds, watch, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/certificates.k8s.io/v1beta1/certificatesigningrequests';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * get available resources
+ */
+ getAPIResources(options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/certificates.k8s.io/v1beta1/';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1APIResourceList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind CertificateSigningRequest
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listCertificateSigningRequest(pretty, allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/certificates.k8s.io/v1beta1/certificatesigningrequests';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1CertificateSigningRequestList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update the specified CertificateSigningRequest
+ * @param name name of the CertificateSigningRequest
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchCertificateSigningRequest(name, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/certificates.k8s.io/v1beta1/certificatesigningrequests/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchCertificateSigningRequest.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchCertificateSigningRequest.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1CertificateSigningRequest");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update status of the specified CertificateSigningRequest
+ * @param name name of the CertificateSigningRequest
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchCertificateSigningRequestStatus(name, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/certificates.k8s.io/v1beta1/certificatesigningrequests/{name}/status'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchCertificateSigningRequestStatus.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchCertificateSigningRequestStatus.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1CertificateSigningRequest");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read the specified CertificateSigningRequest
+ * @param name name of the CertificateSigningRequest
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readCertificateSigningRequest(name, pretty, exact, _export, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/certificates.k8s.io/v1beta1/certificatesigningrequests/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readCertificateSigningRequest.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (exact !== undefined) {
+ localVarQueryParameters['exact'] = models_1.ObjectSerializer.serialize(exact, "boolean");
+ }
+ if (_export !== undefined) {
+ localVarQueryParameters['export'] = models_1.ObjectSerializer.serialize(_export, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1CertificateSigningRequest");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read status of the specified CertificateSigningRequest
+ * @param name name of the CertificateSigningRequest
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readCertificateSigningRequestStatus(name, pretty, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/certificates.k8s.io/v1beta1/certificatesigningrequests/{name}/status'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readCertificateSigningRequestStatus.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1CertificateSigningRequest");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace the specified CertificateSigningRequest
+ * @param name name of the CertificateSigningRequest
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceCertificateSigningRequest(name, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/certificates.k8s.io/v1beta1/certificatesigningrequests/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceCertificateSigningRequest.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceCertificateSigningRequest.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1beta1CertificateSigningRequest")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1CertificateSigningRequest");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace approval of the specified CertificateSigningRequest
+ * @param name name of the CertificateSigningRequest
+ * @param body
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ replaceCertificateSigningRequestApproval(name, body, dryRun, fieldManager, pretty, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/certificates.k8s.io/v1beta1/certificatesigningrequests/{name}/approval'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceCertificateSigningRequestApproval.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceCertificateSigningRequestApproval.');
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1beta1CertificateSigningRequest")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1CertificateSigningRequest");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace status of the specified CertificateSigningRequest
+ * @param name name of the CertificateSigningRequest
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceCertificateSigningRequestStatus(name, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/certificates.k8s.io/v1beta1/certificatesigningrequests/{name}/status'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceCertificateSigningRequestStatus.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceCertificateSigningRequestStatus.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1beta1CertificateSigningRequest")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1CertificateSigningRequest");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+}
+exports.CertificatesV1beta1Api = CertificatesV1beta1Api;
+//# sourceMappingURL=certificatesV1beta1Api.js.map
\ No newline at end of file
diff --git a/dist/gen/api/certificatesV1beta1Api.js.map b/dist/gen/api/certificatesV1beta1Api.js.map
new file mode 100644
index 0000000000..8d82bea26e
--- /dev/null
+++ b/dist/gen/api/certificatesV1beta1Api.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"certificatesV1beta1Api.js","sourceRoot":"","sources":["../../../src/gen/api/certificatesV1beta1Api.ts"],"names":[],"mappings":"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"}
\ No newline at end of file
diff --git a/dist/gen/api/coordinationApi.d.ts b/dist/gen/api/coordinationApi.d.ts
new file mode 100644
index 0000000000..64eab57ef0
--- /dev/null
+++ b/dist/gen/api/coordinationApi.d.ts
@@ -0,0 +1,44 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+///
+import http = require('http');
+import { V1APIGroup } from '../model/v1APIGroup';
+import { Authentication } from '../model/models';
+import { ApiKeyAuth } from '../model/models';
+export declare enum CoordinationApiApiKeys {
+ BearerToken = 0
+}
+export declare class CoordinationApi {
+ protected _basePath: string;
+ protected defaultHeaders: any;
+ protected _useQuerystring: boolean;
+ protected authentications: {
+ 'default': Authentication;
+ 'BearerToken': ApiKeyAuth;
+ };
+ constructor(basePath?: string);
+ useQuerystring: boolean;
+ basePath: string;
+ setDefaultAuthentication(auth: Authentication): void;
+ setApiKey(key: CoordinationApiApiKeys, value: string): void;
+ /**
+ * get information of a group
+ */
+ getAPIGroup(options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1APIGroup;
+ }>;
+}
diff --git a/dist/gen/api/coordinationApi.js b/dist/gen/api/coordinationApi.js
new file mode 100644
index 0000000000..07bf57203a
--- /dev/null
+++ b/dist/gen/api/coordinationApi.js
@@ -0,0 +1,113 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+const tslib_1 = require("tslib");
+const localVarRequest = require("request");
+const models_1 = require("../model/models");
+const models_2 = require("../model/models");
+let defaultBasePath = 'http://localhost/';
+// ===============================================
+// This file is autogenerated - Please do not edit
+// ===============================================
+var CoordinationApiApiKeys;
+(function (CoordinationApiApiKeys) {
+ CoordinationApiApiKeys[CoordinationApiApiKeys["BearerToken"] = 0] = "BearerToken";
+})(CoordinationApiApiKeys = exports.CoordinationApiApiKeys || (exports.CoordinationApiApiKeys = {}));
+class CoordinationApi {
+ constructor(basePathOrUsername, password, basePath) {
+ this._basePath = defaultBasePath;
+ this.defaultHeaders = {};
+ this._useQuerystring = false;
+ this.authentications = {
+ 'default': new models_1.VoidAuth(),
+ 'BearerToken': new models_2.ApiKeyAuth('header', 'authorization'),
+ };
+ if (password) {
+ if (basePath) {
+ this.basePath = basePath;
+ }
+ }
+ else {
+ if (basePathOrUsername) {
+ this.basePath = basePathOrUsername;
+ }
+ }
+ }
+ set useQuerystring(value) {
+ this._useQuerystring = value;
+ }
+ set basePath(basePath) {
+ this._basePath = basePath;
+ }
+ get basePath() {
+ return this._basePath;
+ }
+ setDefaultAuthentication(auth) {
+ this.authentications.default = auth;
+ }
+ setApiKey(key, value) {
+ this.authentications[CoordinationApiApiKeys[key]].apiKey = value;
+ }
+ /**
+ * get information of a group
+ */
+ getAPIGroup(options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/coordination.k8s.io/';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1APIGroup");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+}
+exports.CoordinationApi = CoordinationApi;
+//# sourceMappingURL=coordinationApi.js.map
\ No newline at end of file
diff --git a/dist/gen/api/coordinationApi.js.map b/dist/gen/api/coordinationApi.js.map
new file mode 100644
index 0000000000..42833507e3
--- /dev/null
+++ b/dist/gen/api/coordinationApi.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"coordinationApi.js","sourceRoot":"","sources":["../../../src/gen/api/coordinationApi.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;;AAEH,2CAA4C;AAM5C,4CAA6E;AAC7E,4CAA6C;AAE7C,IAAI,eAAe,GAAG,kBAAkB,CAAC;AAEzC,kDAAkD;AAClD,kDAAkD;AAClD,kDAAkD;AAElD,IAAY,sBAEX;AAFD,WAAY,sBAAsB;IAC9B,iFAAW,CAAA;AACf,CAAC,EAFW,sBAAsB,GAAtB,8BAAsB,KAAtB,8BAAsB,QAEjC;AAED,MAAa,eAAe;IAWxB,YAAY,kBAA0B,EAAE,QAAiB,EAAE,QAAiB;QAVlE,cAAS,GAAG,eAAe,CAAC;QAC5B,mBAAc,GAAS,EAAE,CAAC;QAC1B,oBAAe,GAAa,KAAK,CAAC;QAElC,oBAAe,GAAG;YACxB,SAAS,EAAkB,IAAI,iBAAQ,EAAE;YACzC,aAAa,EAAE,IAAI,mBAAU,CAAC,QAAQ,EAAE,eAAe,CAAC;SAC3D,CAAA;QAIG,IAAI,QAAQ,EAAE;YACV,IAAI,QAAQ,EAAE;gBACV,IAAI,CAAC,QAAQ,GAAG,QAAQ,CAAC;aAC5B;SACJ;aAAM;YACH,IAAI,kBAAkB,EAAE;gBACpB,IAAI,CAAC,QAAQ,GAAG,kBAAkB,CAAA;aACrC;SACJ;IACL,CAAC;IAED,IAAI,cAAc,CAAC,KAAc;QAC7B,IAAI,CAAC,eAAe,GAAG,KAAK,CAAC;IACjC,CAAC;IAED,IAAI,QAAQ,CAAC,QAAgB;QACzB,IAAI,CAAC,SAAS,GAAG,QAAQ,CAAC;IAC9B,CAAC;IAED,IAAI,QAAQ;QACR,OAAO,IAAI,CAAC,SAAS,CAAC;IAC1B,CAAC;IAEM,wBAAwB,CAAC,IAAoB;QAChD,IAAI,CAAC,eAAe,CAAC,OAAO,GAAG,IAAI,CAAC;IACxC,CAAC;IAEM,SAAS,CAAC,GAA2B,EAAE,KAAa;QACtD,IAAI,CAAC,eAAuB,CAAC,sBAAsB,CAAC,GAAG,CAAC,CAAC,CAAC,MAAM,GAAG,KAAK,CAAC;IAC9E,CAAC;IAED;;OAEG;IACU,WAAW,CAAE,UAA+C,EAAC,OAAO,EAAE,EAAE,EAAC;;YAClF,MAAM,YAAY,GAAG,IAAI,CAAC,QAAQ,GAAG,4BAA4B,CAAC;YAClE,IAAI,uBAAuB,GAAQ,EAAE,CAAC;YACtC,IAAI,oBAAoB,GAAc,MAAO,CAAC,MAAM,CAAC,EAAE,EAAE,IAAI,CAAC,cAAc,CAAC,CAAC;YAC9E,IAAI,kBAAkB,GAAQ,EAAE,CAAC;YAE3B,MAAO,CAAC,MAAM,CAAC,oBAAoB,EAAE,OAAO,CAAC,OAAO,CAAC,CAAC;YAE5D,IAAI,mBAAmB,GAAG,KAAK,CAAC;YAEhC,IAAI,sBAAsB,GAA4B;gBAClD,MAAM,EAAE,KAAK;gBACb,EAAE,EAAE,uBAAuB;gBAC3B,OAAO,EAAE,oBAAoB;gBAC7B,GAAG,EAAE,YAAY;gBACjB,cAAc,EAAE,IAAI,CAAC,eAAe;gBACpC,IAAI,EAAE,IAAI;aACb,CAAC;YAEF,IAAI,qBAAqB,GAAG,OAAO,CAAC,OAAO,EAAE,CAAC;YAC9C,qBAAqB,GAAG,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,eAAe,CAAC,WAAW,CAAC,cAAc,CAAC,sBAAsB,CAAC,CAAC,CAAC;YAElI,qBAAqB,GAAG,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,eAAe,CAAC,OAAO,CAAC,cAAc,CAAC,sBAAsB,CAAC,CAAC,CAAC;YAC9H,OAAO,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE;gBACnC,IAAI,MAAM,CAAC,IAAI,CAAC,kBAAkB,CAAC,CAAC,MAAM,EAAE;oBACxC,IAAI,mBAAmB,EAAE;wBACf,sBAAuB,CAAC,QAAQ,GAAG,kBAAkB,CAAC;qBAC/D;yBAAM;wBACH,sBAAsB,CAAC,IAAI,GAAG,kBAAkB,CAAC;qBACpD;iBACJ;gBACD,OAAO,IAAI,OAAO,CAAyD,CAAC,OAAO,EAAE,MAAM,EAAE,EAAE;oBAC3F,eAAe,CAAC,sBAAsB,EAAE,CAAC,KAAK,EAAE,QAAQ,EAAE,IAAI,EAAE,EAAE;wBAC9D,IAAI,KAAK,EAAE;4BACP,MAAM,CAAC,KAAK,CAAC,CAAC;yBACjB;6BAAM;4BACH,IAAI,GAAG,yBAAgB,CAAC,WAAW,CAAC,IAAI,EAAE,YAAY,CAAC,CAAC;4BACxD,IAAI,QAAQ,CAAC,UAAU,IAAI,QAAQ,CAAC,UAAU,IAAI,GAAG,IAAI,QAAQ,CAAC,UAAU,IAAI,GAAG,EAAE;gCACjF,OAAO,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;6BAC/C;iCAAM;gCACH,MAAM,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;6BAC9C;yBACJ;oBACL,CAAC,CAAC,CAAC;gBACP,CAAC,CAAC,CAAC;YACP,CAAC,CAAC,CAAC;QACP,CAAC;KAAA;CACJ;AA7FD,0CA6FC"}
\ No newline at end of file
diff --git a/dist/gen/api/coordinationV1Api.d.ts b/dist/gen/api/coordinationV1Api.d.ts
new file mode 100644
index 0000000000..fedfde3a3e
--- /dev/null
+++ b/dist/gen/api/coordinationV1Api.d.ts
@@ -0,0 +1,201 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+///
+import http = require('http');
+import { V1APIResourceList } from '../model/v1APIResourceList';
+import { V1DeleteOptions } from '../model/v1DeleteOptions';
+import { V1Lease } from '../model/v1Lease';
+import { V1LeaseList } from '../model/v1LeaseList';
+import { V1Status } from '../model/v1Status';
+import { Authentication } from '../model/models';
+import { ApiKeyAuth } from '../model/models';
+export declare enum CoordinationV1ApiApiKeys {
+ BearerToken = 0
+}
+export declare class CoordinationV1Api {
+ protected _basePath: string;
+ protected defaultHeaders: any;
+ protected _useQuerystring: boolean;
+ protected authentications: {
+ 'default': Authentication;
+ 'BearerToken': ApiKeyAuth;
+ };
+ constructor(basePath?: string);
+ useQuerystring: boolean;
+ basePath: string;
+ setDefaultAuthentication(auth: Authentication): void;
+ setApiKey(key: CoordinationV1ApiApiKeys, value: string): void;
+ /**
+ * create a Lease
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createNamespacedLease(namespace: string, body: V1Lease, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Lease;
+ }>;
+ /**
+ * delete collection of Lease
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionNamespacedLease(namespace: string, pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, dryRun?: string, fieldSelector?: string, gracePeriodSeconds?: number, labelSelector?: string, limit?: number, orphanDependents?: boolean, propagationPolicy?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete a Lease
+ * @param name name of the Lease
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteNamespacedLease(name: string, namespace: string, pretty?: string, dryRun?: string, gracePeriodSeconds?: number, orphanDependents?: boolean, propagationPolicy?: string, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * get available resources
+ */
+ getAPIResources(options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1APIResourceList;
+ }>;
+ /**
+ * list or watch objects of kind Lease
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listLeaseForAllNamespaces(allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, pretty?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1LeaseList;
+ }>;
+ /**
+ * list or watch objects of kind Lease
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listNamespacedLease(namespace: string, pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1LeaseList;
+ }>;
+ /**
+ * partially update the specified Lease
+ * @param name name of the Lease
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedLease(name: string, namespace: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Lease;
+ }>;
+ /**
+ * read the specified Lease
+ * @param name name of the Lease
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readNamespacedLease(name: string, namespace: string, pretty?: string, exact?: boolean, _export?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Lease;
+ }>;
+ /**
+ * replace the specified Lease
+ * @param name name of the Lease
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedLease(name: string, namespace: string, body: V1Lease, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Lease;
+ }>;
+}
diff --git a/dist/gen/api/coordinationV1Api.js b/dist/gen/api/coordinationV1Api.js
new file mode 100644
index 0000000000..ae90e26898
--- /dev/null
+++ b/dist/gen/api/coordinationV1Api.js
@@ -0,0 +1,797 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+const tslib_1 = require("tslib");
+const localVarRequest = require("request");
+const models_1 = require("../model/models");
+const models_2 = require("../model/models");
+let defaultBasePath = 'http://localhost/';
+// ===============================================
+// This file is autogenerated - Please do not edit
+// ===============================================
+var CoordinationV1ApiApiKeys;
+(function (CoordinationV1ApiApiKeys) {
+ CoordinationV1ApiApiKeys[CoordinationV1ApiApiKeys["BearerToken"] = 0] = "BearerToken";
+})(CoordinationV1ApiApiKeys = exports.CoordinationV1ApiApiKeys || (exports.CoordinationV1ApiApiKeys = {}));
+class CoordinationV1Api {
+ constructor(basePathOrUsername, password, basePath) {
+ this._basePath = defaultBasePath;
+ this.defaultHeaders = {};
+ this._useQuerystring = false;
+ this.authentications = {
+ 'default': new models_1.VoidAuth(),
+ 'BearerToken': new models_2.ApiKeyAuth('header', 'authorization'),
+ };
+ if (password) {
+ if (basePath) {
+ this.basePath = basePath;
+ }
+ }
+ else {
+ if (basePathOrUsername) {
+ this.basePath = basePathOrUsername;
+ }
+ }
+ }
+ set useQuerystring(value) {
+ this._useQuerystring = value;
+ }
+ set basePath(basePath) {
+ this._basePath = basePath;
+ }
+ get basePath() {
+ return this._basePath;
+ }
+ setDefaultAuthentication(auth) {
+ this.authentications.default = auth;
+ }
+ setApiKey(key, value) {
+ this.authentications[CoordinationV1ApiApiKeys[key]].apiKey = value;
+ }
+ /**
+ * create a Lease
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createNamespacedLease(namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/coordination.k8s.io/v1/namespaces/{namespace}/leases'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling createNamespacedLease.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling createNamespacedLease.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'POST',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1Lease")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Lease");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete collection of Lease
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionNamespacedLease(namespace, pretty, allowWatchBookmarks, _continue, dryRun, fieldSelector, gracePeriodSeconds, labelSelector, limit, orphanDependents, propagationPolicy, resourceVersion, timeoutSeconds, watch, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/coordination.k8s.io/v1/namespaces/{namespace}/leases'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling deleteCollectionNamespacedLease.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete a Lease
+ * @param name name of the Lease
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteNamespacedLease(name, namespace, pretty, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/coordination.k8s.io/v1/namespaces/{namespace}/leases/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling deleteNamespacedLease.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling deleteNamespacedLease.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * get available resources
+ */
+ getAPIResources(options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/coordination.k8s.io/v1/';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1APIResourceList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind Lease
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listLeaseForAllNamespaces(allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, pretty, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/coordination.k8s.io/v1/leases';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1LeaseList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind Lease
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listNamespacedLease(namespace, pretty, allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/coordination.k8s.io/v1/namespaces/{namespace}/leases'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling listNamespacedLease.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1LeaseList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update the specified Lease
+ * @param name name of the Lease
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedLease(name, namespace, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/coordination.k8s.io/v1/namespaces/{namespace}/leases/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchNamespacedLease.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling patchNamespacedLease.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchNamespacedLease.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Lease");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read the specified Lease
+ * @param name name of the Lease
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readNamespacedLease(name, namespace, pretty, exact, _export, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/coordination.k8s.io/v1/namespaces/{namespace}/leases/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readNamespacedLease.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling readNamespacedLease.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (exact !== undefined) {
+ localVarQueryParameters['exact'] = models_1.ObjectSerializer.serialize(exact, "boolean");
+ }
+ if (_export !== undefined) {
+ localVarQueryParameters['export'] = models_1.ObjectSerializer.serialize(_export, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Lease");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace the specified Lease
+ * @param name name of the Lease
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedLease(name, namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/coordination.k8s.io/v1/namespaces/{namespace}/leases/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceNamespacedLease.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling replaceNamespacedLease.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceNamespacedLease.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1Lease")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Lease");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+}
+exports.CoordinationV1Api = CoordinationV1Api;
+//# sourceMappingURL=coordinationV1Api.js.map
\ No newline at end of file
diff --git a/dist/gen/api/coordinationV1Api.js.map b/dist/gen/api/coordinationV1Api.js.map
new file mode 100644
index 0000000000..3dab021f86
--- /dev/null
+++ b/dist/gen/api/coordinationV1Api.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"coordinationV1Api.js","sourceRoot":"","sources":["../../../src/gen/api/coordinationV1Api.ts"],"names":[],"mappings":"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"}
\ No newline at end of file
diff --git a/dist/gen/api/coordinationV1beta1Api.d.ts b/dist/gen/api/coordinationV1beta1Api.d.ts
new file mode 100644
index 0000000000..6b55de8bc4
--- /dev/null
+++ b/dist/gen/api/coordinationV1beta1Api.d.ts
@@ -0,0 +1,201 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+///
+import http = require('http');
+import { V1APIResourceList } from '../model/v1APIResourceList';
+import { V1DeleteOptions } from '../model/v1DeleteOptions';
+import { V1Status } from '../model/v1Status';
+import { V1beta1Lease } from '../model/v1beta1Lease';
+import { V1beta1LeaseList } from '../model/v1beta1LeaseList';
+import { Authentication } from '../model/models';
+import { ApiKeyAuth } from '../model/models';
+export declare enum CoordinationV1beta1ApiApiKeys {
+ BearerToken = 0
+}
+export declare class CoordinationV1beta1Api {
+ protected _basePath: string;
+ protected defaultHeaders: any;
+ protected _useQuerystring: boolean;
+ protected authentications: {
+ 'default': Authentication;
+ 'BearerToken': ApiKeyAuth;
+ };
+ constructor(basePath?: string);
+ useQuerystring: boolean;
+ basePath: string;
+ setDefaultAuthentication(auth: Authentication): void;
+ setApiKey(key: CoordinationV1beta1ApiApiKeys, value: string): void;
+ /**
+ * create a Lease
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createNamespacedLease(namespace: string, body: V1beta1Lease, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1Lease;
+ }>;
+ /**
+ * delete collection of Lease
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionNamespacedLease(namespace: string, pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, dryRun?: string, fieldSelector?: string, gracePeriodSeconds?: number, labelSelector?: string, limit?: number, orphanDependents?: boolean, propagationPolicy?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete a Lease
+ * @param name name of the Lease
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteNamespacedLease(name: string, namespace: string, pretty?: string, dryRun?: string, gracePeriodSeconds?: number, orphanDependents?: boolean, propagationPolicy?: string, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * get available resources
+ */
+ getAPIResources(options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1APIResourceList;
+ }>;
+ /**
+ * list or watch objects of kind Lease
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listLeaseForAllNamespaces(allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, pretty?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1LeaseList;
+ }>;
+ /**
+ * list or watch objects of kind Lease
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listNamespacedLease(namespace: string, pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1LeaseList;
+ }>;
+ /**
+ * partially update the specified Lease
+ * @param name name of the Lease
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedLease(name: string, namespace: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1Lease;
+ }>;
+ /**
+ * read the specified Lease
+ * @param name name of the Lease
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readNamespacedLease(name: string, namespace: string, pretty?: string, exact?: boolean, _export?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1Lease;
+ }>;
+ /**
+ * replace the specified Lease
+ * @param name name of the Lease
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedLease(name: string, namespace: string, body: V1beta1Lease, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1Lease;
+ }>;
+}
diff --git a/dist/gen/api/coordinationV1beta1Api.js b/dist/gen/api/coordinationV1beta1Api.js
new file mode 100644
index 0000000000..b2fa589e01
--- /dev/null
+++ b/dist/gen/api/coordinationV1beta1Api.js
@@ -0,0 +1,797 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+const tslib_1 = require("tslib");
+const localVarRequest = require("request");
+const models_1 = require("../model/models");
+const models_2 = require("../model/models");
+let defaultBasePath = 'http://localhost/';
+// ===============================================
+// This file is autogenerated - Please do not edit
+// ===============================================
+var CoordinationV1beta1ApiApiKeys;
+(function (CoordinationV1beta1ApiApiKeys) {
+ CoordinationV1beta1ApiApiKeys[CoordinationV1beta1ApiApiKeys["BearerToken"] = 0] = "BearerToken";
+})(CoordinationV1beta1ApiApiKeys = exports.CoordinationV1beta1ApiApiKeys || (exports.CoordinationV1beta1ApiApiKeys = {}));
+class CoordinationV1beta1Api {
+ constructor(basePathOrUsername, password, basePath) {
+ this._basePath = defaultBasePath;
+ this.defaultHeaders = {};
+ this._useQuerystring = false;
+ this.authentications = {
+ 'default': new models_1.VoidAuth(),
+ 'BearerToken': new models_2.ApiKeyAuth('header', 'authorization'),
+ };
+ if (password) {
+ if (basePath) {
+ this.basePath = basePath;
+ }
+ }
+ else {
+ if (basePathOrUsername) {
+ this.basePath = basePathOrUsername;
+ }
+ }
+ }
+ set useQuerystring(value) {
+ this._useQuerystring = value;
+ }
+ set basePath(basePath) {
+ this._basePath = basePath;
+ }
+ get basePath() {
+ return this._basePath;
+ }
+ setDefaultAuthentication(auth) {
+ this.authentications.default = auth;
+ }
+ setApiKey(key, value) {
+ this.authentications[CoordinationV1beta1ApiApiKeys[key]].apiKey = value;
+ }
+ /**
+ * create a Lease
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createNamespacedLease(namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/coordination.k8s.io/v1beta1/namespaces/{namespace}/leases'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling createNamespacedLease.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling createNamespacedLease.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'POST',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1beta1Lease")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1Lease");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete collection of Lease
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionNamespacedLease(namespace, pretty, allowWatchBookmarks, _continue, dryRun, fieldSelector, gracePeriodSeconds, labelSelector, limit, orphanDependents, propagationPolicy, resourceVersion, timeoutSeconds, watch, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/coordination.k8s.io/v1beta1/namespaces/{namespace}/leases'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling deleteCollectionNamespacedLease.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete a Lease
+ * @param name name of the Lease
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteNamespacedLease(name, namespace, pretty, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/coordination.k8s.io/v1beta1/namespaces/{namespace}/leases/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling deleteNamespacedLease.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling deleteNamespacedLease.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * get available resources
+ */
+ getAPIResources(options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/coordination.k8s.io/v1beta1/';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1APIResourceList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind Lease
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listLeaseForAllNamespaces(allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, pretty, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/coordination.k8s.io/v1beta1/leases';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1LeaseList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind Lease
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listNamespacedLease(namespace, pretty, allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/coordination.k8s.io/v1beta1/namespaces/{namespace}/leases'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling listNamespacedLease.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1LeaseList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update the specified Lease
+ * @param name name of the Lease
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedLease(name, namespace, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/coordination.k8s.io/v1beta1/namespaces/{namespace}/leases/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchNamespacedLease.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling patchNamespacedLease.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchNamespacedLease.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1Lease");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read the specified Lease
+ * @param name name of the Lease
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readNamespacedLease(name, namespace, pretty, exact, _export, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/coordination.k8s.io/v1beta1/namespaces/{namespace}/leases/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readNamespacedLease.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling readNamespacedLease.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (exact !== undefined) {
+ localVarQueryParameters['exact'] = models_1.ObjectSerializer.serialize(exact, "boolean");
+ }
+ if (_export !== undefined) {
+ localVarQueryParameters['export'] = models_1.ObjectSerializer.serialize(_export, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1Lease");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace the specified Lease
+ * @param name name of the Lease
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedLease(name, namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/coordination.k8s.io/v1beta1/namespaces/{namespace}/leases/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceNamespacedLease.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling replaceNamespacedLease.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceNamespacedLease.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1beta1Lease")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1Lease");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+}
+exports.CoordinationV1beta1Api = CoordinationV1beta1Api;
+//# sourceMappingURL=coordinationV1beta1Api.js.map
\ No newline at end of file
diff --git a/dist/gen/api/coordinationV1beta1Api.js.map b/dist/gen/api/coordinationV1beta1Api.js.map
new file mode 100644
index 0000000000..a65e185305
--- /dev/null
+++ b/dist/gen/api/coordinationV1beta1Api.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"coordinationV1beta1Api.js","sourceRoot":"","sources":["../../../src/gen/api/coordinationV1beta1Api.ts"],"names":[],"mappings":"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"}
\ No newline at end of file
diff --git a/dist/gen/api/coreApi.d.ts b/dist/gen/api/coreApi.d.ts
new file mode 100644
index 0000000000..34a17b4884
--- /dev/null
+++ b/dist/gen/api/coreApi.d.ts
@@ -0,0 +1,44 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+///
+import http = require('http');
+import { V1APIVersions } from '../model/v1APIVersions';
+import { Authentication } from '../model/models';
+import { ApiKeyAuth } from '../model/models';
+export declare enum CoreApiApiKeys {
+ BearerToken = 0
+}
+export declare class CoreApi {
+ protected _basePath: string;
+ protected defaultHeaders: any;
+ protected _useQuerystring: boolean;
+ protected authentications: {
+ 'default': Authentication;
+ 'BearerToken': ApiKeyAuth;
+ };
+ constructor(basePath?: string);
+ useQuerystring: boolean;
+ basePath: string;
+ setDefaultAuthentication(auth: Authentication): void;
+ setApiKey(key: CoreApiApiKeys, value: string): void;
+ /**
+ * get available API versions
+ */
+ getAPIVersions(options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1APIVersions;
+ }>;
+}
diff --git a/dist/gen/api/coreApi.js b/dist/gen/api/coreApi.js
new file mode 100644
index 0000000000..fbce247dbc
--- /dev/null
+++ b/dist/gen/api/coreApi.js
@@ -0,0 +1,113 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+const tslib_1 = require("tslib");
+const localVarRequest = require("request");
+const models_1 = require("../model/models");
+const models_2 = require("../model/models");
+let defaultBasePath = 'http://localhost/';
+// ===============================================
+// This file is autogenerated - Please do not edit
+// ===============================================
+var CoreApiApiKeys;
+(function (CoreApiApiKeys) {
+ CoreApiApiKeys[CoreApiApiKeys["BearerToken"] = 0] = "BearerToken";
+})(CoreApiApiKeys = exports.CoreApiApiKeys || (exports.CoreApiApiKeys = {}));
+class CoreApi {
+ constructor(basePathOrUsername, password, basePath) {
+ this._basePath = defaultBasePath;
+ this.defaultHeaders = {};
+ this._useQuerystring = false;
+ this.authentications = {
+ 'default': new models_1.VoidAuth(),
+ 'BearerToken': new models_2.ApiKeyAuth('header', 'authorization'),
+ };
+ if (password) {
+ if (basePath) {
+ this.basePath = basePath;
+ }
+ }
+ else {
+ if (basePathOrUsername) {
+ this.basePath = basePathOrUsername;
+ }
+ }
+ }
+ set useQuerystring(value) {
+ this._useQuerystring = value;
+ }
+ set basePath(basePath) {
+ this._basePath = basePath;
+ }
+ get basePath() {
+ return this._basePath;
+ }
+ setDefaultAuthentication(auth) {
+ this.authentications.default = auth;
+ }
+ setApiKey(key, value) {
+ this.authentications[CoreApiApiKeys[key]].apiKey = value;
+ }
+ /**
+ * get available API versions
+ */
+ getAPIVersions(options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1APIVersions");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+}
+exports.CoreApi = CoreApi;
+//# sourceMappingURL=coreApi.js.map
\ No newline at end of file
diff --git a/dist/gen/api/coreApi.js.map b/dist/gen/api/coreApi.js.map
new file mode 100644
index 0000000000..4ef24619bd
--- /dev/null
+++ b/dist/gen/api/coreApi.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"coreApi.js","sourceRoot":"","sources":["../../../src/gen/api/coreApi.ts"],"names":[],"mappings":"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"}
\ No newline at end of file
diff --git a/dist/gen/api/coreV1Api.d.ts b/dist/gen/api/coreV1Api.d.ts
new file mode 100644
index 0000000000..bf8c40272d
--- /dev/null
+++ b/dist/gen/api/coreV1Api.d.ts
@@ -0,0 +1,3493 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+///
+import http = require('http');
+import { V1APIResourceList } from '../model/v1APIResourceList';
+import { V1Binding } from '../model/v1Binding';
+import { V1ComponentStatus } from '../model/v1ComponentStatus';
+import { V1ComponentStatusList } from '../model/v1ComponentStatusList';
+import { V1ConfigMap } from '../model/v1ConfigMap';
+import { V1ConfigMapList } from '../model/v1ConfigMapList';
+import { V1DeleteOptions } from '../model/v1DeleteOptions';
+import { V1Endpoints } from '../model/v1Endpoints';
+import { V1EndpointsList } from '../model/v1EndpointsList';
+import { V1Event } from '../model/v1Event';
+import { V1EventList } from '../model/v1EventList';
+import { V1LimitRange } from '../model/v1LimitRange';
+import { V1LimitRangeList } from '../model/v1LimitRangeList';
+import { V1Namespace } from '../model/v1Namespace';
+import { V1NamespaceList } from '../model/v1NamespaceList';
+import { V1Node } from '../model/v1Node';
+import { V1NodeList } from '../model/v1NodeList';
+import { V1PersistentVolume } from '../model/v1PersistentVolume';
+import { V1PersistentVolumeClaim } from '../model/v1PersistentVolumeClaim';
+import { V1PersistentVolumeClaimList } from '../model/v1PersistentVolumeClaimList';
+import { V1PersistentVolumeList } from '../model/v1PersistentVolumeList';
+import { V1Pod } from '../model/v1Pod';
+import { V1PodList } from '../model/v1PodList';
+import { V1PodTemplate } from '../model/v1PodTemplate';
+import { V1PodTemplateList } from '../model/v1PodTemplateList';
+import { V1ReplicationController } from '../model/v1ReplicationController';
+import { V1ReplicationControllerList } from '../model/v1ReplicationControllerList';
+import { V1ResourceQuota } from '../model/v1ResourceQuota';
+import { V1ResourceQuotaList } from '../model/v1ResourceQuotaList';
+import { V1Scale } from '../model/v1Scale';
+import { V1Secret } from '../model/v1Secret';
+import { V1SecretList } from '../model/v1SecretList';
+import { V1Service } from '../model/v1Service';
+import { V1ServiceAccount } from '../model/v1ServiceAccount';
+import { V1ServiceAccountList } from '../model/v1ServiceAccountList';
+import { V1ServiceList } from '../model/v1ServiceList';
+import { V1Status } from '../model/v1Status';
+import { V1beta1Eviction } from '../model/v1beta1Eviction';
+import { Authentication } from '../model/models';
+import { ApiKeyAuth } from '../model/models';
+export declare enum CoreV1ApiApiKeys {
+ BearerToken = 0
+}
+export declare class CoreV1Api {
+ protected _basePath: string;
+ protected defaultHeaders: any;
+ protected _useQuerystring: boolean;
+ protected authentications: {
+ 'default': Authentication;
+ 'BearerToken': ApiKeyAuth;
+ };
+ constructor(basePath?: string);
+ useQuerystring: boolean;
+ basePath: string;
+ setDefaultAuthentication(auth: Authentication): void;
+ setApiKey(key: CoreV1ApiApiKeys, value: string): void;
+ /**
+ * connect DELETE requests to proxy of Pod
+ * @param name name of the PodProxyOptions
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param path Path is the URL path to use for the current proxy request to pod.
+ */
+ connectDeleteNamespacedPodProxy(name: string, namespace: string, path?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: string;
+ }>;
+ /**
+ * connect DELETE requests to proxy of Pod
+ * @param name name of the PodProxyOptions
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param path path to the resource
+ * @param path2 Path is the URL path to use for the current proxy request to pod.
+ */
+ connectDeleteNamespacedPodProxyWithPath(name: string, namespace: string, path: string, path2?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: string;
+ }>;
+ /**
+ * connect DELETE requests to proxy of Service
+ * @param name name of the ServiceProxyOptions
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param path Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q=user:kimchy. Path is _search?q=user:kimchy.
+ */
+ connectDeleteNamespacedServiceProxy(name: string, namespace: string, path?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: string;
+ }>;
+ /**
+ * connect DELETE requests to proxy of Service
+ * @param name name of the ServiceProxyOptions
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param path path to the resource
+ * @param path2 Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q=user:kimchy. Path is _search?q=user:kimchy.
+ */
+ connectDeleteNamespacedServiceProxyWithPath(name: string, namespace: string, path: string, path2?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: string;
+ }>;
+ /**
+ * connect DELETE requests to proxy of Node
+ * @param name name of the NodeProxyOptions
+ * @param path Path is the URL path to use for the current proxy request to node.
+ */
+ connectDeleteNodeProxy(name: string, path?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: string;
+ }>;
+ /**
+ * connect DELETE requests to proxy of Node
+ * @param name name of the NodeProxyOptions
+ * @param path path to the resource
+ * @param path2 Path is the URL path to use for the current proxy request to node.
+ */
+ connectDeleteNodeProxyWithPath(name: string, path: string, path2?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: string;
+ }>;
+ /**
+ * connect GET requests to attach of Pod
+ * @param name name of the PodAttachOptions
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param container The container in which to execute the command. Defaults to only container if there is only one container in the pod.
+ * @param stderr Stderr if true indicates that stderr is to be redirected for the attach call. Defaults to true.
+ * @param stdin Stdin if true, redirects the standard input stream of the pod for this call. Defaults to false.
+ * @param stdout Stdout if true indicates that stdout is to be redirected for the attach call. Defaults to true.
+ * @param tty TTY if true indicates that a tty will be allocated for the attach call. This is passed through the container runtime so the tty is allocated on the worker node by the container runtime. Defaults to false.
+ */
+ connectGetNamespacedPodAttach(name: string, namespace: string, container?: string, stderr?: boolean, stdin?: boolean, stdout?: boolean, tty?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: string;
+ }>;
+ /**
+ * connect GET requests to exec of Pod
+ * @param name name of the PodExecOptions
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param command Command is the remote command to execute. argv array. Not executed within a shell.
+ * @param container Container in which to execute the command. Defaults to only container if there is only one container in the pod.
+ * @param stderr Redirect the standard error stream of the pod for this call. Defaults to true.
+ * @param stdin Redirect the standard input stream of the pod for this call. Defaults to false.
+ * @param stdout Redirect the standard output stream of the pod for this call. Defaults to true.
+ * @param tty TTY if true indicates that a tty will be allocated for the exec call. Defaults to false.
+ */
+ connectGetNamespacedPodExec(name: string, namespace: string, command?: string, container?: string, stderr?: boolean, stdin?: boolean, stdout?: boolean, tty?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: string;
+ }>;
+ /**
+ * connect GET requests to portforward of Pod
+ * @param name name of the PodPortForwardOptions
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param ports List of ports to forward Required when using WebSockets
+ */
+ connectGetNamespacedPodPortforward(name: string, namespace: string, ports?: number, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: string;
+ }>;
+ /**
+ * connect GET requests to proxy of Pod
+ * @param name name of the PodProxyOptions
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param path Path is the URL path to use for the current proxy request to pod.
+ */
+ connectGetNamespacedPodProxy(name: string, namespace: string, path?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: string;
+ }>;
+ /**
+ * connect GET requests to proxy of Pod
+ * @param name name of the PodProxyOptions
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param path path to the resource
+ * @param path2 Path is the URL path to use for the current proxy request to pod.
+ */
+ connectGetNamespacedPodProxyWithPath(name: string, namespace: string, path: string, path2?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: string;
+ }>;
+ /**
+ * connect GET requests to proxy of Service
+ * @param name name of the ServiceProxyOptions
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param path Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q=user:kimchy. Path is _search?q=user:kimchy.
+ */
+ connectGetNamespacedServiceProxy(name: string, namespace: string, path?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: string;
+ }>;
+ /**
+ * connect GET requests to proxy of Service
+ * @param name name of the ServiceProxyOptions
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param path path to the resource
+ * @param path2 Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q=user:kimchy. Path is _search?q=user:kimchy.
+ */
+ connectGetNamespacedServiceProxyWithPath(name: string, namespace: string, path: string, path2?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: string;
+ }>;
+ /**
+ * connect GET requests to proxy of Node
+ * @param name name of the NodeProxyOptions
+ * @param path Path is the URL path to use for the current proxy request to node.
+ */
+ connectGetNodeProxy(name: string, path?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: string;
+ }>;
+ /**
+ * connect GET requests to proxy of Node
+ * @param name name of the NodeProxyOptions
+ * @param path path to the resource
+ * @param path2 Path is the URL path to use for the current proxy request to node.
+ */
+ connectGetNodeProxyWithPath(name: string, path: string, path2?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: string;
+ }>;
+ /**
+ * connect HEAD requests to proxy of Pod
+ * @param name name of the PodProxyOptions
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param path Path is the URL path to use for the current proxy request to pod.
+ */
+ connectHeadNamespacedPodProxy(name: string, namespace: string, path?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: string;
+ }>;
+ /**
+ * connect HEAD requests to proxy of Pod
+ * @param name name of the PodProxyOptions
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param path path to the resource
+ * @param path2 Path is the URL path to use for the current proxy request to pod.
+ */
+ connectHeadNamespacedPodProxyWithPath(name: string, namespace: string, path: string, path2?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: string;
+ }>;
+ /**
+ * connect HEAD requests to proxy of Service
+ * @param name name of the ServiceProxyOptions
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param path Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q=user:kimchy. Path is _search?q=user:kimchy.
+ */
+ connectHeadNamespacedServiceProxy(name: string, namespace: string, path?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: string;
+ }>;
+ /**
+ * connect HEAD requests to proxy of Service
+ * @param name name of the ServiceProxyOptions
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param path path to the resource
+ * @param path2 Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q=user:kimchy. Path is _search?q=user:kimchy.
+ */
+ connectHeadNamespacedServiceProxyWithPath(name: string, namespace: string, path: string, path2?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: string;
+ }>;
+ /**
+ * connect HEAD requests to proxy of Node
+ * @param name name of the NodeProxyOptions
+ * @param path Path is the URL path to use for the current proxy request to node.
+ */
+ connectHeadNodeProxy(name: string, path?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: string;
+ }>;
+ /**
+ * connect HEAD requests to proxy of Node
+ * @param name name of the NodeProxyOptions
+ * @param path path to the resource
+ * @param path2 Path is the URL path to use for the current proxy request to node.
+ */
+ connectHeadNodeProxyWithPath(name: string, path: string, path2?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: string;
+ }>;
+ /**
+ * connect OPTIONS requests to proxy of Pod
+ * @param name name of the PodProxyOptions
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param path Path is the URL path to use for the current proxy request to pod.
+ */
+ connectOptionsNamespacedPodProxy(name: string, namespace: string, path?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: string;
+ }>;
+ /**
+ * connect OPTIONS requests to proxy of Pod
+ * @param name name of the PodProxyOptions
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param path path to the resource
+ * @param path2 Path is the URL path to use for the current proxy request to pod.
+ */
+ connectOptionsNamespacedPodProxyWithPath(name: string, namespace: string, path: string, path2?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: string;
+ }>;
+ /**
+ * connect OPTIONS requests to proxy of Service
+ * @param name name of the ServiceProxyOptions
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param path Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q=user:kimchy. Path is _search?q=user:kimchy.
+ */
+ connectOptionsNamespacedServiceProxy(name: string, namespace: string, path?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: string;
+ }>;
+ /**
+ * connect OPTIONS requests to proxy of Service
+ * @param name name of the ServiceProxyOptions
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param path path to the resource
+ * @param path2 Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q=user:kimchy. Path is _search?q=user:kimchy.
+ */
+ connectOptionsNamespacedServiceProxyWithPath(name: string, namespace: string, path: string, path2?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: string;
+ }>;
+ /**
+ * connect OPTIONS requests to proxy of Node
+ * @param name name of the NodeProxyOptions
+ * @param path Path is the URL path to use for the current proxy request to node.
+ */
+ connectOptionsNodeProxy(name: string, path?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: string;
+ }>;
+ /**
+ * connect OPTIONS requests to proxy of Node
+ * @param name name of the NodeProxyOptions
+ * @param path path to the resource
+ * @param path2 Path is the URL path to use for the current proxy request to node.
+ */
+ connectOptionsNodeProxyWithPath(name: string, path: string, path2?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: string;
+ }>;
+ /**
+ * connect PATCH requests to proxy of Pod
+ * @param name name of the PodProxyOptions
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param path Path is the URL path to use for the current proxy request to pod.
+ */
+ connectPatchNamespacedPodProxy(name: string, namespace: string, path?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: string;
+ }>;
+ /**
+ * connect PATCH requests to proxy of Pod
+ * @param name name of the PodProxyOptions
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param path path to the resource
+ * @param path2 Path is the URL path to use for the current proxy request to pod.
+ */
+ connectPatchNamespacedPodProxyWithPath(name: string, namespace: string, path: string, path2?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: string;
+ }>;
+ /**
+ * connect PATCH requests to proxy of Service
+ * @param name name of the ServiceProxyOptions
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param path Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q=user:kimchy. Path is _search?q=user:kimchy.
+ */
+ connectPatchNamespacedServiceProxy(name: string, namespace: string, path?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: string;
+ }>;
+ /**
+ * connect PATCH requests to proxy of Service
+ * @param name name of the ServiceProxyOptions
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param path path to the resource
+ * @param path2 Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q=user:kimchy. Path is _search?q=user:kimchy.
+ */
+ connectPatchNamespacedServiceProxyWithPath(name: string, namespace: string, path: string, path2?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: string;
+ }>;
+ /**
+ * connect PATCH requests to proxy of Node
+ * @param name name of the NodeProxyOptions
+ * @param path Path is the URL path to use for the current proxy request to node.
+ */
+ connectPatchNodeProxy(name: string, path?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: string;
+ }>;
+ /**
+ * connect PATCH requests to proxy of Node
+ * @param name name of the NodeProxyOptions
+ * @param path path to the resource
+ * @param path2 Path is the URL path to use for the current proxy request to node.
+ */
+ connectPatchNodeProxyWithPath(name: string, path: string, path2?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: string;
+ }>;
+ /**
+ * connect POST requests to attach of Pod
+ * @param name name of the PodAttachOptions
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param container The container in which to execute the command. Defaults to only container if there is only one container in the pod.
+ * @param stderr Stderr if true indicates that stderr is to be redirected for the attach call. Defaults to true.
+ * @param stdin Stdin if true, redirects the standard input stream of the pod for this call. Defaults to false.
+ * @param stdout Stdout if true indicates that stdout is to be redirected for the attach call. Defaults to true.
+ * @param tty TTY if true indicates that a tty will be allocated for the attach call. This is passed through the container runtime so the tty is allocated on the worker node by the container runtime. Defaults to false.
+ */
+ connectPostNamespacedPodAttach(name: string, namespace: string, container?: string, stderr?: boolean, stdin?: boolean, stdout?: boolean, tty?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: string;
+ }>;
+ /**
+ * connect POST requests to exec of Pod
+ * @param name name of the PodExecOptions
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param command Command is the remote command to execute. argv array. Not executed within a shell.
+ * @param container Container in which to execute the command. Defaults to only container if there is only one container in the pod.
+ * @param stderr Redirect the standard error stream of the pod for this call. Defaults to true.
+ * @param stdin Redirect the standard input stream of the pod for this call. Defaults to false.
+ * @param stdout Redirect the standard output stream of the pod for this call. Defaults to true.
+ * @param tty TTY if true indicates that a tty will be allocated for the exec call. Defaults to false.
+ */
+ connectPostNamespacedPodExec(name: string, namespace: string, command?: string, container?: string, stderr?: boolean, stdin?: boolean, stdout?: boolean, tty?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: string;
+ }>;
+ /**
+ * connect POST requests to portforward of Pod
+ * @param name name of the PodPortForwardOptions
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param ports List of ports to forward Required when using WebSockets
+ */
+ connectPostNamespacedPodPortforward(name: string, namespace: string, ports?: number, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: string;
+ }>;
+ /**
+ * connect POST requests to proxy of Pod
+ * @param name name of the PodProxyOptions
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param path Path is the URL path to use for the current proxy request to pod.
+ */
+ connectPostNamespacedPodProxy(name: string, namespace: string, path?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: string;
+ }>;
+ /**
+ * connect POST requests to proxy of Pod
+ * @param name name of the PodProxyOptions
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param path path to the resource
+ * @param path2 Path is the URL path to use for the current proxy request to pod.
+ */
+ connectPostNamespacedPodProxyWithPath(name: string, namespace: string, path: string, path2?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: string;
+ }>;
+ /**
+ * connect POST requests to proxy of Service
+ * @param name name of the ServiceProxyOptions
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param path Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q=user:kimchy. Path is _search?q=user:kimchy.
+ */
+ connectPostNamespacedServiceProxy(name: string, namespace: string, path?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: string;
+ }>;
+ /**
+ * connect POST requests to proxy of Service
+ * @param name name of the ServiceProxyOptions
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param path path to the resource
+ * @param path2 Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q=user:kimchy. Path is _search?q=user:kimchy.
+ */
+ connectPostNamespacedServiceProxyWithPath(name: string, namespace: string, path: string, path2?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: string;
+ }>;
+ /**
+ * connect POST requests to proxy of Node
+ * @param name name of the NodeProxyOptions
+ * @param path Path is the URL path to use for the current proxy request to node.
+ */
+ connectPostNodeProxy(name: string, path?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: string;
+ }>;
+ /**
+ * connect POST requests to proxy of Node
+ * @param name name of the NodeProxyOptions
+ * @param path path to the resource
+ * @param path2 Path is the URL path to use for the current proxy request to node.
+ */
+ connectPostNodeProxyWithPath(name: string, path: string, path2?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: string;
+ }>;
+ /**
+ * connect PUT requests to proxy of Pod
+ * @param name name of the PodProxyOptions
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param path Path is the URL path to use for the current proxy request to pod.
+ */
+ connectPutNamespacedPodProxy(name: string, namespace: string, path?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: string;
+ }>;
+ /**
+ * connect PUT requests to proxy of Pod
+ * @param name name of the PodProxyOptions
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param path path to the resource
+ * @param path2 Path is the URL path to use for the current proxy request to pod.
+ */
+ connectPutNamespacedPodProxyWithPath(name: string, namespace: string, path: string, path2?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: string;
+ }>;
+ /**
+ * connect PUT requests to proxy of Service
+ * @param name name of the ServiceProxyOptions
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param path Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q=user:kimchy. Path is _search?q=user:kimchy.
+ */
+ connectPutNamespacedServiceProxy(name: string, namespace: string, path?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: string;
+ }>;
+ /**
+ * connect PUT requests to proxy of Service
+ * @param name name of the ServiceProxyOptions
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param path path to the resource
+ * @param path2 Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q=user:kimchy. Path is _search?q=user:kimchy.
+ */
+ connectPutNamespacedServiceProxyWithPath(name: string, namespace: string, path: string, path2?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: string;
+ }>;
+ /**
+ * connect PUT requests to proxy of Node
+ * @param name name of the NodeProxyOptions
+ * @param path Path is the URL path to use for the current proxy request to node.
+ */
+ connectPutNodeProxy(name: string, path?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: string;
+ }>;
+ /**
+ * connect PUT requests to proxy of Node
+ * @param name name of the NodeProxyOptions
+ * @param path path to the resource
+ * @param path2 Path is the URL path to use for the current proxy request to node.
+ */
+ connectPutNodeProxyWithPath(name: string, path: string, path2?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: string;
+ }>;
+ /**
+ * create a Namespace
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createNamespace(body: V1Namespace, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Namespace;
+ }>;
+ /**
+ * create a Binding
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ createNamespacedBinding(namespace: string, body: V1Binding, dryRun?: string, fieldManager?: string, pretty?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Binding;
+ }>;
+ /**
+ * create a ConfigMap
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createNamespacedConfigMap(namespace: string, body: V1ConfigMap, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1ConfigMap;
+ }>;
+ /**
+ * create Endpoints
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createNamespacedEndpoints(namespace: string, body: V1Endpoints, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Endpoints;
+ }>;
+ /**
+ * create an Event
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createNamespacedEvent(namespace: string, body: V1Event, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Event;
+ }>;
+ /**
+ * create a LimitRange
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createNamespacedLimitRange(namespace: string, body: V1LimitRange, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1LimitRange;
+ }>;
+ /**
+ * create a PersistentVolumeClaim
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createNamespacedPersistentVolumeClaim(namespace: string, body: V1PersistentVolumeClaim, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1PersistentVolumeClaim;
+ }>;
+ /**
+ * create a Pod
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createNamespacedPod(namespace: string, body: V1Pod, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Pod;
+ }>;
+ /**
+ * create binding of a Pod
+ * @param name name of the Binding
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ createNamespacedPodBinding(name: string, namespace: string, body: V1Binding, dryRun?: string, fieldManager?: string, pretty?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Binding;
+ }>;
+ /**
+ * create eviction of a Pod
+ * @param name name of the Eviction
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ createNamespacedPodEviction(name: string, namespace: string, body: V1beta1Eviction, dryRun?: string, fieldManager?: string, pretty?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1Eviction;
+ }>;
+ /**
+ * create a PodTemplate
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createNamespacedPodTemplate(namespace: string, body: V1PodTemplate, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1PodTemplate;
+ }>;
+ /**
+ * create a ReplicationController
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createNamespacedReplicationController(namespace: string, body: V1ReplicationController, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1ReplicationController;
+ }>;
+ /**
+ * create a ResourceQuota
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createNamespacedResourceQuota(namespace: string, body: V1ResourceQuota, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1ResourceQuota;
+ }>;
+ /**
+ * create a Secret
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createNamespacedSecret(namespace: string, body: V1Secret, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Secret;
+ }>;
+ /**
+ * create a Service
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createNamespacedService(namespace: string, body: V1Service, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Service;
+ }>;
+ /**
+ * create a ServiceAccount
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createNamespacedServiceAccount(namespace: string, body: V1ServiceAccount, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1ServiceAccount;
+ }>;
+ /**
+ * create a Node
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createNode(body: V1Node, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Node;
+ }>;
+ /**
+ * create a PersistentVolume
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createPersistentVolume(body: V1PersistentVolume, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1PersistentVolume;
+ }>;
+ /**
+ * delete collection of ConfigMap
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionNamespacedConfigMap(namespace: string, pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, dryRun?: string, fieldSelector?: string, gracePeriodSeconds?: number, labelSelector?: string, limit?: number, orphanDependents?: boolean, propagationPolicy?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete collection of Endpoints
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionNamespacedEndpoints(namespace: string, pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, dryRun?: string, fieldSelector?: string, gracePeriodSeconds?: number, labelSelector?: string, limit?: number, orphanDependents?: boolean, propagationPolicy?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete collection of Event
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionNamespacedEvent(namespace: string, pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, dryRun?: string, fieldSelector?: string, gracePeriodSeconds?: number, labelSelector?: string, limit?: number, orphanDependents?: boolean, propagationPolicy?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete collection of LimitRange
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionNamespacedLimitRange(namespace: string, pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, dryRun?: string, fieldSelector?: string, gracePeriodSeconds?: number, labelSelector?: string, limit?: number, orphanDependents?: boolean, propagationPolicy?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete collection of PersistentVolumeClaim
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionNamespacedPersistentVolumeClaim(namespace: string, pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, dryRun?: string, fieldSelector?: string, gracePeriodSeconds?: number, labelSelector?: string, limit?: number, orphanDependents?: boolean, propagationPolicy?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete collection of Pod
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionNamespacedPod(namespace: string, pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, dryRun?: string, fieldSelector?: string, gracePeriodSeconds?: number, labelSelector?: string, limit?: number, orphanDependents?: boolean, propagationPolicy?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete collection of PodTemplate
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionNamespacedPodTemplate(namespace: string, pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, dryRun?: string, fieldSelector?: string, gracePeriodSeconds?: number, labelSelector?: string, limit?: number, orphanDependents?: boolean, propagationPolicy?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete collection of ReplicationController
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionNamespacedReplicationController(namespace: string, pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, dryRun?: string, fieldSelector?: string, gracePeriodSeconds?: number, labelSelector?: string, limit?: number, orphanDependents?: boolean, propagationPolicy?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete collection of ResourceQuota
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionNamespacedResourceQuota(namespace: string, pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, dryRun?: string, fieldSelector?: string, gracePeriodSeconds?: number, labelSelector?: string, limit?: number, orphanDependents?: boolean, propagationPolicy?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete collection of Secret
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionNamespacedSecret(namespace: string, pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, dryRun?: string, fieldSelector?: string, gracePeriodSeconds?: number, labelSelector?: string, limit?: number, orphanDependents?: boolean, propagationPolicy?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete collection of ServiceAccount
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionNamespacedServiceAccount(namespace: string, pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, dryRun?: string, fieldSelector?: string, gracePeriodSeconds?: number, labelSelector?: string, limit?: number, orphanDependents?: boolean, propagationPolicy?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete collection of Node
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionNode(pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, dryRun?: string, fieldSelector?: string, gracePeriodSeconds?: number, labelSelector?: string, limit?: number, orphanDependents?: boolean, propagationPolicy?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete collection of PersistentVolume
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionPersistentVolume(pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, dryRun?: string, fieldSelector?: string, gracePeriodSeconds?: number, labelSelector?: string, limit?: number, orphanDependents?: boolean, propagationPolicy?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete a Namespace
+ * @param name name of the Namespace
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteNamespace(name: string, pretty?: string, dryRun?: string, gracePeriodSeconds?: number, orphanDependents?: boolean, propagationPolicy?: string, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete a ConfigMap
+ * @param name name of the ConfigMap
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteNamespacedConfigMap(name: string, namespace: string, pretty?: string, dryRun?: string, gracePeriodSeconds?: number, orphanDependents?: boolean, propagationPolicy?: string, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete Endpoints
+ * @param name name of the Endpoints
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteNamespacedEndpoints(name: string, namespace: string, pretty?: string, dryRun?: string, gracePeriodSeconds?: number, orphanDependents?: boolean, propagationPolicy?: string, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete an Event
+ * @param name name of the Event
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteNamespacedEvent(name: string, namespace: string, pretty?: string, dryRun?: string, gracePeriodSeconds?: number, orphanDependents?: boolean, propagationPolicy?: string, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete a LimitRange
+ * @param name name of the LimitRange
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteNamespacedLimitRange(name: string, namespace: string, pretty?: string, dryRun?: string, gracePeriodSeconds?: number, orphanDependents?: boolean, propagationPolicy?: string, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete a PersistentVolumeClaim
+ * @param name name of the PersistentVolumeClaim
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteNamespacedPersistentVolumeClaim(name: string, namespace: string, pretty?: string, dryRun?: string, gracePeriodSeconds?: number, orphanDependents?: boolean, propagationPolicy?: string, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete a Pod
+ * @param name name of the Pod
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteNamespacedPod(name: string, namespace: string, pretty?: string, dryRun?: string, gracePeriodSeconds?: number, orphanDependents?: boolean, propagationPolicy?: string, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete a PodTemplate
+ * @param name name of the PodTemplate
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteNamespacedPodTemplate(name: string, namespace: string, pretty?: string, dryRun?: string, gracePeriodSeconds?: number, orphanDependents?: boolean, propagationPolicy?: string, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete a ReplicationController
+ * @param name name of the ReplicationController
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteNamespacedReplicationController(name: string, namespace: string, pretty?: string, dryRun?: string, gracePeriodSeconds?: number, orphanDependents?: boolean, propagationPolicy?: string, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete a ResourceQuota
+ * @param name name of the ResourceQuota
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteNamespacedResourceQuota(name: string, namespace: string, pretty?: string, dryRun?: string, gracePeriodSeconds?: number, orphanDependents?: boolean, propagationPolicy?: string, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete a Secret
+ * @param name name of the Secret
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteNamespacedSecret(name: string, namespace: string, pretty?: string, dryRun?: string, gracePeriodSeconds?: number, orphanDependents?: boolean, propagationPolicy?: string, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete a Service
+ * @param name name of the Service
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteNamespacedService(name: string, namespace: string, pretty?: string, dryRun?: string, gracePeriodSeconds?: number, orphanDependents?: boolean, propagationPolicy?: string, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete a ServiceAccount
+ * @param name name of the ServiceAccount
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteNamespacedServiceAccount(name: string, namespace: string, pretty?: string, dryRun?: string, gracePeriodSeconds?: number, orphanDependents?: boolean, propagationPolicy?: string, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete a Node
+ * @param name name of the Node
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteNode(name: string, pretty?: string, dryRun?: string, gracePeriodSeconds?: number, orphanDependents?: boolean, propagationPolicy?: string, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete a PersistentVolume
+ * @param name name of the PersistentVolume
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deletePersistentVolume(name: string, pretty?: string, dryRun?: string, gracePeriodSeconds?: number, orphanDependents?: boolean, propagationPolicy?: string, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * get available resources
+ */
+ getAPIResources(options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1APIResourceList;
+ }>;
+ /**
+ * list objects of kind ComponentStatus
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listComponentStatus(allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, pretty?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1ComponentStatusList;
+ }>;
+ /**
+ * list or watch objects of kind ConfigMap
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listConfigMapForAllNamespaces(allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, pretty?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1ConfigMapList;
+ }>;
+ /**
+ * list or watch objects of kind Endpoints
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listEndpointsForAllNamespaces(allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, pretty?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1EndpointsList;
+ }>;
+ /**
+ * list or watch objects of kind Event
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listEventForAllNamespaces(allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, pretty?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1EventList;
+ }>;
+ /**
+ * list or watch objects of kind LimitRange
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listLimitRangeForAllNamespaces(allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, pretty?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1LimitRangeList;
+ }>;
+ /**
+ * list or watch objects of kind Namespace
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listNamespace(pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1NamespaceList;
+ }>;
+ /**
+ * list or watch objects of kind ConfigMap
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listNamespacedConfigMap(namespace: string, pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1ConfigMapList;
+ }>;
+ /**
+ * list or watch objects of kind Endpoints
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listNamespacedEndpoints(namespace: string, pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1EndpointsList;
+ }>;
+ /**
+ * list or watch objects of kind Event
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listNamespacedEvent(namespace: string, pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1EventList;
+ }>;
+ /**
+ * list or watch objects of kind LimitRange
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listNamespacedLimitRange(namespace: string, pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1LimitRangeList;
+ }>;
+ /**
+ * list or watch objects of kind PersistentVolumeClaim
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listNamespacedPersistentVolumeClaim(namespace: string, pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1PersistentVolumeClaimList;
+ }>;
+ /**
+ * list or watch objects of kind Pod
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listNamespacedPod(namespace: string, pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1PodList;
+ }>;
+ /**
+ * list or watch objects of kind PodTemplate
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listNamespacedPodTemplate(namespace: string, pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1PodTemplateList;
+ }>;
+ /**
+ * list or watch objects of kind ReplicationController
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listNamespacedReplicationController(namespace: string, pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1ReplicationControllerList;
+ }>;
+ /**
+ * list or watch objects of kind ResourceQuota
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listNamespacedResourceQuota(namespace: string, pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1ResourceQuotaList;
+ }>;
+ /**
+ * list or watch objects of kind Secret
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listNamespacedSecret(namespace: string, pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1SecretList;
+ }>;
+ /**
+ * list or watch objects of kind Service
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listNamespacedService(namespace: string, pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1ServiceList;
+ }>;
+ /**
+ * list or watch objects of kind ServiceAccount
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listNamespacedServiceAccount(namespace: string, pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1ServiceAccountList;
+ }>;
+ /**
+ * list or watch objects of kind Node
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listNode(pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1NodeList;
+ }>;
+ /**
+ * list or watch objects of kind PersistentVolume
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listPersistentVolume(pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1PersistentVolumeList;
+ }>;
+ /**
+ * list or watch objects of kind PersistentVolumeClaim
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listPersistentVolumeClaimForAllNamespaces(allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, pretty?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1PersistentVolumeClaimList;
+ }>;
+ /**
+ * list or watch objects of kind Pod
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listPodForAllNamespaces(allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, pretty?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1PodList;
+ }>;
+ /**
+ * list or watch objects of kind PodTemplate
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listPodTemplateForAllNamespaces(allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, pretty?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1PodTemplateList;
+ }>;
+ /**
+ * list or watch objects of kind ReplicationController
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listReplicationControllerForAllNamespaces(allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, pretty?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1ReplicationControllerList;
+ }>;
+ /**
+ * list or watch objects of kind ResourceQuota
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listResourceQuotaForAllNamespaces(allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, pretty?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1ResourceQuotaList;
+ }>;
+ /**
+ * list or watch objects of kind Secret
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listSecretForAllNamespaces(allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, pretty?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1SecretList;
+ }>;
+ /**
+ * list or watch objects of kind ServiceAccount
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listServiceAccountForAllNamespaces(allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, pretty?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1ServiceAccountList;
+ }>;
+ /**
+ * list or watch objects of kind Service
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listServiceForAllNamespaces(allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, pretty?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1ServiceList;
+ }>;
+ /**
+ * partially update the specified Namespace
+ * @param name name of the Namespace
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespace(name: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Namespace;
+ }>;
+ /**
+ * partially update status of the specified Namespace
+ * @param name name of the Namespace
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespaceStatus(name: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Namespace;
+ }>;
+ /**
+ * partially update the specified ConfigMap
+ * @param name name of the ConfigMap
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedConfigMap(name: string, namespace: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1ConfigMap;
+ }>;
+ /**
+ * partially update the specified Endpoints
+ * @param name name of the Endpoints
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedEndpoints(name: string, namespace: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Endpoints;
+ }>;
+ /**
+ * partially update the specified Event
+ * @param name name of the Event
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedEvent(name: string, namespace: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Event;
+ }>;
+ /**
+ * partially update the specified LimitRange
+ * @param name name of the LimitRange
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedLimitRange(name: string, namespace: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1LimitRange;
+ }>;
+ /**
+ * partially update the specified PersistentVolumeClaim
+ * @param name name of the PersistentVolumeClaim
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedPersistentVolumeClaim(name: string, namespace: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1PersistentVolumeClaim;
+ }>;
+ /**
+ * partially update status of the specified PersistentVolumeClaim
+ * @param name name of the PersistentVolumeClaim
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedPersistentVolumeClaimStatus(name: string, namespace: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1PersistentVolumeClaim;
+ }>;
+ /**
+ * partially update the specified Pod
+ * @param name name of the Pod
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedPod(name: string, namespace: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Pod;
+ }>;
+ /**
+ * partially update status of the specified Pod
+ * @param name name of the Pod
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedPodStatus(name: string, namespace: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Pod;
+ }>;
+ /**
+ * partially update the specified PodTemplate
+ * @param name name of the PodTemplate
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedPodTemplate(name: string, namespace: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1PodTemplate;
+ }>;
+ /**
+ * partially update the specified ReplicationController
+ * @param name name of the ReplicationController
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedReplicationController(name: string, namespace: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1ReplicationController;
+ }>;
+ /**
+ * partially update scale of the specified ReplicationController
+ * @param name name of the Scale
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedReplicationControllerScale(name: string, namespace: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Scale;
+ }>;
+ /**
+ * partially update status of the specified ReplicationController
+ * @param name name of the ReplicationController
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedReplicationControllerStatus(name: string, namespace: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1ReplicationController;
+ }>;
+ /**
+ * partially update the specified ResourceQuota
+ * @param name name of the ResourceQuota
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedResourceQuota(name: string, namespace: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1ResourceQuota;
+ }>;
+ /**
+ * partially update status of the specified ResourceQuota
+ * @param name name of the ResourceQuota
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedResourceQuotaStatus(name: string, namespace: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1ResourceQuota;
+ }>;
+ /**
+ * partially update the specified Secret
+ * @param name name of the Secret
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedSecret(name: string, namespace: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Secret;
+ }>;
+ /**
+ * partially update the specified Service
+ * @param name name of the Service
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedService(name: string, namespace: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Service;
+ }>;
+ /**
+ * partially update the specified ServiceAccount
+ * @param name name of the ServiceAccount
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedServiceAccount(name: string, namespace: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1ServiceAccount;
+ }>;
+ /**
+ * partially update status of the specified Service
+ * @param name name of the Service
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedServiceStatus(name: string, namespace: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Service;
+ }>;
+ /**
+ * partially update the specified Node
+ * @param name name of the Node
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNode(name: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Node;
+ }>;
+ /**
+ * partially update status of the specified Node
+ * @param name name of the Node
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNodeStatus(name: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Node;
+ }>;
+ /**
+ * partially update the specified PersistentVolume
+ * @param name name of the PersistentVolume
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchPersistentVolume(name: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1PersistentVolume;
+ }>;
+ /**
+ * partially update status of the specified PersistentVolume
+ * @param name name of the PersistentVolume
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchPersistentVolumeStatus(name: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1PersistentVolume;
+ }>;
+ /**
+ * read the specified ComponentStatus
+ * @param name name of the ComponentStatus
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readComponentStatus(name: string, pretty?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1ComponentStatus;
+ }>;
+ /**
+ * read the specified Namespace
+ * @param name name of the Namespace
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readNamespace(name: string, pretty?: string, exact?: boolean, _export?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Namespace;
+ }>;
+ /**
+ * read status of the specified Namespace
+ * @param name name of the Namespace
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readNamespaceStatus(name: string, pretty?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Namespace;
+ }>;
+ /**
+ * read the specified ConfigMap
+ * @param name name of the ConfigMap
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readNamespacedConfigMap(name: string, namespace: string, pretty?: string, exact?: boolean, _export?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1ConfigMap;
+ }>;
+ /**
+ * read the specified Endpoints
+ * @param name name of the Endpoints
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readNamespacedEndpoints(name: string, namespace: string, pretty?: string, exact?: boolean, _export?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Endpoints;
+ }>;
+ /**
+ * read the specified Event
+ * @param name name of the Event
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readNamespacedEvent(name: string, namespace: string, pretty?: string, exact?: boolean, _export?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Event;
+ }>;
+ /**
+ * read the specified LimitRange
+ * @param name name of the LimitRange
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readNamespacedLimitRange(name: string, namespace: string, pretty?: string, exact?: boolean, _export?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1LimitRange;
+ }>;
+ /**
+ * read the specified PersistentVolumeClaim
+ * @param name name of the PersistentVolumeClaim
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readNamespacedPersistentVolumeClaim(name: string, namespace: string, pretty?: string, exact?: boolean, _export?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1PersistentVolumeClaim;
+ }>;
+ /**
+ * read status of the specified PersistentVolumeClaim
+ * @param name name of the PersistentVolumeClaim
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readNamespacedPersistentVolumeClaimStatus(name: string, namespace: string, pretty?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1PersistentVolumeClaim;
+ }>;
+ /**
+ * read the specified Pod
+ * @param name name of the Pod
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readNamespacedPod(name: string, namespace: string, pretty?: string, exact?: boolean, _export?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Pod;
+ }>;
+ /**
+ * read log of the specified Pod
+ * @param name name of the Pod
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param container The container for which to stream logs. Defaults to only container if there is one container in the pod.
+ * @param follow Follow the log stream of the pod. Defaults to false.
+ * @param limitBytes If set, the number of bytes to read from the server before terminating the log output. This may not display a complete final line of logging, and may return slightly more or slightly less than the specified limit.
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param previous Return previous terminated container logs. Defaults to false.
+ * @param sinceSeconds A relative time in seconds before the current time from which to show logs. If this value precedes the time a pod was started, only logs since the pod start will be returned. If this value is in the future, no logs will be returned. Only one of sinceSeconds or sinceTime may be specified.
+ * @param tailLines If set, the number of lines from the end of the logs to show. If not specified, logs are shown from the creation of the container or sinceSeconds or sinceTime
+ * @param timestamps If true, add an RFC3339 or RFC3339Nano timestamp at the beginning of every line of log output. Defaults to false.
+ */
+ readNamespacedPodLog(name: string, namespace: string, container?: string, follow?: boolean, limitBytes?: number, pretty?: string, previous?: boolean, sinceSeconds?: number, tailLines?: number, timestamps?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: string;
+ }>;
+ /**
+ * read status of the specified Pod
+ * @param name name of the Pod
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readNamespacedPodStatus(name: string, namespace: string, pretty?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Pod;
+ }>;
+ /**
+ * read the specified PodTemplate
+ * @param name name of the PodTemplate
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readNamespacedPodTemplate(name: string, namespace: string, pretty?: string, exact?: boolean, _export?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1PodTemplate;
+ }>;
+ /**
+ * read the specified ReplicationController
+ * @param name name of the ReplicationController
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readNamespacedReplicationController(name: string, namespace: string, pretty?: string, exact?: boolean, _export?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1ReplicationController;
+ }>;
+ /**
+ * read scale of the specified ReplicationController
+ * @param name name of the Scale
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readNamespacedReplicationControllerScale(name: string, namespace: string, pretty?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Scale;
+ }>;
+ /**
+ * read status of the specified ReplicationController
+ * @param name name of the ReplicationController
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readNamespacedReplicationControllerStatus(name: string, namespace: string, pretty?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1ReplicationController;
+ }>;
+ /**
+ * read the specified ResourceQuota
+ * @param name name of the ResourceQuota
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readNamespacedResourceQuota(name: string, namespace: string, pretty?: string, exact?: boolean, _export?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1ResourceQuota;
+ }>;
+ /**
+ * read status of the specified ResourceQuota
+ * @param name name of the ResourceQuota
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readNamespacedResourceQuotaStatus(name: string, namespace: string, pretty?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1ResourceQuota;
+ }>;
+ /**
+ * read the specified Secret
+ * @param name name of the Secret
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readNamespacedSecret(name: string, namespace: string, pretty?: string, exact?: boolean, _export?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Secret;
+ }>;
+ /**
+ * read the specified Service
+ * @param name name of the Service
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readNamespacedService(name: string, namespace: string, pretty?: string, exact?: boolean, _export?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Service;
+ }>;
+ /**
+ * read the specified ServiceAccount
+ * @param name name of the ServiceAccount
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readNamespacedServiceAccount(name: string, namespace: string, pretty?: string, exact?: boolean, _export?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1ServiceAccount;
+ }>;
+ /**
+ * read status of the specified Service
+ * @param name name of the Service
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readNamespacedServiceStatus(name: string, namespace: string, pretty?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Service;
+ }>;
+ /**
+ * read the specified Node
+ * @param name name of the Node
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readNode(name: string, pretty?: string, exact?: boolean, _export?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Node;
+ }>;
+ /**
+ * read status of the specified Node
+ * @param name name of the Node
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readNodeStatus(name: string, pretty?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Node;
+ }>;
+ /**
+ * read the specified PersistentVolume
+ * @param name name of the PersistentVolume
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readPersistentVolume(name: string, pretty?: string, exact?: boolean, _export?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1PersistentVolume;
+ }>;
+ /**
+ * read status of the specified PersistentVolume
+ * @param name name of the PersistentVolume
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readPersistentVolumeStatus(name: string, pretty?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1PersistentVolume;
+ }>;
+ /**
+ * replace the specified Namespace
+ * @param name name of the Namespace
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespace(name: string, body: V1Namespace, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Namespace;
+ }>;
+ /**
+ * replace finalize of the specified Namespace
+ * @param name name of the Namespace
+ * @param body
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ replaceNamespaceFinalize(name: string, body: V1Namespace, dryRun?: string, fieldManager?: string, pretty?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Namespace;
+ }>;
+ /**
+ * replace status of the specified Namespace
+ * @param name name of the Namespace
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespaceStatus(name: string, body: V1Namespace, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Namespace;
+ }>;
+ /**
+ * replace the specified ConfigMap
+ * @param name name of the ConfigMap
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedConfigMap(name: string, namespace: string, body: V1ConfigMap, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1ConfigMap;
+ }>;
+ /**
+ * replace the specified Endpoints
+ * @param name name of the Endpoints
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedEndpoints(name: string, namespace: string, body: V1Endpoints, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Endpoints;
+ }>;
+ /**
+ * replace the specified Event
+ * @param name name of the Event
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedEvent(name: string, namespace: string, body: V1Event, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Event;
+ }>;
+ /**
+ * replace the specified LimitRange
+ * @param name name of the LimitRange
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedLimitRange(name: string, namespace: string, body: V1LimitRange, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1LimitRange;
+ }>;
+ /**
+ * replace the specified PersistentVolumeClaim
+ * @param name name of the PersistentVolumeClaim
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedPersistentVolumeClaim(name: string, namespace: string, body: V1PersistentVolumeClaim, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1PersistentVolumeClaim;
+ }>;
+ /**
+ * replace status of the specified PersistentVolumeClaim
+ * @param name name of the PersistentVolumeClaim
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedPersistentVolumeClaimStatus(name: string, namespace: string, body: V1PersistentVolumeClaim, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1PersistentVolumeClaim;
+ }>;
+ /**
+ * replace the specified Pod
+ * @param name name of the Pod
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedPod(name: string, namespace: string, body: V1Pod, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Pod;
+ }>;
+ /**
+ * replace status of the specified Pod
+ * @param name name of the Pod
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedPodStatus(name: string, namespace: string, body: V1Pod, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Pod;
+ }>;
+ /**
+ * replace the specified PodTemplate
+ * @param name name of the PodTemplate
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedPodTemplate(name: string, namespace: string, body: V1PodTemplate, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1PodTemplate;
+ }>;
+ /**
+ * replace the specified ReplicationController
+ * @param name name of the ReplicationController
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedReplicationController(name: string, namespace: string, body: V1ReplicationController, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1ReplicationController;
+ }>;
+ /**
+ * replace scale of the specified ReplicationController
+ * @param name name of the Scale
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedReplicationControllerScale(name: string, namespace: string, body: V1Scale, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Scale;
+ }>;
+ /**
+ * replace status of the specified ReplicationController
+ * @param name name of the ReplicationController
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedReplicationControllerStatus(name: string, namespace: string, body: V1ReplicationController, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1ReplicationController;
+ }>;
+ /**
+ * replace the specified ResourceQuota
+ * @param name name of the ResourceQuota
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedResourceQuota(name: string, namespace: string, body: V1ResourceQuota, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1ResourceQuota;
+ }>;
+ /**
+ * replace status of the specified ResourceQuota
+ * @param name name of the ResourceQuota
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedResourceQuotaStatus(name: string, namespace: string, body: V1ResourceQuota, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1ResourceQuota;
+ }>;
+ /**
+ * replace the specified Secret
+ * @param name name of the Secret
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedSecret(name: string, namespace: string, body: V1Secret, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Secret;
+ }>;
+ /**
+ * replace the specified Service
+ * @param name name of the Service
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedService(name: string, namespace: string, body: V1Service, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Service;
+ }>;
+ /**
+ * replace the specified ServiceAccount
+ * @param name name of the ServiceAccount
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedServiceAccount(name: string, namespace: string, body: V1ServiceAccount, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1ServiceAccount;
+ }>;
+ /**
+ * replace status of the specified Service
+ * @param name name of the Service
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedServiceStatus(name: string, namespace: string, body: V1Service, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Service;
+ }>;
+ /**
+ * replace the specified Node
+ * @param name name of the Node
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNode(name: string, body: V1Node, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Node;
+ }>;
+ /**
+ * replace status of the specified Node
+ * @param name name of the Node
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNodeStatus(name: string, body: V1Node, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Node;
+ }>;
+ /**
+ * replace the specified PersistentVolume
+ * @param name name of the PersistentVolume
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replacePersistentVolume(name: string, body: V1PersistentVolume, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1PersistentVolume;
+ }>;
+ /**
+ * replace status of the specified PersistentVolume
+ * @param name name of the PersistentVolume
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replacePersistentVolumeStatus(name: string, body: V1PersistentVolume, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1PersistentVolume;
+ }>;
+}
diff --git a/dist/gen/api/coreV1Api.js b/dist/gen/api/coreV1Api.js
new file mode 100644
index 0000000000..fe0ac82f7b
--- /dev/null
+++ b/dist/gen/api/coreV1Api.js
@@ -0,0 +1,15621 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+const tslib_1 = require("tslib");
+const localVarRequest = require("request");
+const models_1 = require("../model/models");
+const models_2 = require("../model/models");
+let defaultBasePath = 'http://localhost/';
+// ===============================================
+// This file is autogenerated - Please do not edit
+// ===============================================
+var CoreV1ApiApiKeys;
+(function (CoreV1ApiApiKeys) {
+ CoreV1ApiApiKeys[CoreV1ApiApiKeys["BearerToken"] = 0] = "BearerToken";
+})(CoreV1ApiApiKeys = exports.CoreV1ApiApiKeys || (exports.CoreV1ApiApiKeys = {}));
+class CoreV1Api {
+ constructor(basePathOrUsername, password, basePath) {
+ this._basePath = defaultBasePath;
+ this.defaultHeaders = {};
+ this._useQuerystring = false;
+ this.authentications = {
+ 'default': new models_1.VoidAuth(),
+ 'BearerToken': new models_2.ApiKeyAuth('header', 'authorization'),
+ };
+ if (password) {
+ if (basePath) {
+ this.basePath = basePath;
+ }
+ }
+ else {
+ if (basePathOrUsername) {
+ this.basePath = basePathOrUsername;
+ }
+ }
+ }
+ set useQuerystring(value) {
+ this._useQuerystring = value;
+ }
+ set basePath(basePath) {
+ this._basePath = basePath;
+ }
+ get basePath() {
+ return this._basePath;
+ }
+ setDefaultAuthentication(auth) {
+ this.authentications.default = auth;
+ }
+ setApiKey(key, value) {
+ this.authentications[CoreV1ApiApiKeys[key]].apiKey = value;
+ }
+ /**
+ * connect DELETE requests to proxy of Pod
+ * @param name name of the PodProxyOptions
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param path Path is the URL path to use for the current proxy request to pod.
+ */
+ connectDeleteNamespacedPodProxy(name, namespace, path, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/pods/{name}/proxy'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling connectDeleteNamespacedPodProxy.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling connectDeleteNamespacedPodProxy.');
+ }
+ if (path !== undefined) {
+ localVarQueryParameters['path'] = models_1.ObjectSerializer.serialize(path, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "string");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * connect DELETE requests to proxy of Pod
+ * @param name name of the PodProxyOptions
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param path path to the resource
+ * @param path2 Path is the URL path to use for the current proxy request to pod.
+ */
+ connectDeleteNamespacedPodProxyWithPath(name, namespace, path, path2, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/pods/{name}/proxy/{path}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)))
+ .replace('{' + 'path' + '}', encodeURIComponent(String(path)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling connectDeleteNamespacedPodProxyWithPath.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling connectDeleteNamespacedPodProxyWithPath.');
+ }
+ // verify required parameter 'path' is not null or undefined
+ if (path === null || path === undefined) {
+ throw new Error('Required parameter path was null or undefined when calling connectDeleteNamespacedPodProxyWithPath.');
+ }
+ if (path2 !== undefined) {
+ localVarQueryParameters['path'] = models_1.ObjectSerializer.serialize(path2, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "string");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * connect DELETE requests to proxy of Service
+ * @param name name of the ServiceProxyOptions
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param path Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q=user:kimchy. Path is _search?q=user:kimchy.
+ */
+ connectDeleteNamespacedServiceProxy(name, namespace, path, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/services/{name}/proxy'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling connectDeleteNamespacedServiceProxy.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling connectDeleteNamespacedServiceProxy.');
+ }
+ if (path !== undefined) {
+ localVarQueryParameters['path'] = models_1.ObjectSerializer.serialize(path, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "string");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * connect DELETE requests to proxy of Service
+ * @param name name of the ServiceProxyOptions
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param path path to the resource
+ * @param path2 Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q=user:kimchy. Path is _search?q=user:kimchy.
+ */
+ connectDeleteNamespacedServiceProxyWithPath(name, namespace, path, path2, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/services/{name}/proxy/{path}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)))
+ .replace('{' + 'path' + '}', encodeURIComponent(String(path)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling connectDeleteNamespacedServiceProxyWithPath.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling connectDeleteNamespacedServiceProxyWithPath.');
+ }
+ // verify required parameter 'path' is not null or undefined
+ if (path === null || path === undefined) {
+ throw new Error('Required parameter path was null or undefined when calling connectDeleteNamespacedServiceProxyWithPath.');
+ }
+ if (path2 !== undefined) {
+ localVarQueryParameters['path'] = models_1.ObjectSerializer.serialize(path2, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "string");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * connect DELETE requests to proxy of Node
+ * @param name name of the NodeProxyOptions
+ * @param path Path is the URL path to use for the current proxy request to node.
+ */
+ connectDeleteNodeProxy(name, path, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/nodes/{name}/proxy'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling connectDeleteNodeProxy.');
+ }
+ if (path !== undefined) {
+ localVarQueryParameters['path'] = models_1.ObjectSerializer.serialize(path, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "string");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * connect DELETE requests to proxy of Node
+ * @param name name of the NodeProxyOptions
+ * @param path path to the resource
+ * @param path2 Path is the URL path to use for the current proxy request to node.
+ */
+ connectDeleteNodeProxyWithPath(name, path, path2, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/nodes/{name}/proxy/{path}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'path' + '}', encodeURIComponent(String(path)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling connectDeleteNodeProxyWithPath.');
+ }
+ // verify required parameter 'path' is not null or undefined
+ if (path === null || path === undefined) {
+ throw new Error('Required parameter path was null or undefined when calling connectDeleteNodeProxyWithPath.');
+ }
+ if (path2 !== undefined) {
+ localVarQueryParameters['path'] = models_1.ObjectSerializer.serialize(path2, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "string");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * connect GET requests to attach of Pod
+ * @param name name of the PodAttachOptions
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param container The container in which to execute the command. Defaults to only container if there is only one container in the pod.
+ * @param stderr Stderr if true indicates that stderr is to be redirected for the attach call. Defaults to true.
+ * @param stdin Stdin if true, redirects the standard input stream of the pod for this call. Defaults to false.
+ * @param stdout Stdout if true indicates that stdout is to be redirected for the attach call. Defaults to true.
+ * @param tty TTY if true indicates that a tty will be allocated for the attach call. This is passed through the container runtime so the tty is allocated on the worker node by the container runtime. Defaults to false.
+ */
+ connectGetNamespacedPodAttach(name, namespace, container, stderr, stdin, stdout, tty, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/pods/{name}/attach'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling connectGetNamespacedPodAttach.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling connectGetNamespacedPodAttach.');
+ }
+ if (container !== undefined) {
+ localVarQueryParameters['container'] = models_1.ObjectSerializer.serialize(container, "string");
+ }
+ if (stderr !== undefined) {
+ localVarQueryParameters['stderr'] = models_1.ObjectSerializer.serialize(stderr, "boolean");
+ }
+ if (stdin !== undefined) {
+ localVarQueryParameters['stdin'] = models_1.ObjectSerializer.serialize(stdin, "boolean");
+ }
+ if (stdout !== undefined) {
+ localVarQueryParameters['stdout'] = models_1.ObjectSerializer.serialize(stdout, "boolean");
+ }
+ if (tty !== undefined) {
+ localVarQueryParameters['tty'] = models_1.ObjectSerializer.serialize(tty, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "string");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * connect GET requests to exec of Pod
+ * @param name name of the PodExecOptions
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param command Command is the remote command to execute. argv array. Not executed within a shell.
+ * @param container Container in which to execute the command. Defaults to only container if there is only one container in the pod.
+ * @param stderr Redirect the standard error stream of the pod for this call. Defaults to true.
+ * @param stdin Redirect the standard input stream of the pod for this call. Defaults to false.
+ * @param stdout Redirect the standard output stream of the pod for this call. Defaults to true.
+ * @param tty TTY if true indicates that a tty will be allocated for the exec call. Defaults to false.
+ */
+ connectGetNamespacedPodExec(name, namespace, command, container, stderr, stdin, stdout, tty, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/pods/{name}/exec'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling connectGetNamespacedPodExec.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling connectGetNamespacedPodExec.');
+ }
+ if (command !== undefined) {
+ localVarQueryParameters['command'] = models_1.ObjectSerializer.serialize(command, "string");
+ }
+ if (container !== undefined) {
+ localVarQueryParameters['container'] = models_1.ObjectSerializer.serialize(container, "string");
+ }
+ if (stderr !== undefined) {
+ localVarQueryParameters['stderr'] = models_1.ObjectSerializer.serialize(stderr, "boolean");
+ }
+ if (stdin !== undefined) {
+ localVarQueryParameters['stdin'] = models_1.ObjectSerializer.serialize(stdin, "boolean");
+ }
+ if (stdout !== undefined) {
+ localVarQueryParameters['stdout'] = models_1.ObjectSerializer.serialize(stdout, "boolean");
+ }
+ if (tty !== undefined) {
+ localVarQueryParameters['tty'] = models_1.ObjectSerializer.serialize(tty, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "string");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * connect GET requests to portforward of Pod
+ * @param name name of the PodPortForwardOptions
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param ports List of ports to forward Required when using WebSockets
+ */
+ connectGetNamespacedPodPortforward(name, namespace, ports, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/pods/{name}/portforward'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling connectGetNamespacedPodPortforward.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling connectGetNamespacedPodPortforward.');
+ }
+ if (ports !== undefined) {
+ localVarQueryParameters['ports'] = models_1.ObjectSerializer.serialize(ports, "number");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "string");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * connect GET requests to proxy of Pod
+ * @param name name of the PodProxyOptions
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param path Path is the URL path to use for the current proxy request to pod.
+ */
+ connectGetNamespacedPodProxy(name, namespace, path, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/pods/{name}/proxy'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling connectGetNamespacedPodProxy.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling connectGetNamespacedPodProxy.');
+ }
+ if (path !== undefined) {
+ localVarQueryParameters['path'] = models_1.ObjectSerializer.serialize(path, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "string");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * connect GET requests to proxy of Pod
+ * @param name name of the PodProxyOptions
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param path path to the resource
+ * @param path2 Path is the URL path to use for the current proxy request to pod.
+ */
+ connectGetNamespacedPodProxyWithPath(name, namespace, path, path2, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/pods/{name}/proxy/{path}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)))
+ .replace('{' + 'path' + '}', encodeURIComponent(String(path)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling connectGetNamespacedPodProxyWithPath.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling connectGetNamespacedPodProxyWithPath.');
+ }
+ // verify required parameter 'path' is not null or undefined
+ if (path === null || path === undefined) {
+ throw new Error('Required parameter path was null or undefined when calling connectGetNamespacedPodProxyWithPath.');
+ }
+ if (path2 !== undefined) {
+ localVarQueryParameters['path'] = models_1.ObjectSerializer.serialize(path2, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "string");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * connect GET requests to proxy of Service
+ * @param name name of the ServiceProxyOptions
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param path Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q=user:kimchy. Path is _search?q=user:kimchy.
+ */
+ connectGetNamespacedServiceProxy(name, namespace, path, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/services/{name}/proxy'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling connectGetNamespacedServiceProxy.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling connectGetNamespacedServiceProxy.');
+ }
+ if (path !== undefined) {
+ localVarQueryParameters['path'] = models_1.ObjectSerializer.serialize(path, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "string");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * connect GET requests to proxy of Service
+ * @param name name of the ServiceProxyOptions
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param path path to the resource
+ * @param path2 Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q=user:kimchy. Path is _search?q=user:kimchy.
+ */
+ connectGetNamespacedServiceProxyWithPath(name, namespace, path, path2, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/services/{name}/proxy/{path}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)))
+ .replace('{' + 'path' + '}', encodeURIComponent(String(path)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling connectGetNamespacedServiceProxyWithPath.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling connectGetNamespacedServiceProxyWithPath.');
+ }
+ // verify required parameter 'path' is not null or undefined
+ if (path === null || path === undefined) {
+ throw new Error('Required parameter path was null or undefined when calling connectGetNamespacedServiceProxyWithPath.');
+ }
+ if (path2 !== undefined) {
+ localVarQueryParameters['path'] = models_1.ObjectSerializer.serialize(path2, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "string");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * connect GET requests to proxy of Node
+ * @param name name of the NodeProxyOptions
+ * @param path Path is the URL path to use for the current proxy request to node.
+ */
+ connectGetNodeProxy(name, path, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/nodes/{name}/proxy'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling connectGetNodeProxy.');
+ }
+ if (path !== undefined) {
+ localVarQueryParameters['path'] = models_1.ObjectSerializer.serialize(path, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "string");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * connect GET requests to proxy of Node
+ * @param name name of the NodeProxyOptions
+ * @param path path to the resource
+ * @param path2 Path is the URL path to use for the current proxy request to node.
+ */
+ connectGetNodeProxyWithPath(name, path, path2, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/nodes/{name}/proxy/{path}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'path' + '}', encodeURIComponent(String(path)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling connectGetNodeProxyWithPath.');
+ }
+ // verify required parameter 'path' is not null or undefined
+ if (path === null || path === undefined) {
+ throw new Error('Required parameter path was null or undefined when calling connectGetNodeProxyWithPath.');
+ }
+ if (path2 !== undefined) {
+ localVarQueryParameters['path'] = models_1.ObjectSerializer.serialize(path2, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "string");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * connect HEAD requests to proxy of Pod
+ * @param name name of the PodProxyOptions
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param path Path is the URL path to use for the current proxy request to pod.
+ */
+ connectHeadNamespacedPodProxy(name, namespace, path, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/pods/{name}/proxy'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling connectHeadNamespacedPodProxy.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling connectHeadNamespacedPodProxy.');
+ }
+ if (path !== undefined) {
+ localVarQueryParameters['path'] = models_1.ObjectSerializer.serialize(path, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'HEAD',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "string");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * connect HEAD requests to proxy of Pod
+ * @param name name of the PodProxyOptions
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param path path to the resource
+ * @param path2 Path is the URL path to use for the current proxy request to pod.
+ */
+ connectHeadNamespacedPodProxyWithPath(name, namespace, path, path2, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/pods/{name}/proxy/{path}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)))
+ .replace('{' + 'path' + '}', encodeURIComponent(String(path)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling connectHeadNamespacedPodProxyWithPath.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling connectHeadNamespacedPodProxyWithPath.');
+ }
+ // verify required parameter 'path' is not null or undefined
+ if (path === null || path === undefined) {
+ throw new Error('Required parameter path was null or undefined when calling connectHeadNamespacedPodProxyWithPath.');
+ }
+ if (path2 !== undefined) {
+ localVarQueryParameters['path'] = models_1.ObjectSerializer.serialize(path2, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'HEAD',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "string");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * connect HEAD requests to proxy of Service
+ * @param name name of the ServiceProxyOptions
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param path Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q=user:kimchy. Path is _search?q=user:kimchy.
+ */
+ connectHeadNamespacedServiceProxy(name, namespace, path, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/services/{name}/proxy'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling connectHeadNamespacedServiceProxy.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling connectHeadNamespacedServiceProxy.');
+ }
+ if (path !== undefined) {
+ localVarQueryParameters['path'] = models_1.ObjectSerializer.serialize(path, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'HEAD',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "string");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * connect HEAD requests to proxy of Service
+ * @param name name of the ServiceProxyOptions
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param path path to the resource
+ * @param path2 Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q=user:kimchy. Path is _search?q=user:kimchy.
+ */
+ connectHeadNamespacedServiceProxyWithPath(name, namespace, path, path2, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/services/{name}/proxy/{path}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)))
+ .replace('{' + 'path' + '}', encodeURIComponent(String(path)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling connectHeadNamespacedServiceProxyWithPath.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling connectHeadNamespacedServiceProxyWithPath.');
+ }
+ // verify required parameter 'path' is not null or undefined
+ if (path === null || path === undefined) {
+ throw new Error('Required parameter path was null or undefined when calling connectHeadNamespacedServiceProxyWithPath.');
+ }
+ if (path2 !== undefined) {
+ localVarQueryParameters['path'] = models_1.ObjectSerializer.serialize(path2, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'HEAD',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "string");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * connect HEAD requests to proxy of Node
+ * @param name name of the NodeProxyOptions
+ * @param path Path is the URL path to use for the current proxy request to node.
+ */
+ connectHeadNodeProxy(name, path, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/nodes/{name}/proxy'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling connectHeadNodeProxy.');
+ }
+ if (path !== undefined) {
+ localVarQueryParameters['path'] = models_1.ObjectSerializer.serialize(path, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'HEAD',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "string");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * connect HEAD requests to proxy of Node
+ * @param name name of the NodeProxyOptions
+ * @param path path to the resource
+ * @param path2 Path is the URL path to use for the current proxy request to node.
+ */
+ connectHeadNodeProxyWithPath(name, path, path2, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/nodes/{name}/proxy/{path}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'path' + '}', encodeURIComponent(String(path)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling connectHeadNodeProxyWithPath.');
+ }
+ // verify required parameter 'path' is not null or undefined
+ if (path === null || path === undefined) {
+ throw new Error('Required parameter path was null or undefined when calling connectHeadNodeProxyWithPath.');
+ }
+ if (path2 !== undefined) {
+ localVarQueryParameters['path'] = models_1.ObjectSerializer.serialize(path2, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'HEAD',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "string");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * connect OPTIONS requests to proxy of Pod
+ * @param name name of the PodProxyOptions
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param path Path is the URL path to use for the current proxy request to pod.
+ */
+ connectOptionsNamespacedPodProxy(name, namespace, path, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/pods/{name}/proxy'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling connectOptionsNamespacedPodProxy.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling connectOptionsNamespacedPodProxy.');
+ }
+ if (path !== undefined) {
+ localVarQueryParameters['path'] = models_1.ObjectSerializer.serialize(path, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'OPTIONS',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "string");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * connect OPTIONS requests to proxy of Pod
+ * @param name name of the PodProxyOptions
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param path path to the resource
+ * @param path2 Path is the URL path to use for the current proxy request to pod.
+ */
+ connectOptionsNamespacedPodProxyWithPath(name, namespace, path, path2, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/pods/{name}/proxy/{path}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)))
+ .replace('{' + 'path' + '}', encodeURIComponent(String(path)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling connectOptionsNamespacedPodProxyWithPath.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling connectOptionsNamespacedPodProxyWithPath.');
+ }
+ // verify required parameter 'path' is not null or undefined
+ if (path === null || path === undefined) {
+ throw new Error('Required parameter path was null or undefined when calling connectOptionsNamespacedPodProxyWithPath.');
+ }
+ if (path2 !== undefined) {
+ localVarQueryParameters['path'] = models_1.ObjectSerializer.serialize(path2, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'OPTIONS',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "string");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * connect OPTIONS requests to proxy of Service
+ * @param name name of the ServiceProxyOptions
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param path Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q=user:kimchy. Path is _search?q=user:kimchy.
+ */
+ connectOptionsNamespacedServiceProxy(name, namespace, path, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/services/{name}/proxy'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling connectOptionsNamespacedServiceProxy.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling connectOptionsNamespacedServiceProxy.');
+ }
+ if (path !== undefined) {
+ localVarQueryParameters['path'] = models_1.ObjectSerializer.serialize(path, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'OPTIONS',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "string");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * connect OPTIONS requests to proxy of Service
+ * @param name name of the ServiceProxyOptions
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param path path to the resource
+ * @param path2 Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q=user:kimchy. Path is _search?q=user:kimchy.
+ */
+ connectOptionsNamespacedServiceProxyWithPath(name, namespace, path, path2, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/services/{name}/proxy/{path}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)))
+ .replace('{' + 'path' + '}', encodeURIComponent(String(path)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling connectOptionsNamespacedServiceProxyWithPath.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling connectOptionsNamespacedServiceProxyWithPath.');
+ }
+ // verify required parameter 'path' is not null or undefined
+ if (path === null || path === undefined) {
+ throw new Error('Required parameter path was null or undefined when calling connectOptionsNamespacedServiceProxyWithPath.');
+ }
+ if (path2 !== undefined) {
+ localVarQueryParameters['path'] = models_1.ObjectSerializer.serialize(path2, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'OPTIONS',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "string");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * connect OPTIONS requests to proxy of Node
+ * @param name name of the NodeProxyOptions
+ * @param path Path is the URL path to use for the current proxy request to node.
+ */
+ connectOptionsNodeProxy(name, path, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/nodes/{name}/proxy'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling connectOptionsNodeProxy.');
+ }
+ if (path !== undefined) {
+ localVarQueryParameters['path'] = models_1.ObjectSerializer.serialize(path, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'OPTIONS',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "string");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * connect OPTIONS requests to proxy of Node
+ * @param name name of the NodeProxyOptions
+ * @param path path to the resource
+ * @param path2 Path is the URL path to use for the current proxy request to node.
+ */
+ connectOptionsNodeProxyWithPath(name, path, path2, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/nodes/{name}/proxy/{path}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'path' + '}', encodeURIComponent(String(path)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling connectOptionsNodeProxyWithPath.');
+ }
+ // verify required parameter 'path' is not null or undefined
+ if (path === null || path === undefined) {
+ throw new Error('Required parameter path was null or undefined when calling connectOptionsNodeProxyWithPath.');
+ }
+ if (path2 !== undefined) {
+ localVarQueryParameters['path'] = models_1.ObjectSerializer.serialize(path2, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'OPTIONS',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "string");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * connect PATCH requests to proxy of Pod
+ * @param name name of the PodProxyOptions
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param path Path is the URL path to use for the current proxy request to pod.
+ */
+ connectPatchNamespacedPodProxy(name, namespace, path, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/pods/{name}/proxy'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling connectPatchNamespacedPodProxy.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling connectPatchNamespacedPodProxy.');
+ }
+ if (path !== undefined) {
+ localVarQueryParameters['path'] = models_1.ObjectSerializer.serialize(path, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "string");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * connect PATCH requests to proxy of Pod
+ * @param name name of the PodProxyOptions
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param path path to the resource
+ * @param path2 Path is the URL path to use for the current proxy request to pod.
+ */
+ connectPatchNamespacedPodProxyWithPath(name, namespace, path, path2, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/pods/{name}/proxy/{path}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)))
+ .replace('{' + 'path' + '}', encodeURIComponent(String(path)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling connectPatchNamespacedPodProxyWithPath.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling connectPatchNamespacedPodProxyWithPath.');
+ }
+ // verify required parameter 'path' is not null or undefined
+ if (path === null || path === undefined) {
+ throw new Error('Required parameter path was null or undefined when calling connectPatchNamespacedPodProxyWithPath.');
+ }
+ if (path2 !== undefined) {
+ localVarQueryParameters['path'] = models_1.ObjectSerializer.serialize(path2, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "string");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * connect PATCH requests to proxy of Service
+ * @param name name of the ServiceProxyOptions
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param path Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q=user:kimchy. Path is _search?q=user:kimchy.
+ */
+ connectPatchNamespacedServiceProxy(name, namespace, path, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/services/{name}/proxy'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling connectPatchNamespacedServiceProxy.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling connectPatchNamespacedServiceProxy.');
+ }
+ if (path !== undefined) {
+ localVarQueryParameters['path'] = models_1.ObjectSerializer.serialize(path, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "string");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * connect PATCH requests to proxy of Service
+ * @param name name of the ServiceProxyOptions
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param path path to the resource
+ * @param path2 Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q=user:kimchy. Path is _search?q=user:kimchy.
+ */
+ connectPatchNamespacedServiceProxyWithPath(name, namespace, path, path2, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/services/{name}/proxy/{path}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)))
+ .replace('{' + 'path' + '}', encodeURIComponent(String(path)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling connectPatchNamespacedServiceProxyWithPath.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling connectPatchNamespacedServiceProxyWithPath.');
+ }
+ // verify required parameter 'path' is not null or undefined
+ if (path === null || path === undefined) {
+ throw new Error('Required parameter path was null or undefined when calling connectPatchNamespacedServiceProxyWithPath.');
+ }
+ if (path2 !== undefined) {
+ localVarQueryParameters['path'] = models_1.ObjectSerializer.serialize(path2, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "string");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * connect PATCH requests to proxy of Node
+ * @param name name of the NodeProxyOptions
+ * @param path Path is the URL path to use for the current proxy request to node.
+ */
+ connectPatchNodeProxy(name, path, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/nodes/{name}/proxy'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling connectPatchNodeProxy.');
+ }
+ if (path !== undefined) {
+ localVarQueryParameters['path'] = models_1.ObjectSerializer.serialize(path, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "string");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * connect PATCH requests to proxy of Node
+ * @param name name of the NodeProxyOptions
+ * @param path path to the resource
+ * @param path2 Path is the URL path to use for the current proxy request to node.
+ */
+ connectPatchNodeProxyWithPath(name, path, path2, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/nodes/{name}/proxy/{path}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'path' + '}', encodeURIComponent(String(path)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling connectPatchNodeProxyWithPath.');
+ }
+ // verify required parameter 'path' is not null or undefined
+ if (path === null || path === undefined) {
+ throw new Error('Required parameter path was null or undefined when calling connectPatchNodeProxyWithPath.');
+ }
+ if (path2 !== undefined) {
+ localVarQueryParameters['path'] = models_1.ObjectSerializer.serialize(path2, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "string");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * connect POST requests to attach of Pod
+ * @param name name of the PodAttachOptions
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param container The container in which to execute the command. Defaults to only container if there is only one container in the pod.
+ * @param stderr Stderr if true indicates that stderr is to be redirected for the attach call. Defaults to true.
+ * @param stdin Stdin if true, redirects the standard input stream of the pod for this call. Defaults to false.
+ * @param stdout Stdout if true indicates that stdout is to be redirected for the attach call. Defaults to true.
+ * @param tty TTY if true indicates that a tty will be allocated for the attach call. This is passed through the container runtime so the tty is allocated on the worker node by the container runtime. Defaults to false.
+ */
+ connectPostNamespacedPodAttach(name, namespace, container, stderr, stdin, stdout, tty, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/pods/{name}/attach'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling connectPostNamespacedPodAttach.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling connectPostNamespacedPodAttach.');
+ }
+ if (container !== undefined) {
+ localVarQueryParameters['container'] = models_1.ObjectSerializer.serialize(container, "string");
+ }
+ if (stderr !== undefined) {
+ localVarQueryParameters['stderr'] = models_1.ObjectSerializer.serialize(stderr, "boolean");
+ }
+ if (stdin !== undefined) {
+ localVarQueryParameters['stdin'] = models_1.ObjectSerializer.serialize(stdin, "boolean");
+ }
+ if (stdout !== undefined) {
+ localVarQueryParameters['stdout'] = models_1.ObjectSerializer.serialize(stdout, "boolean");
+ }
+ if (tty !== undefined) {
+ localVarQueryParameters['tty'] = models_1.ObjectSerializer.serialize(tty, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'POST',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "string");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * connect POST requests to exec of Pod
+ * @param name name of the PodExecOptions
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param command Command is the remote command to execute. argv array. Not executed within a shell.
+ * @param container Container in which to execute the command. Defaults to only container if there is only one container in the pod.
+ * @param stderr Redirect the standard error stream of the pod for this call. Defaults to true.
+ * @param stdin Redirect the standard input stream of the pod for this call. Defaults to false.
+ * @param stdout Redirect the standard output stream of the pod for this call. Defaults to true.
+ * @param tty TTY if true indicates that a tty will be allocated for the exec call. Defaults to false.
+ */
+ connectPostNamespacedPodExec(name, namespace, command, container, stderr, stdin, stdout, tty, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/pods/{name}/exec'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling connectPostNamespacedPodExec.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling connectPostNamespacedPodExec.');
+ }
+ if (command !== undefined) {
+ localVarQueryParameters['command'] = models_1.ObjectSerializer.serialize(command, "string");
+ }
+ if (container !== undefined) {
+ localVarQueryParameters['container'] = models_1.ObjectSerializer.serialize(container, "string");
+ }
+ if (stderr !== undefined) {
+ localVarQueryParameters['stderr'] = models_1.ObjectSerializer.serialize(stderr, "boolean");
+ }
+ if (stdin !== undefined) {
+ localVarQueryParameters['stdin'] = models_1.ObjectSerializer.serialize(stdin, "boolean");
+ }
+ if (stdout !== undefined) {
+ localVarQueryParameters['stdout'] = models_1.ObjectSerializer.serialize(stdout, "boolean");
+ }
+ if (tty !== undefined) {
+ localVarQueryParameters['tty'] = models_1.ObjectSerializer.serialize(tty, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'POST',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "string");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * connect POST requests to portforward of Pod
+ * @param name name of the PodPortForwardOptions
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param ports List of ports to forward Required when using WebSockets
+ */
+ connectPostNamespacedPodPortforward(name, namespace, ports, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/pods/{name}/portforward'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling connectPostNamespacedPodPortforward.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling connectPostNamespacedPodPortforward.');
+ }
+ if (ports !== undefined) {
+ localVarQueryParameters['ports'] = models_1.ObjectSerializer.serialize(ports, "number");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'POST',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "string");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * connect POST requests to proxy of Pod
+ * @param name name of the PodProxyOptions
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param path Path is the URL path to use for the current proxy request to pod.
+ */
+ connectPostNamespacedPodProxy(name, namespace, path, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/pods/{name}/proxy'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling connectPostNamespacedPodProxy.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling connectPostNamespacedPodProxy.');
+ }
+ if (path !== undefined) {
+ localVarQueryParameters['path'] = models_1.ObjectSerializer.serialize(path, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'POST',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "string");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * connect POST requests to proxy of Pod
+ * @param name name of the PodProxyOptions
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param path path to the resource
+ * @param path2 Path is the URL path to use for the current proxy request to pod.
+ */
+ connectPostNamespacedPodProxyWithPath(name, namespace, path, path2, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/pods/{name}/proxy/{path}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)))
+ .replace('{' + 'path' + '}', encodeURIComponent(String(path)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling connectPostNamespacedPodProxyWithPath.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling connectPostNamespacedPodProxyWithPath.');
+ }
+ // verify required parameter 'path' is not null or undefined
+ if (path === null || path === undefined) {
+ throw new Error('Required parameter path was null or undefined when calling connectPostNamespacedPodProxyWithPath.');
+ }
+ if (path2 !== undefined) {
+ localVarQueryParameters['path'] = models_1.ObjectSerializer.serialize(path2, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'POST',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "string");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * connect POST requests to proxy of Service
+ * @param name name of the ServiceProxyOptions
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param path Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q=user:kimchy. Path is _search?q=user:kimchy.
+ */
+ connectPostNamespacedServiceProxy(name, namespace, path, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/services/{name}/proxy'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling connectPostNamespacedServiceProxy.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling connectPostNamespacedServiceProxy.');
+ }
+ if (path !== undefined) {
+ localVarQueryParameters['path'] = models_1.ObjectSerializer.serialize(path, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'POST',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "string");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * connect POST requests to proxy of Service
+ * @param name name of the ServiceProxyOptions
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param path path to the resource
+ * @param path2 Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q=user:kimchy. Path is _search?q=user:kimchy.
+ */
+ connectPostNamespacedServiceProxyWithPath(name, namespace, path, path2, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/services/{name}/proxy/{path}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)))
+ .replace('{' + 'path' + '}', encodeURIComponent(String(path)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling connectPostNamespacedServiceProxyWithPath.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling connectPostNamespacedServiceProxyWithPath.');
+ }
+ // verify required parameter 'path' is not null or undefined
+ if (path === null || path === undefined) {
+ throw new Error('Required parameter path was null or undefined when calling connectPostNamespacedServiceProxyWithPath.');
+ }
+ if (path2 !== undefined) {
+ localVarQueryParameters['path'] = models_1.ObjectSerializer.serialize(path2, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'POST',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "string");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * connect POST requests to proxy of Node
+ * @param name name of the NodeProxyOptions
+ * @param path Path is the URL path to use for the current proxy request to node.
+ */
+ connectPostNodeProxy(name, path, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/nodes/{name}/proxy'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling connectPostNodeProxy.');
+ }
+ if (path !== undefined) {
+ localVarQueryParameters['path'] = models_1.ObjectSerializer.serialize(path, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'POST',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "string");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * connect POST requests to proxy of Node
+ * @param name name of the NodeProxyOptions
+ * @param path path to the resource
+ * @param path2 Path is the URL path to use for the current proxy request to node.
+ */
+ connectPostNodeProxyWithPath(name, path, path2, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/nodes/{name}/proxy/{path}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'path' + '}', encodeURIComponent(String(path)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling connectPostNodeProxyWithPath.');
+ }
+ // verify required parameter 'path' is not null or undefined
+ if (path === null || path === undefined) {
+ throw new Error('Required parameter path was null or undefined when calling connectPostNodeProxyWithPath.');
+ }
+ if (path2 !== undefined) {
+ localVarQueryParameters['path'] = models_1.ObjectSerializer.serialize(path2, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'POST',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "string");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * connect PUT requests to proxy of Pod
+ * @param name name of the PodProxyOptions
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param path Path is the URL path to use for the current proxy request to pod.
+ */
+ connectPutNamespacedPodProxy(name, namespace, path, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/pods/{name}/proxy'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling connectPutNamespacedPodProxy.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling connectPutNamespacedPodProxy.');
+ }
+ if (path !== undefined) {
+ localVarQueryParameters['path'] = models_1.ObjectSerializer.serialize(path, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "string");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * connect PUT requests to proxy of Pod
+ * @param name name of the PodProxyOptions
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param path path to the resource
+ * @param path2 Path is the URL path to use for the current proxy request to pod.
+ */
+ connectPutNamespacedPodProxyWithPath(name, namespace, path, path2, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/pods/{name}/proxy/{path}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)))
+ .replace('{' + 'path' + '}', encodeURIComponent(String(path)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling connectPutNamespacedPodProxyWithPath.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling connectPutNamespacedPodProxyWithPath.');
+ }
+ // verify required parameter 'path' is not null or undefined
+ if (path === null || path === undefined) {
+ throw new Error('Required parameter path was null or undefined when calling connectPutNamespacedPodProxyWithPath.');
+ }
+ if (path2 !== undefined) {
+ localVarQueryParameters['path'] = models_1.ObjectSerializer.serialize(path2, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "string");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * connect PUT requests to proxy of Service
+ * @param name name of the ServiceProxyOptions
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param path Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q=user:kimchy. Path is _search?q=user:kimchy.
+ */
+ connectPutNamespacedServiceProxy(name, namespace, path, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/services/{name}/proxy'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling connectPutNamespacedServiceProxy.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling connectPutNamespacedServiceProxy.');
+ }
+ if (path !== undefined) {
+ localVarQueryParameters['path'] = models_1.ObjectSerializer.serialize(path, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "string");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * connect PUT requests to proxy of Service
+ * @param name name of the ServiceProxyOptions
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param path path to the resource
+ * @param path2 Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q=user:kimchy. Path is _search?q=user:kimchy.
+ */
+ connectPutNamespacedServiceProxyWithPath(name, namespace, path, path2, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/services/{name}/proxy/{path}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)))
+ .replace('{' + 'path' + '}', encodeURIComponent(String(path)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling connectPutNamespacedServiceProxyWithPath.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling connectPutNamespacedServiceProxyWithPath.');
+ }
+ // verify required parameter 'path' is not null or undefined
+ if (path === null || path === undefined) {
+ throw new Error('Required parameter path was null or undefined when calling connectPutNamespacedServiceProxyWithPath.');
+ }
+ if (path2 !== undefined) {
+ localVarQueryParameters['path'] = models_1.ObjectSerializer.serialize(path2, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "string");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * connect PUT requests to proxy of Node
+ * @param name name of the NodeProxyOptions
+ * @param path Path is the URL path to use for the current proxy request to node.
+ */
+ connectPutNodeProxy(name, path, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/nodes/{name}/proxy'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling connectPutNodeProxy.');
+ }
+ if (path !== undefined) {
+ localVarQueryParameters['path'] = models_1.ObjectSerializer.serialize(path, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "string");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * connect PUT requests to proxy of Node
+ * @param name name of the NodeProxyOptions
+ * @param path path to the resource
+ * @param path2 Path is the URL path to use for the current proxy request to node.
+ */
+ connectPutNodeProxyWithPath(name, path, path2, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/nodes/{name}/proxy/{path}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'path' + '}', encodeURIComponent(String(path)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling connectPutNodeProxyWithPath.');
+ }
+ // verify required parameter 'path' is not null or undefined
+ if (path === null || path === undefined) {
+ throw new Error('Required parameter path was null or undefined when calling connectPutNodeProxyWithPath.');
+ }
+ if (path2 !== undefined) {
+ localVarQueryParameters['path'] = models_1.ObjectSerializer.serialize(path2, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "string");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * create a Namespace
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createNamespace(body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling createNamespace.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'POST',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1Namespace")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Namespace");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * create a Binding
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ createNamespacedBinding(namespace, body, dryRun, fieldManager, pretty, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/bindings'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling createNamespacedBinding.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling createNamespacedBinding.');
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'POST',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1Binding")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Binding");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * create a ConfigMap
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createNamespacedConfigMap(namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/configmaps'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling createNamespacedConfigMap.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling createNamespacedConfigMap.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'POST',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1ConfigMap")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1ConfigMap");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * create Endpoints
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createNamespacedEndpoints(namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/endpoints'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling createNamespacedEndpoints.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling createNamespacedEndpoints.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'POST',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1Endpoints")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Endpoints");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * create an Event
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createNamespacedEvent(namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/events'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling createNamespacedEvent.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling createNamespacedEvent.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'POST',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1Event")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Event");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * create a LimitRange
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createNamespacedLimitRange(namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/limitranges'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling createNamespacedLimitRange.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling createNamespacedLimitRange.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'POST',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1LimitRange")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1LimitRange");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * create a PersistentVolumeClaim
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createNamespacedPersistentVolumeClaim(namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/persistentvolumeclaims'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling createNamespacedPersistentVolumeClaim.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling createNamespacedPersistentVolumeClaim.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'POST',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1PersistentVolumeClaim")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1PersistentVolumeClaim");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * create a Pod
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createNamespacedPod(namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/pods'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling createNamespacedPod.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling createNamespacedPod.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'POST',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1Pod")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Pod");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * create binding of a Pod
+ * @param name name of the Binding
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ createNamespacedPodBinding(name, namespace, body, dryRun, fieldManager, pretty, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/pods/{name}/binding'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling createNamespacedPodBinding.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling createNamespacedPodBinding.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling createNamespacedPodBinding.');
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'POST',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1Binding")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Binding");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * create eviction of a Pod
+ * @param name name of the Eviction
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ createNamespacedPodEviction(name, namespace, body, dryRun, fieldManager, pretty, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/pods/{name}/eviction'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling createNamespacedPodEviction.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling createNamespacedPodEviction.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling createNamespacedPodEviction.');
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'POST',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1beta1Eviction")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1Eviction");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * create a PodTemplate
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createNamespacedPodTemplate(namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/podtemplates'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling createNamespacedPodTemplate.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling createNamespacedPodTemplate.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'POST',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1PodTemplate")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1PodTemplate");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * create a ReplicationController
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createNamespacedReplicationController(namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/replicationcontrollers'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling createNamespacedReplicationController.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling createNamespacedReplicationController.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'POST',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1ReplicationController")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1ReplicationController");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * create a ResourceQuota
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createNamespacedResourceQuota(namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/resourcequotas'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling createNamespacedResourceQuota.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling createNamespacedResourceQuota.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'POST',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1ResourceQuota")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1ResourceQuota");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * create a Secret
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createNamespacedSecret(namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/secrets'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling createNamespacedSecret.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling createNamespacedSecret.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'POST',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1Secret")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Secret");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * create a Service
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createNamespacedService(namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/services'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling createNamespacedService.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling createNamespacedService.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'POST',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1Service")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Service");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * create a ServiceAccount
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createNamespacedServiceAccount(namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/serviceaccounts'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling createNamespacedServiceAccount.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling createNamespacedServiceAccount.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'POST',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1ServiceAccount")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1ServiceAccount");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * create a Node
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createNode(body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/nodes';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling createNode.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'POST',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1Node")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Node");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * create a PersistentVolume
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createPersistentVolume(body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/persistentvolumes';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling createPersistentVolume.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'POST',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1PersistentVolume")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1PersistentVolume");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete collection of ConfigMap
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionNamespacedConfigMap(namespace, pretty, allowWatchBookmarks, _continue, dryRun, fieldSelector, gracePeriodSeconds, labelSelector, limit, orphanDependents, propagationPolicy, resourceVersion, timeoutSeconds, watch, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/configmaps'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling deleteCollectionNamespacedConfigMap.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete collection of Endpoints
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionNamespacedEndpoints(namespace, pretty, allowWatchBookmarks, _continue, dryRun, fieldSelector, gracePeriodSeconds, labelSelector, limit, orphanDependents, propagationPolicy, resourceVersion, timeoutSeconds, watch, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/endpoints'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling deleteCollectionNamespacedEndpoints.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete collection of Event
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionNamespacedEvent(namespace, pretty, allowWatchBookmarks, _continue, dryRun, fieldSelector, gracePeriodSeconds, labelSelector, limit, orphanDependents, propagationPolicy, resourceVersion, timeoutSeconds, watch, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/events'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling deleteCollectionNamespacedEvent.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete collection of LimitRange
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionNamespacedLimitRange(namespace, pretty, allowWatchBookmarks, _continue, dryRun, fieldSelector, gracePeriodSeconds, labelSelector, limit, orphanDependents, propagationPolicy, resourceVersion, timeoutSeconds, watch, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/limitranges'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling deleteCollectionNamespacedLimitRange.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete collection of PersistentVolumeClaim
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionNamespacedPersistentVolumeClaim(namespace, pretty, allowWatchBookmarks, _continue, dryRun, fieldSelector, gracePeriodSeconds, labelSelector, limit, orphanDependents, propagationPolicy, resourceVersion, timeoutSeconds, watch, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/persistentvolumeclaims'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling deleteCollectionNamespacedPersistentVolumeClaim.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete collection of Pod
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionNamespacedPod(namespace, pretty, allowWatchBookmarks, _continue, dryRun, fieldSelector, gracePeriodSeconds, labelSelector, limit, orphanDependents, propagationPolicy, resourceVersion, timeoutSeconds, watch, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/pods'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling deleteCollectionNamespacedPod.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete collection of PodTemplate
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionNamespacedPodTemplate(namespace, pretty, allowWatchBookmarks, _continue, dryRun, fieldSelector, gracePeriodSeconds, labelSelector, limit, orphanDependents, propagationPolicy, resourceVersion, timeoutSeconds, watch, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/podtemplates'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling deleteCollectionNamespacedPodTemplate.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete collection of ReplicationController
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionNamespacedReplicationController(namespace, pretty, allowWatchBookmarks, _continue, dryRun, fieldSelector, gracePeriodSeconds, labelSelector, limit, orphanDependents, propagationPolicy, resourceVersion, timeoutSeconds, watch, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/replicationcontrollers'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling deleteCollectionNamespacedReplicationController.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete collection of ResourceQuota
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionNamespacedResourceQuota(namespace, pretty, allowWatchBookmarks, _continue, dryRun, fieldSelector, gracePeriodSeconds, labelSelector, limit, orphanDependents, propagationPolicy, resourceVersion, timeoutSeconds, watch, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/resourcequotas'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling deleteCollectionNamespacedResourceQuota.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete collection of Secret
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionNamespacedSecret(namespace, pretty, allowWatchBookmarks, _continue, dryRun, fieldSelector, gracePeriodSeconds, labelSelector, limit, orphanDependents, propagationPolicy, resourceVersion, timeoutSeconds, watch, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/secrets'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling deleteCollectionNamespacedSecret.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete collection of ServiceAccount
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionNamespacedServiceAccount(namespace, pretty, allowWatchBookmarks, _continue, dryRun, fieldSelector, gracePeriodSeconds, labelSelector, limit, orphanDependents, propagationPolicy, resourceVersion, timeoutSeconds, watch, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/serviceaccounts'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling deleteCollectionNamespacedServiceAccount.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete collection of Node
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionNode(pretty, allowWatchBookmarks, _continue, dryRun, fieldSelector, gracePeriodSeconds, labelSelector, limit, orphanDependents, propagationPolicy, resourceVersion, timeoutSeconds, watch, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/nodes';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete collection of PersistentVolume
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionPersistentVolume(pretty, allowWatchBookmarks, _continue, dryRun, fieldSelector, gracePeriodSeconds, labelSelector, limit, orphanDependents, propagationPolicy, resourceVersion, timeoutSeconds, watch, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/persistentvolumes';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete a Namespace
+ * @param name name of the Namespace
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteNamespace(name, pretty, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling deleteNamespace.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete a ConfigMap
+ * @param name name of the ConfigMap
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteNamespacedConfigMap(name, namespace, pretty, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/configmaps/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling deleteNamespacedConfigMap.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling deleteNamespacedConfigMap.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete Endpoints
+ * @param name name of the Endpoints
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteNamespacedEndpoints(name, namespace, pretty, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/endpoints/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling deleteNamespacedEndpoints.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling deleteNamespacedEndpoints.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete an Event
+ * @param name name of the Event
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteNamespacedEvent(name, namespace, pretty, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/events/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling deleteNamespacedEvent.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling deleteNamespacedEvent.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete a LimitRange
+ * @param name name of the LimitRange
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteNamespacedLimitRange(name, namespace, pretty, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/limitranges/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling deleteNamespacedLimitRange.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling deleteNamespacedLimitRange.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete a PersistentVolumeClaim
+ * @param name name of the PersistentVolumeClaim
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteNamespacedPersistentVolumeClaim(name, namespace, pretty, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/persistentvolumeclaims/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling deleteNamespacedPersistentVolumeClaim.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling deleteNamespacedPersistentVolumeClaim.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete a Pod
+ * @param name name of the Pod
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteNamespacedPod(name, namespace, pretty, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/pods/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling deleteNamespacedPod.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling deleteNamespacedPod.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete a PodTemplate
+ * @param name name of the PodTemplate
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteNamespacedPodTemplate(name, namespace, pretty, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/podtemplates/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling deleteNamespacedPodTemplate.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling deleteNamespacedPodTemplate.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete a ReplicationController
+ * @param name name of the ReplicationController
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteNamespacedReplicationController(name, namespace, pretty, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/replicationcontrollers/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling deleteNamespacedReplicationController.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling deleteNamespacedReplicationController.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete a ResourceQuota
+ * @param name name of the ResourceQuota
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteNamespacedResourceQuota(name, namespace, pretty, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/resourcequotas/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling deleteNamespacedResourceQuota.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling deleteNamespacedResourceQuota.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete a Secret
+ * @param name name of the Secret
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteNamespacedSecret(name, namespace, pretty, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/secrets/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling deleteNamespacedSecret.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling deleteNamespacedSecret.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete a Service
+ * @param name name of the Service
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteNamespacedService(name, namespace, pretty, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/services/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling deleteNamespacedService.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling deleteNamespacedService.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete a ServiceAccount
+ * @param name name of the ServiceAccount
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteNamespacedServiceAccount(name, namespace, pretty, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/serviceaccounts/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling deleteNamespacedServiceAccount.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling deleteNamespacedServiceAccount.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete a Node
+ * @param name name of the Node
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteNode(name, pretty, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/nodes/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling deleteNode.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete a PersistentVolume
+ * @param name name of the PersistentVolume
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deletePersistentVolume(name, pretty, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/persistentvolumes/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling deletePersistentVolume.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * get available resources
+ */
+ getAPIResources(options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1APIResourceList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list objects of kind ComponentStatus
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listComponentStatus(allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, pretty, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/componentstatuses';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1ComponentStatusList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind ConfigMap
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listConfigMapForAllNamespaces(allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, pretty, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/configmaps';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1ConfigMapList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind Endpoints
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listEndpointsForAllNamespaces(allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, pretty, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/endpoints';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1EndpointsList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind Event
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listEventForAllNamespaces(allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, pretty, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/events';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1EventList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind LimitRange
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listLimitRangeForAllNamespaces(allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, pretty, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/limitranges';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1LimitRangeList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind Namespace
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listNamespace(pretty, allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1NamespaceList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind ConfigMap
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listNamespacedConfigMap(namespace, pretty, allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/configmaps'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling listNamespacedConfigMap.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1ConfigMapList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind Endpoints
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listNamespacedEndpoints(namespace, pretty, allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/endpoints'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling listNamespacedEndpoints.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1EndpointsList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind Event
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listNamespacedEvent(namespace, pretty, allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/events'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling listNamespacedEvent.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1EventList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind LimitRange
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listNamespacedLimitRange(namespace, pretty, allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/limitranges'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling listNamespacedLimitRange.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1LimitRangeList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind PersistentVolumeClaim
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listNamespacedPersistentVolumeClaim(namespace, pretty, allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/persistentvolumeclaims'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling listNamespacedPersistentVolumeClaim.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1PersistentVolumeClaimList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind Pod
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listNamespacedPod(namespace, pretty, allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/pods'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling listNamespacedPod.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1PodList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind PodTemplate
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listNamespacedPodTemplate(namespace, pretty, allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/podtemplates'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling listNamespacedPodTemplate.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1PodTemplateList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind ReplicationController
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listNamespacedReplicationController(namespace, pretty, allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/replicationcontrollers'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling listNamespacedReplicationController.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1ReplicationControllerList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind ResourceQuota
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listNamespacedResourceQuota(namespace, pretty, allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/resourcequotas'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling listNamespacedResourceQuota.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1ResourceQuotaList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind Secret
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listNamespacedSecret(namespace, pretty, allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/secrets'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling listNamespacedSecret.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1SecretList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind Service
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listNamespacedService(namespace, pretty, allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/services'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling listNamespacedService.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1ServiceList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind ServiceAccount
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listNamespacedServiceAccount(namespace, pretty, allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/serviceaccounts'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling listNamespacedServiceAccount.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1ServiceAccountList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind Node
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listNode(pretty, allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/nodes';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1NodeList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind PersistentVolume
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listPersistentVolume(pretty, allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/persistentvolumes';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1PersistentVolumeList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind PersistentVolumeClaim
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listPersistentVolumeClaimForAllNamespaces(allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, pretty, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/persistentvolumeclaims';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1PersistentVolumeClaimList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind Pod
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listPodForAllNamespaces(allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, pretty, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/pods';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1PodList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind PodTemplate
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listPodTemplateForAllNamespaces(allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, pretty, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/podtemplates';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1PodTemplateList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind ReplicationController
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listReplicationControllerForAllNamespaces(allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, pretty, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/replicationcontrollers';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1ReplicationControllerList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind ResourceQuota
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listResourceQuotaForAllNamespaces(allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, pretty, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/resourcequotas';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1ResourceQuotaList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind Secret
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listSecretForAllNamespaces(allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, pretty, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/secrets';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1SecretList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind ServiceAccount
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listServiceAccountForAllNamespaces(allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, pretty, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/serviceaccounts';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1ServiceAccountList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind Service
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listServiceForAllNamespaces(allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, pretty, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/services';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1ServiceList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update the specified Namespace
+ * @param name name of the Namespace
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespace(name, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchNamespace.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchNamespace.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Namespace");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update status of the specified Namespace
+ * @param name name of the Namespace
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespaceStatus(name, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{name}/status'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchNamespaceStatus.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchNamespaceStatus.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Namespace");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update the specified ConfigMap
+ * @param name name of the ConfigMap
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedConfigMap(name, namespace, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/configmaps/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchNamespacedConfigMap.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling patchNamespacedConfigMap.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchNamespacedConfigMap.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1ConfigMap");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update the specified Endpoints
+ * @param name name of the Endpoints
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedEndpoints(name, namespace, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/endpoints/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchNamespacedEndpoints.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling patchNamespacedEndpoints.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchNamespacedEndpoints.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Endpoints");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update the specified Event
+ * @param name name of the Event
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedEvent(name, namespace, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/events/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchNamespacedEvent.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling patchNamespacedEvent.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchNamespacedEvent.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Event");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update the specified LimitRange
+ * @param name name of the LimitRange
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedLimitRange(name, namespace, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/limitranges/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchNamespacedLimitRange.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling patchNamespacedLimitRange.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchNamespacedLimitRange.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1LimitRange");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update the specified PersistentVolumeClaim
+ * @param name name of the PersistentVolumeClaim
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedPersistentVolumeClaim(name, namespace, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/persistentvolumeclaims/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchNamespacedPersistentVolumeClaim.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling patchNamespacedPersistentVolumeClaim.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchNamespacedPersistentVolumeClaim.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1PersistentVolumeClaim");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update status of the specified PersistentVolumeClaim
+ * @param name name of the PersistentVolumeClaim
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedPersistentVolumeClaimStatus(name, namespace, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/persistentvolumeclaims/{name}/status'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchNamespacedPersistentVolumeClaimStatus.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling patchNamespacedPersistentVolumeClaimStatus.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchNamespacedPersistentVolumeClaimStatus.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1PersistentVolumeClaim");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update the specified Pod
+ * @param name name of the Pod
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedPod(name, namespace, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/pods/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchNamespacedPod.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling patchNamespacedPod.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchNamespacedPod.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Pod");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update status of the specified Pod
+ * @param name name of the Pod
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedPodStatus(name, namespace, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/pods/{name}/status'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchNamespacedPodStatus.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling patchNamespacedPodStatus.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchNamespacedPodStatus.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Pod");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update the specified PodTemplate
+ * @param name name of the PodTemplate
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedPodTemplate(name, namespace, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/podtemplates/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchNamespacedPodTemplate.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling patchNamespacedPodTemplate.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchNamespacedPodTemplate.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1PodTemplate");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update the specified ReplicationController
+ * @param name name of the ReplicationController
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedReplicationController(name, namespace, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/replicationcontrollers/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchNamespacedReplicationController.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling patchNamespacedReplicationController.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchNamespacedReplicationController.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1ReplicationController");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update scale of the specified ReplicationController
+ * @param name name of the Scale
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedReplicationControllerScale(name, namespace, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/replicationcontrollers/{name}/scale'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchNamespacedReplicationControllerScale.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling patchNamespacedReplicationControllerScale.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchNamespacedReplicationControllerScale.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Scale");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update status of the specified ReplicationController
+ * @param name name of the ReplicationController
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedReplicationControllerStatus(name, namespace, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/replicationcontrollers/{name}/status'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchNamespacedReplicationControllerStatus.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling patchNamespacedReplicationControllerStatus.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchNamespacedReplicationControllerStatus.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1ReplicationController");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update the specified ResourceQuota
+ * @param name name of the ResourceQuota
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedResourceQuota(name, namespace, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/resourcequotas/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchNamespacedResourceQuota.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling patchNamespacedResourceQuota.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchNamespacedResourceQuota.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1ResourceQuota");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update status of the specified ResourceQuota
+ * @param name name of the ResourceQuota
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedResourceQuotaStatus(name, namespace, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/resourcequotas/{name}/status'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchNamespacedResourceQuotaStatus.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling patchNamespacedResourceQuotaStatus.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchNamespacedResourceQuotaStatus.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1ResourceQuota");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update the specified Secret
+ * @param name name of the Secret
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedSecret(name, namespace, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/secrets/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchNamespacedSecret.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling patchNamespacedSecret.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchNamespacedSecret.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Secret");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update the specified Service
+ * @param name name of the Service
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedService(name, namespace, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/services/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchNamespacedService.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling patchNamespacedService.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchNamespacedService.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Service");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update the specified ServiceAccount
+ * @param name name of the ServiceAccount
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedServiceAccount(name, namespace, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/serviceaccounts/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchNamespacedServiceAccount.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling patchNamespacedServiceAccount.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchNamespacedServiceAccount.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1ServiceAccount");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update status of the specified Service
+ * @param name name of the Service
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedServiceStatus(name, namespace, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/services/{name}/status'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchNamespacedServiceStatus.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling patchNamespacedServiceStatus.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchNamespacedServiceStatus.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Service");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update the specified Node
+ * @param name name of the Node
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNode(name, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/nodes/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchNode.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchNode.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Node");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update status of the specified Node
+ * @param name name of the Node
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNodeStatus(name, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/nodes/{name}/status'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchNodeStatus.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchNodeStatus.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Node");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update the specified PersistentVolume
+ * @param name name of the PersistentVolume
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchPersistentVolume(name, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/persistentvolumes/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchPersistentVolume.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchPersistentVolume.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1PersistentVolume");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update status of the specified PersistentVolume
+ * @param name name of the PersistentVolume
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchPersistentVolumeStatus(name, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/persistentvolumes/{name}/status'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchPersistentVolumeStatus.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchPersistentVolumeStatus.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1PersistentVolume");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read the specified ComponentStatus
+ * @param name name of the ComponentStatus
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readComponentStatus(name, pretty, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/componentstatuses/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readComponentStatus.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1ComponentStatus");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read the specified Namespace
+ * @param name name of the Namespace
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readNamespace(name, pretty, exact, _export, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readNamespace.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (exact !== undefined) {
+ localVarQueryParameters['exact'] = models_1.ObjectSerializer.serialize(exact, "boolean");
+ }
+ if (_export !== undefined) {
+ localVarQueryParameters['export'] = models_1.ObjectSerializer.serialize(_export, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Namespace");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read status of the specified Namespace
+ * @param name name of the Namespace
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readNamespaceStatus(name, pretty, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{name}/status'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readNamespaceStatus.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Namespace");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read the specified ConfigMap
+ * @param name name of the ConfigMap
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readNamespacedConfigMap(name, namespace, pretty, exact, _export, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/configmaps/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readNamespacedConfigMap.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling readNamespacedConfigMap.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (exact !== undefined) {
+ localVarQueryParameters['exact'] = models_1.ObjectSerializer.serialize(exact, "boolean");
+ }
+ if (_export !== undefined) {
+ localVarQueryParameters['export'] = models_1.ObjectSerializer.serialize(_export, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1ConfigMap");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read the specified Endpoints
+ * @param name name of the Endpoints
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readNamespacedEndpoints(name, namespace, pretty, exact, _export, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/endpoints/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readNamespacedEndpoints.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling readNamespacedEndpoints.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (exact !== undefined) {
+ localVarQueryParameters['exact'] = models_1.ObjectSerializer.serialize(exact, "boolean");
+ }
+ if (_export !== undefined) {
+ localVarQueryParameters['export'] = models_1.ObjectSerializer.serialize(_export, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Endpoints");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read the specified Event
+ * @param name name of the Event
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readNamespacedEvent(name, namespace, pretty, exact, _export, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/events/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readNamespacedEvent.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling readNamespacedEvent.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (exact !== undefined) {
+ localVarQueryParameters['exact'] = models_1.ObjectSerializer.serialize(exact, "boolean");
+ }
+ if (_export !== undefined) {
+ localVarQueryParameters['export'] = models_1.ObjectSerializer.serialize(_export, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Event");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read the specified LimitRange
+ * @param name name of the LimitRange
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readNamespacedLimitRange(name, namespace, pretty, exact, _export, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/limitranges/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readNamespacedLimitRange.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling readNamespacedLimitRange.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (exact !== undefined) {
+ localVarQueryParameters['exact'] = models_1.ObjectSerializer.serialize(exact, "boolean");
+ }
+ if (_export !== undefined) {
+ localVarQueryParameters['export'] = models_1.ObjectSerializer.serialize(_export, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1LimitRange");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read the specified PersistentVolumeClaim
+ * @param name name of the PersistentVolumeClaim
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readNamespacedPersistentVolumeClaim(name, namespace, pretty, exact, _export, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/persistentvolumeclaims/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readNamespacedPersistentVolumeClaim.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling readNamespacedPersistentVolumeClaim.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (exact !== undefined) {
+ localVarQueryParameters['exact'] = models_1.ObjectSerializer.serialize(exact, "boolean");
+ }
+ if (_export !== undefined) {
+ localVarQueryParameters['export'] = models_1.ObjectSerializer.serialize(_export, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1PersistentVolumeClaim");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read status of the specified PersistentVolumeClaim
+ * @param name name of the PersistentVolumeClaim
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readNamespacedPersistentVolumeClaimStatus(name, namespace, pretty, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/persistentvolumeclaims/{name}/status'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readNamespacedPersistentVolumeClaimStatus.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling readNamespacedPersistentVolumeClaimStatus.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1PersistentVolumeClaim");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read the specified Pod
+ * @param name name of the Pod
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readNamespacedPod(name, namespace, pretty, exact, _export, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/pods/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readNamespacedPod.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling readNamespacedPod.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (exact !== undefined) {
+ localVarQueryParameters['exact'] = models_1.ObjectSerializer.serialize(exact, "boolean");
+ }
+ if (_export !== undefined) {
+ localVarQueryParameters['export'] = models_1.ObjectSerializer.serialize(_export, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Pod");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read log of the specified Pod
+ * @param name name of the Pod
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param container The container for which to stream logs. Defaults to only container if there is one container in the pod.
+ * @param follow Follow the log stream of the pod. Defaults to false.
+ * @param limitBytes If set, the number of bytes to read from the server before terminating the log output. This may not display a complete final line of logging, and may return slightly more or slightly less than the specified limit.
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param previous Return previous terminated container logs. Defaults to false.
+ * @param sinceSeconds A relative time in seconds before the current time from which to show logs. If this value precedes the time a pod was started, only logs since the pod start will be returned. If this value is in the future, no logs will be returned. Only one of sinceSeconds or sinceTime may be specified.
+ * @param tailLines If set, the number of lines from the end of the logs to show. If not specified, logs are shown from the creation of the container or sinceSeconds or sinceTime
+ * @param timestamps If true, add an RFC3339 or RFC3339Nano timestamp at the beginning of every line of log output. Defaults to false.
+ */
+ readNamespacedPodLog(name, namespace, container, follow, limitBytes, pretty, previous, sinceSeconds, tailLines, timestamps, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/pods/{name}/log'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readNamespacedPodLog.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling readNamespacedPodLog.');
+ }
+ if (container !== undefined) {
+ localVarQueryParameters['container'] = models_1.ObjectSerializer.serialize(container, "string");
+ }
+ if (follow !== undefined) {
+ localVarQueryParameters['follow'] = models_1.ObjectSerializer.serialize(follow, "boolean");
+ }
+ if (limitBytes !== undefined) {
+ localVarQueryParameters['limitBytes'] = models_1.ObjectSerializer.serialize(limitBytes, "number");
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (previous !== undefined) {
+ localVarQueryParameters['previous'] = models_1.ObjectSerializer.serialize(previous, "boolean");
+ }
+ if (sinceSeconds !== undefined) {
+ localVarQueryParameters['sinceSeconds'] = models_1.ObjectSerializer.serialize(sinceSeconds, "number");
+ }
+ if (tailLines !== undefined) {
+ localVarQueryParameters['tailLines'] = models_1.ObjectSerializer.serialize(tailLines, "number");
+ }
+ if (timestamps !== undefined) {
+ localVarQueryParameters['timestamps'] = models_1.ObjectSerializer.serialize(timestamps, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "string");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read status of the specified Pod
+ * @param name name of the Pod
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readNamespacedPodStatus(name, namespace, pretty, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/pods/{name}/status'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readNamespacedPodStatus.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling readNamespacedPodStatus.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Pod");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read the specified PodTemplate
+ * @param name name of the PodTemplate
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readNamespacedPodTemplate(name, namespace, pretty, exact, _export, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/podtemplates/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readNamespacedPodTemplate.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling readNamespacedPodTemplate.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (exact !== undefined) {
+ localVarQueryParameters['exact'] = models_1.ObjectSerializer.serialize(exact, "boolean");
+ }
+ if (_export !== undefined) {
+ localVarQueryParameters['export'] = models_1.ObjectSerializer.serialize(_export, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1PodTemplate");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read the specified ReplicationController
+ * @param name name of the ReplicationController
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readNamespacedReplicationController(name, namespace, pretty, exact, _export, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/replicationcontrollers/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readNamespacedReplicationController.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling readNamespacedReplicationController.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (exact !== undefined) {
+ localVarQueryParameters['exact'] = models_1.ObjectSerializer.serialize(exact, "boolean");
+ }
+ if (_export !== undefined) {
+ localVarQueryParameters['export'] = models_1.ObjectSerializer.serialize(_export, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1ReplicationController");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read scale of the specified ReplicationController
+ * @param name name of the Scale
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readNamespacedReplicationControllerScale(name, namespace, pretty, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/replicationcontrollers/{name}/scale'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readNamespacedReplicationControllerScale.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling readNamespacedReplicationControllerScale.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Scale");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read status of the specified ReplicationController
+ * @param name name of the ReplicationController
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readNamespacedReplicationControllerStatus(name, namespace, pretty, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/replicationcontrollers/{name}/status'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readNamespacedReplicationControllerStatus.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling readNamespacedReplicationControllerStatus.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1ReplicationController");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read the specified ResourceQuota
+ * @param name name of the ResourceQuota
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readNamespacedResourceQuota(name, namespace, pretty, exact, _export, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/resourcequotas/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readNamespacedResourceQuota.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling readNamespacedResourceQuota.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (exact !== undefined) {
+ localVarQueryParameters['exact'] = models_1.ObjectSerializer.serialize(exact, "boolean");
+ }
+ if (_export !== undefined) {
+ localVarQueryParameters['export'] = models_1.ObjectSerializer.serialize(_export, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1ResourceQuota");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read status of the specified ResourceQuota
+ * @param name name of the ResourceQuota
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readNamespacedResourceQuotaStatus(name, namespace, pretty, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/resourcequotas/{name}/status'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readNamespacedResourceQuotaStatus.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling readNamespacedResourceQuotaStatus.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1ResourceQuota");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read the specified Secret
+ * @param name name of the Secret
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readNamespacedSecret(name, namespace, pretty, exact, _export, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/secrets/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readNamespacedSecret.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling readNamespacedSecret.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (exact !== undefined) {
+ localVarQueryParameters['exact'] = models_1.ObjectSerializer.serialize(exact, "boolean");
+ }
+ if (_export !== undefined) {
+ localVarQueryParameters['export'] = models_1.ObjectSerializer.serialize(_export, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Secret");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read the specified Service
+ * @param name name of the Service
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readNamespacedService(name, namespace, pretty, exact, _export, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/services/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readNamespacedService.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling readNamespacedService.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (exact !== undefined) {
+ localVarQueryParameters['exact'] = models_1.ObjectSerializer.serialize(exact, "boolean");
+ }
+ if (_export !== undefined) {
+ localVarQueryParameters['export'] = models_1.ObjectSerializer.serialize(_export, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Service");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read the specified ServiceAccount
+ * @param name name of the ServiceAccount
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readNamespacedServiceAccount(name, namespace, pretty, exact, _export, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/serviceaccounts/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readNamespacedServiceAccount.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling readNamespacedServiceAccount.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (exact !== undefined) {
+ localVarQueryParameters['exact'] = models_1.ObjectSerializer.serialize(exact, "boolean");
+ }
+ if (_export !== undefined) {
+ localVarQueryParameters['export'] = models_1.ObjectSerializer.serialize(_export, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1ServiceAccount");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read status of the specified Service
+ * @param name name of the Service
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readNamespacedServiceStatus(name, namespace, pretty, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/services/{name}/status'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readNamespacedServiceStatus.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling readNamespacedServiceStatus.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Service");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read the specified Node
+ * @param name name of the Node
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readNode(name, pretty, exact, _export, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/nodes/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readNode.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (exact !== undefined) {
+ localVarQueryParameters['exact'] = models_1.ObjectSerializer.serialize(exact, "boolean");
+ }
+ if (_export !== undefined) {
+ localVarQueryParameters['export'] = models_1.ObjectSerializer.serialize(_export, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Node");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read status of the specified Node
+ * @param name name of the Node
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readNodeStatus(name, pretty, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/nodes/{name}/status'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readNodeStatus.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Node");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read the specified PersistentVolume
+ * @param name name of the PersistentVolume
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readPersistentVolume(name, pretty, exact, _export, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/persistentvolumes/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readPersistentVolume.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (exact !== undefined) {
+ localVarQueryParameters['exact'] = models_1.ObjectSerializer.serialize(exact, "boolean");
+ }
+ if (_export !== undefined) {
+ localVarQueryParameters['export'] = models_1.ObjectSerializer.serialize(_export, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1PersistentVolume");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read status of the specified PersistentVolume
+ * @param name name of the PersistentVolume
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readPersistentVolumeStatus(name, pretty, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/persistentvolumes/{name}/status'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readPersistentVolumeStatus.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1PersistentVolume");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace the specified Namespace
+ * @param name name of the Namespace
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespace(name, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceNamespace.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceNamespace.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1Namespace")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Namespace");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace finalize of the specified Namespace
+ * @param name name of the Namespace
+ * @param body
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ replaceNamespaceFinalize(name, body, dryRun, fieldManager, pretty, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{name}/finalize'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceNamespaceFinalize.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceNamespaceFinalize.');
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1Namespace")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Namespace");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace status of the specified Namespace
+ * @param name name of the Namespace
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespaceStatus(name, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{name}/status'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceNamespaceStatus.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceNamespaceStatus.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1Namespace")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Namespace");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace the specified ConfigMap
+ * @param name name of the ConfigMap
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedConfigMap(name, namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/configmaps/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceNamespacedConfigMap.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling replaceNamespacedConfigMap.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceNamespacedConfigMap.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1ConfigMap")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1ConfigMap");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace the specified Endpoints
+ * @param name name of the Endpoints
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedEndpoints(name, namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/endpoints/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceNamespacedEndpoints.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling replaceNamespacedEndpoints.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceNamespacedEndpoints.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1Endpoints")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Endpoints");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace the specified Event
+ * @param name name of the Event
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedEvent(name, namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/events/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceNamespacedEvent.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling replaceNamespacedEvent.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceNamespacedEvent.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1Event")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Event");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace the specified LimitRange
+ * @param name name of the LimitRange
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedLimitRange(name, namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/limitranges/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceNamespacedLimitRange.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling replaceNamespacedLimitRange.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceNamespacedLimitRange.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1LimitRange")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1LimitRange");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace the specified PersistentVolumeClaim
+ * @param name name of the PersistentVolumeClaim
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedPersistentVolumeClaim(name, namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/persistentvolumeclaims/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceNamespacedPersistentVolumeClaim.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling replaceNamespacedPersistentVolumeClaim.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceNamespacedPersistentVolumeClaim.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1PersistentVolumeClaim")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1PersistentVolumeClaim");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace status of the specified PersistentVolumeClaim
+ * @param name name of the PersistentVolumeClaim
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedPersistentVolumeClaimStatus(name, namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/persistentvolumeclaims/{name}/status'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceNamespacedPersistentVolumeClaimStatus.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling replaceNamespacedPersistentVolumeClaimStatus.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceNamespacedPersistentVolumeClaimStatus.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1PersistentVolumeClaim")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1PersistentVolumeClaim");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace the specified Pod
+ * @param name name of the Pod
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedPod(name, namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/pods/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceNamespacedPod.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling replaceNamespacedPod.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceNamespacedPod.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1Pod")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Pod");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace status of the specified Pod
+ * @param name name of the Pod
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedPodStatus(name, namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/pods/{name}/status'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceNamespacedPodStatus.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling replaceNamespacedPodStatus.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceNamespacedPodStatus.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1Pod")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Pod");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace the specified PodTemplate
+ * @param name name of the PodTemplate
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedPodTemplate(name, namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/podtemplates/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceNamespacedPodTemplate.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling replaceNamespacedPodTemplate.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceNamespacedPodTemplate.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1PodTemplate")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1PodTemplate");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace the specified ReplicationController
+ * @param name name of the ReplicationController
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedReplicationController(name, namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/replicationcontrollers/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceNamespacedReplicationController.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling replaceNamespacedReplicationController.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceNamespacedReplicationController.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1ReplicationController")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1ReplicationController");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace scale of the specified ReplicationController
+ * @param name name of the Scale
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedReplicationControllerScale(name, namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/replicationcontrollers/{name}/scale'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceNamespacedReplicationControllerScale.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling replaceNamespacedReplicationControllerScale.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceNamespacedReplicationControllerScale.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1Scale")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Scale");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace status of the specified ReplicationController
+ * @param name name of the ReplicationController
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedReplicationControllerStatus(name, namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/replicationcontrollers/{name}/status'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceNamespacedReplicationControllerStatus.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling replaceNamespacedReplicationControllerStatus.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceNamespacedReplicationControllerStatus.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1ReplicationController")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1ReplicationController");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace the specified ResourceQuota
+ * @param name name of the ResourceQuota
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedResourceQuota(name, namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/resourcequotas/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceNamespacedResourceQuota.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling replaceNamespacedResourceQuota.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceNamespacedResourceQuota.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1ResourceQuota")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1ResourceQuota");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace status of the specified ResourceQuota
+ * @param name name of the ResourceQuota
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedResourceQuotaStatus(name, namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/resourcequotas/{name}/status'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceNamespacedResourceQuotaStatus.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling replaceNamespacedResourceQuotaStatus.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceNamespacedResourceQuotaStatus.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1ResourceQuota")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1ResourceQuota");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace the specified Secret
+ * @param name name of the Secret
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedSecret(name, namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/secrets/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceNamespacedSecret.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling replaceNamespacedSecret.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceNamespacedSecret.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1Secret")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Secret");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace the specified Service
+ * @param name name of the Service
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedService(name, namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/services/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceNamespacedService.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling replaceNamespacedService.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceNamespacedService.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1Service")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Service");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace the specified ServiceAccount
+ * @param name name of the ServiceAccount
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedServiceAccount(name, namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/serviceaccounts/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceNamespacedServiceAccount.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling replaceNamespacedServiceAccount.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceNamespacedServiceAccount.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1ServiceAccount")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1ServiceAccount");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace status of the specified Service
+ * @param name name of the Service
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedServiceStatus(name, namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/namespaces/{namespace}/services/{name}/status'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceNamespacedServiceStatus.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling replaceNamespacedServiceStatus.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceNamespacedServiceStatus.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1Service")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Service");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace the specified Node
+ * @param name name of the Node
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNode(name, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/nodes/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceNode.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceNode.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1Node")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Node");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace status of the specified Node
+ * @param name name of the Node
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNodeStatus(name, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/nodes/{name}/status'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceNodeStatus.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceNodeStatus.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1Node")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Node");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace the specified PersistentVolume
+ * @param name name of the PersistentVolume
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replacePersistentVolume(name, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/persistentvolumes/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replacePersistentVolume.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replacePersistentVolume.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1PersistentVolume")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1PersistentVolume");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace status of the specified PersistentVolume
+ * @param name name of the PersistentVolume
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replacePersistentVolumeStatus(name, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/api/v1/persistentvolumes/{name}/status'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replacePersistentVolumeStatus.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replacePersistentVolumeStatus.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1PersistentVolume")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1PersistentVolume");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+}
+exports.CoreV1Api = CoreV1Api;
+//# sourceMappingURL=coreV1Api.js.map
\ No newline at end of file
diff --git a/dist/gen/api/coreV1Api.js.map b/dist/gen/api/coreV1Api.js.map
new file mode 100644
index 0000000000..1bc83db103
--- /dev/null
+++ b/dist/gen/api/coreV1Api.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"coreV1Api.js","sourceRoot":"","sources":["../../../src/gen/api/coreV1Api.ts"],"names":[],"mappings":"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"}
\ No newline at end of file
diff --git a/dist/gen/api/customObjectsApi.d.ts b/dist/gen/api/customObjectsApi.d.ts
new file mode 100644
index 0000000000..3cb0fb8c0c
--- /dev/null
+++ b/dist/gen/api/customObjectsApi.d.ts
@@ -0,0 +1,437 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+///
+import http = require('http');
+import { V1DeleteOptions } from '../model/v1DeleteOptions';
+import { Authentication } from '../model/models';
+import { ApiKeyAuth } from '../model/models';
+export declare enum CustomObjectsApiApiKeys {
+ BearerToken = 0
+}
+export declare class CustomObjectsApi {
+ protected _basePath: string;
+ protected defaultHeaders: any;
+ protected _useQuerystring: boolean;
+ protected authentications: {
+ 'default': Authentication;
+ 'BearerToken': ApiKeyAuth;
+ };
+ constructor(basePath?: string);
+ useQuerystring: boolean;
+ basePath: string;
+ setDefaultAuthentication(auth: Authentication): void;
+ setApiKey(key: CustomObjectsApiApiKeys, value: string): void;
+ /**
+ * Creates a cluster scoped Custom object
+ * @param group The custom resource\'s group name
+ * @param version The custom resource\'s version
+ * @param plural The custom resource\'s plural name. For TPRs this would be lowercase plural kind.
+ * @param body The JSON schema of the Resource to create.
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ createClusterCustomObject(group: string, version: string, plural: string, body: object, pretty?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: object;
+ }>;
+ /**
+ * Creates a namespace scoped Custom object
+ * @param group The custom resource\'s group name
+ * @param version The custom resource\'s version
+ * @param namespace The custom resource\'s namespace
+ * @param plural The custom resource\'s plural name. For TPRs this would be lowercase plural kind.
+ * @param body The JSON schema of the Resource to create.
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ createNamespacedCustomObject(group: string, version: string, namespace: string, plural: string, body: object, pretty?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: object;
+ }>;
+ /**
+ * Deletes the specified cluster scoped custom object
+ * @param group the custom resource\'s group
+ * @param version the custom resource\'s version
+ * @param plural the custom object\'s plural name. For TPRs this would be lowercase plural kind.
+ * @param name the custom object\'s name
+ * @param body
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy.
+ */
+ deleteClusterCustomObject(group: string, version: string, plural: string, name: string, body: V1DeleteOptions, gracePeriodSeconds?: number, orphanDependents?: boolean, propagationPolicy?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: object;
+ }>;
+ /**
+ * Deletes the specified namespace scoped custom object
+ * @param group the custom resource\'s group
+ * @param version the custom resource\'s version
+ * @param namespace The custom resource\'s namespace
+ * @param plural the custom resource\'s plural name. For TPRs this would be lowercase plural kind.
+ * @param name the custom object\'s name
+ * @param body
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy.
+ */
+ deleteNamespacedCustomObject(group: string, version: string, namespace: string, plural: string, name: string, body: V1DeleteOptions, gracePeriodSeconds?: number, orphanDependents?: boolean, propagationPolicy?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: object;
+ }>;
+ /**
+ * Returns a cluster scoped custom object
+ * @param group the custom resource\'s group
+ * @param version the custom resource\'s version
+ * @param plural the custom object\'s plural name. For TPRs this would be lowercase plural kind.
+ * @param name the custom object\'s name
+ */
+ getClusterCustomObject(group: string, version: string, plural: string, name: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: object;
+ }>;
+ /**
+ * read scale of the specified custom object
+ * @param group the custom resource\'s group
+ * @param version the custom resource\'s version
+ * @param plural the custom resource\'s plural name. For TPRs this would be lowercase plural kind.
+ * @param name the custom object\'s name
+ */
+ getClusterCustomObjectScale(group: string, version: string, plural: string, name: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: object;
+ }>;
+ /**
+ * read status of the specified cluster scoped custom object
+ * @param group the custom resource\'s group
+ * @param version the custom resource\'s version
+ * @param plural the custom resource\'s plural name. For TPRs this would be lowercase plural kind.
+ * @param name the custom object\'s name
+ */
+ getClusterCustomObjectStatus(group: string, version: string, plural: string, name: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: object;
+ }>;
+ /**
+ * Returns a namespace scoped custom object
+ * @param group the custom resource\'s group
+ * @param version the custom resource\'s version
+ * @param namespace The custom resource\'s namespace
+ * @param plural the custom resource\'s plural name. For TPRs this would be lowercase plural kind.
+ * @param name the custom object\'s name
+ */
+ getNamespacedCustomObject(group: string, version: string, namespace: string, plural: string, name: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: object;
+ }>;
+ /**
+ * read scale of the specified namespace scoped custom object
+ * @param group the custom resource\'s group
+ * @param version the custom resource\'s version
+ * @param namespace The custom resource\'s namespace
+ * @param plural the custom resource\'s plural name. For TPRs this would be lowercase plural kind.
+ * @param name the custom object\'s name
+ */
+ getNamespacedCustomObjectScale(group: string, version: string, namespace: string, plural: string, name: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: object;
+ }>;
+ /**
+ * read status of the specified namespace scoped custom object
+ * @param group the custom resource\'s group
+ * @param version the custom resource\'s version
+ * @param namespace The custom resource\'s namespace
+ * @param plural the custom resource\'s plural name. For TPRs this would be lowercase plural kind.
+ * @param name the custom object\'s name
+ */
+ getNamespacedCustomObjectStatus(group: string, version: string, namespace: string, plural: string, name: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: object;
+ }>;
+ /**
+ * list or watch cluster scoped custom objects
+ * @param group The custom resource\'s group name
+ * @param version The custom resource\'s version
+ * @param plural The custom resource\'s plural name. For TPRs this would be lowercase plural kind.
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications.
+ */
+ listClusterCustomObject(group: string, version: string, plural: string, pretty?: string, fieldSelector?: string, labelSelector?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: object;
+ }>;
+ /**
+ * list or watch namespace scoped custom objects
+ * @param group The custom resource\'s group name
+ * @param version The custom resource\'s version
+ * @param namespace The custom resource\'s namespace
+ * @param plural The custom resource\'s plural name. For TPRs this would be lowercase plural kind.
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications.
+ */
+ listNamespacedCustomObject(group: string, version: string, namespace: string, plural: string, pretty?: string, fieldSelector?: string, labelSelector?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: object;
+ }>;
+ /**
+ * patch the specified cluster scoped custom object
+ * @param group the custom resource\'s group
+ * @param version the custom resource\'s version
+ * @param plural the custom object\'s plural name. For TPRs this would be lowercase plural kind.
+ * @param name the custom object\'s name
+ * @param body The JSON schema of the Resource to patch.
+ */
+ patchClusterCustomObject(group: string, version: string, plural: string, name: string, body: object, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: object;
+ }>;
+ /**
+ * partially update scale of the specified cluster scoped custom object
+ * @param group the custom resource\'s group
+ * @param version the custom resource\'s version
+ * @param plural the custom resource\'s plural name. For TPRs this would be lowercase plural kind.
+ * @param name the custom object\'s name
+ * @param body
+ */
+ patchClusterCustomObjectScale(group: string, version: string, plural: string, name: string, body: object, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: object;
+ }>;
+ /**
+ * partially update status of the specified cluster scoped custom object
+ * @param group the custom resource\'s group
+ * @param version the custom resource\'s version
+ * @param plural the custom resource\'s plural name. For TPRs this would be lowercase plural kind.
+ * @param name the custom object\'s name
+ * @param body
+ */
+ patchClusterCustomObjectStatus(group: string, version: string, plural: string, name: string, body: object, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: object;
+ }>;
+ /**
+ * patch the specified namespace scoped custom object
+ * @param group the custom resource\'s group
+ * @param version the custom resource\'s version
+ * @param namespace The custom resource\'s namespace
+ * @param plural the custom resource\'s plural name. For TPRs this would be lowercase plural kind.
+ * @param name the custom object\'s name
+ * @param body The JSON schema of the Resource to patch.
+ */
+ patchNamespacedCustomObject(group: string, version: string, namespace: string, plural: string, name: string, body: object, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: object;
+ }>;
+ /**
+ * partially update scale of the specified namespace scoped custom object
+ * @param group the custom resource\'s group
+ * @param version the custom resource\'s version
+ * @param namespace The custom resource\'s namespace
+ * @param plural the custom resource\'s plural name. For TPRs this would be lowercase plural kind.
+ * @param name the custom object\'s name
+ * @param body
+ */
+ patchNamespacedCustomObjectScale(group: string, version: string, namespace: string, plural: string, name: string, body: object, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: object;
+ }>;
+ /**
+ * partially update status of the specified namespace scoped custom object
+ * @param group the custom resource\'s group
+ * @param version the custom resource\'s version
+ * @param namespace The custom resource\'s namespace
+ * @param plural the custom resource\'s plural name. For TPRs this would be lowercase plural kind.
+ * @param name the custom object\'s name
+ * @param body
+ */
+ patchNamespacedCustomObjectStatus(group: string, version: string, namespace: string, plural: string, name: string, body: object, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: object;
+ }>;
+ /**
+ * replace the specified cluster scoped custom object
+ * @param group the custom resource\'s group
+ * @param version the custom resource\'s version
+ * @param plural the custom object\'s plural name. For TPRs this would be lowercase plural kind.
+ * @param name the custom object\'s name
+ * @param body The JSON schema of the Resource to replace.
+ */
+ replaceClusterCustomObject(group: string, version: string, plural: string, name: string, body: object, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: object;
+ }>;
+ /**
+ * replace scale of the specified cluster scoped custom object
+ * @param group the custom resource\'s group
+ * @param version the custom resource\'s version
+ * @param plural the custom resource\'s plural name. For TPRs this would be lowercase plural kind.
+ * @param name the custom object\'s name
+ * @param body
+ */
+ replaceClusterCustomObjectScale(group: string, version: string, plural: string, name: string, body: object, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: object;
+ }>;
+ /**
+ * replace status of the cluster scoped specified custom object
+ * @param group the custom resource\'s group
+ * @param version the custom resource\'s version
+ * @param plural the custom resource\'s plural name. For TPRs this would be lowercase plural kind.
+ * @param name the custom object\'s name
+ * @param body
+ */
+ replaceClusterCustomObjectStatus(group: string, version: string, plural: string, name: string, body: object, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: object;
+ }>;
+ /**
+ * replace the specified namespace scoped custom object
+ * @param group the custom resource\'s group
+ * @param version the custom resource\'s version
+ * @param namespace The custom resource\'s namespace
+ * @param plural the custom resource\'s plural name. For TPRs this would be lowercase plural kind.
+ * @param name the custom object\'s name
+ * @param body The JSON schema of the Resource to replace.
+ */
+ replaceNamespacedCustomObject(group: string, version: string, namespace: string, plural: string, name: string, body: object, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: object;
+ }>;
+ /**
+ * replace scale of the specified namespace scoped custom object
+ * @param group the custom resource\'s group
+ * @param version the custom resource\'s version
+ * @param namespace The custom resource\'s namespace
+ * @param plural the custom resource\'s plural name. For TPRs this would be lowercase plural kind.
+ * @param name the custom object\'s name
+ * @param body
+ */
+ replaceNamespacedCustomObjectScale(group: string, version: string, namespace: string, plural: string, name: string, body: object, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: object;
+ }>;
+ /**
+ * replace status of the specified namespace scoped custom object
+ * @param group the custom resource\'s group
+ * @param version the custom resource\'s version
+ * @param namespace The custom resource\'s namespace
+ * @param plural the custom resource\'s plural name. For TPRs this would be lowercase plural kind.
+ * @param name the custom object\'s name
+ * @param body
+ */
+ replaceNamespacedCustomObjectStatus(group: string, version: string, namespace: string, plural: string, name: string, body: object, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: object;
+ }>;
+}
diff --git a/dist/gen/api/customObjectsApi.js b/dist/gen/api/customObjectsApi.js
new file mode 100644
index 0000000000..73eefc978d
--- /dev/null
+++ b/dist/gen/api/customObjectsApi.js
@@ -0,0 +1,2063 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+const tslib_1 = require("tslib");
+const localVarRequest = require("request");
+const models_1 = require("../model/models");
+const models_2 = require("../model/models");
+let defaultBasePath = 'http://localhost/';
+// ===============================================
+// This file is autogenerated - Please do not edit
+// ===============================================
+var CustomObjectsApiApiKeys;
+(function (CustomObjectsApiApiKeys) {
+ CustomObjectsApiApiKeys[CustomObjectsApiApiKeys["BearerToken"] = 0] = "BearerToken";
+})(CustomObjectsApiApiKeys = exports.CustomObjectsApiApiKeys || (exports.CustomObjectsApiApiKeys = {}));
+class CustomObjectsApi {
+ constructor(basePathOrUsername, password, basePath) {
+ this._basePath = defaultBasePath;
+ this.defaultHeaders = {};
+ this._useQuerystring = false;
+ this.authentications = {
+ 'default': new models_1.VoidAuth(),
+ 'BearerToken': new models_2.ApiKeyAuth('header', 'authorization'),
+ };
+ if (password) {
+ if (basePath) {
+ this.basePath = basePath;
+ }
+ }
+ else {
+ if (basePathOrUsername) {
+ this.basePath = basePathOrUsername;
+ }
+ }
+ }
+ set useQuerystring(value) {
+ this._useQuerystring = value;
+ }
+ set basePath(basePath) {
+ this._basePath = basePath;
+ }
+ get basePath() {
+ return this._basePath;
+ }
+ setDefaultAuthentication(auth) {
+ this.authentications.default = auth;
+ }
+ setApiKey(key, value) {
+ this.authentications[CustomObjectsApiApiKeys[key]].apiKey = value;
+ }
+ /**
+ * Creates a cluster scoped Custom object
+ * @param group The custom resource\'s group name
+ * @param version The custom resource\'s version
+ * @param plural The custom resource\'s plural name. For TPRs this would be lowercase plural kind.
+ * @param body The JSON schema of the Resource to create.
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ createClusterCustomObject(group, version, plural, body, pretty, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/{group}/{version}/{plural}'
+ .replace('{' + 'group' + '}', encodeURIComponent(String(group)))
+ .replace('{' + 'version' + '}', encodeURIComponent(String(version)))
+ .replace('{' + 'plural' + '}', encodeURIComponent(String(plural)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'group' is not null or undefined
+ if (group === null || group === undefined) {
+ throw new Error('Required parameter group was null or undefined when calling createClusterCustomObject.');
+ }
+ // verify required parameter 'version' is not null or undefined
+ if (version === null || version === undefined) {
+ throw new Error('Required parameter version was null or undefined when calling createClusterCustomObject.');
+ }
+ // verify required parameter 'plural' is not null or undefined
+ if (plural === null || plural === undefined) {
+ throw new Error('Required parameter plural was null or undefined when calling createClusterCustomObject.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling createClusterCustomObject.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'POST',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "object");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * Creates a namespace scoped Custom object
+ * @param group The custom resource\'s group name
+ * @param version The custom resource\'s version
+ * @param namespace The custom resource\'s namespace
+ * @param plural The custom resource\'s plural name. For TPRs this would be lowercase plural kind.
+ * @param body The JSON schema of the Resource to create.
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ createNamespacedCustomObject(group, version, namespace, plural, body, pretty, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/{group}/{version}/namespaces/{namespace}/{plural}'
+ .replace('{' + 'group' + '}', encodeURIComponent(String(group)))
+ .replace('{' + 'version' + '}', encodeURIComponent(String(version)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)))
+ .replace('{' + 'plural' + '}', encodeURIComponent(String(plural)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'group' is not null or undefined
+ if (group === null || group === undefined) {
+ throw new Error('Required parameter group was null or undefined when calling createNamespacedCustomObject.');
+ }
+ // verify required parameter 'version' is not null or undefined
+ if (version === null || version === undefined) {
+ throw new Error('Required parameter version was null or undefined when calling createNamespacedCustomObject.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling createNamespacedCustomObject.');
+ }
+ // verify required parameter 'plural' is not null or undefined
+ if (plural === null || plural === undefined) {
+ throw new Error('Required parameter plural was null or undefined when calling createNamespacedCustomObject.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling createNamespacedCustomObject.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'POST',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "object");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * Deletes the specified cluster scoped custom object
+ * @param group the custom resource\'s group
+ * @param version the custom resource\'s version
+ * @param plural the custom object\'s plural name. For TPRs this would be lowercase plural kind.
+ * @param name the custom object\'s name
+ * @param body
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy.
+ */
+ deleteClusterCustomObject(group, version, plural, name, body, gracePeriodSeconds, orphanDependents, propagationPolicy, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/{group}/{version}/{plural}/{name}'
+ .replace('{' + 'group' + '}', encodeURIComponent(String(group)))
+ .replace('{' + 'version' + '}', encodeURIComponent(String(version)))
+ .replace('{' + 'plural' + '}', encodeURIComponent(String(plural)))
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'group' is not null or undefined
+ if (group === null || group === undefined) {
+ throw new Error('Required parameter group was null or undefined when calling deleteClusterCustomObject.');
+ }
+ // verify required parameter 'version' is not null or undefined
+ if (version === null || version === undefined) {
+ throw new Error('Required parameter version was null or undefined when calling deleteClusterCustomObject.');
+ }
+ // verify required parameter 'plural' is not null or undefined
+ if (plural === null || plural === undefined) {
+ throw new Error('Required parameter plural was null or undefined when calling deleteClusterCustomObject.');
+ }
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling deleteClusterCustomObject.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling deleteClusterCustomObject.');
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "object");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * Deletes the specified namespace scoped custom object
+ * @param group the custom resource\'s group
+ * @param version the custom resource\'s version
+ * @param namespace The custom resource\'s namespace
+ * @param plural the custom resource\'s plural name. For TPRs this would be lowercase plural kind.
+ * @param name the custom object\'s name
+ * @param body
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy.
+ */
+ deleteNamespacedCustomObject(group, version, namespace, plural, name, body, gracePeriodSeconds, orphanDependents, propagationPolicy, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/{group}/{version}/namespaces/{namespace}/{plural}/{name}'
+ .replace('{' + 'group' + '}', encodeURIComponent(String(group)))
+ .replace('{' + 'version' + '}', encodeURIComponent(String(version)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)))
+ .replace('{' + 'plural' + '}', encodeURIComponent(String(plural)))
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'group' is not null or undefined
+ if (group === null || group === undefined) {
+ throw new Error('Required parameter group was null or undefined when calling deleteNamespacedCustomObject.');
+ }
+ // verify required parameter 'version' is not null or undefined
+ if (version === null || version === undefined) {
+ throw new Error('Required parameter version was null or undefined when calling deleteNamespacedCustomObject.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling deleteNamespacedCustomObject.');
+ }
+ // verify required parameter 'plural' is not null or undefined
+ if (plural === null || plural === undefined) {
+ throw new Error('Required parameter plural was null or undefined when calling deleteNamespacedCustomObject.');
+ }
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling deleteNamespacedCustomObject.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling deleteNamespacedCustomObject.');
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "object");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * Returns a cluster scoped custom object
+ * @param group the custom resource\'s group
+ * @param version the custom resource\'s version
+ * @param plural the custom object\'s plural name. For TPRs this would be lowercase plural kind.
+ * @param name the custom object\'s name
+ */
+ getClusterCustomObject(group, version, plural, name, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/{group}/{version}/{plural}/{name}'
+ .replace('{' + 'group' + '}', encodeURIComponent(String(group)))
+ .replace('{' + 'version' + '}', encodeURIComponent(String(version)))
+ .replace('{' + 'plural' + '}', encodeURIComponent(String(plural)))
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'group' is not null or undefined
+ if (group === null || group === undefined) {
+ throw new Error('Required parameter group was null or undefined when calling getClusterCustomObject.');
+ }
+ // verify required parameter 'version' is not null or undefined
+ if (version === null || version === undefined) {
+ throw new Error('Required parameter version was null or undefined when calling getClusterCustomObject.');
+ }
+ // verify required parameter 'plural' is not null or undefined
+ if (plural === null || plural === undefined) {
+ throw new Error('Required parameter plural was null or undefined when calling getClusterCustomObject.');
+ }
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling getClusterCustomObject.');
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "object");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read scale of the specified custom object
+ * @param group the custom resource\'s group
+ * @param version the custom resource\'s version
+ * @param plural the custom resource\'s plural name. For TPRs this would be lowercase plural kind.
+ * @param name the custom object\'s name
+ */
+ getClusterCustomObjectScale(group, version, plural, name, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/{group}/{version}/{plural}/{name}/scale'
+ .replace('{' + 'group' + '}', encodeURIComponent(String(group)))
+ .replace('{' + 'version' + '}', encodeURIComponent(String(version)))
+ .replace('{' + 'plural' + '}', encodeURIComponent(String(plural)))
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'group' is not null or undefined
+ if (group === null || group === undefined) {
+ throw new Error('Required parameter group was null or undefined when calling getClusterCustomObjectScale.');
+ }
+ // verify required parameter 'version' is not null or undefined
+ if (version === null || version === undefined) {
+ throw new Error('Required parameter version was null or undefined when calling getClusterCustomObjectScale.');
+ }
+ // verify required parameter 'plural' is not null or undefined
+ if (plural === null || plural === undefined) {
+ throw new Error('Required parameter plural was null or undefined when calling getClusterCustomObjectScale.');
+ }
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling getClusterCustomObjectScale.');
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "object");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read status of the specified cluster scoped custom object
+ * @param group the custom resource\'s group
+ * @param version the custom resource\'s version
+ * @param plural the custom resource\'s plural name. For TPRs this would be lowercase plural kind.
+ * @param name the custom object\'s name
+ */
+ getClusterCustomObjectStatus(group, version, plural, name, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/{group}/{version}/{plural}/{name}/status'
+ .replace('{' + 'group' + '}', encodeURIComponent(String(group)))
+ .replace('{' + 'version' + '}', encodeURIComponent(String(version)))
+ .replace('{' + 'plural' + '}', encodeURIComponent(String(plural)))
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'group' is not null or undefined
+ if (group === null || group === undefined) {
+ throw new Error('Required parameter group was null or undefined when calling getClusterCustomObjectStatus.');
+ }
+ // verify required parameter 'version' is not null or undefined
+ if (version === null || version === undefined) {
+ throw new Error('Required parameter version was null or undefined when calling getClusterCustomObjectStatus.');
+ }
+ // verify required parameter 'plural' is not null or undefined
+ if (plural === null || plural === undefined) {
+ throw new Error('Required parameter plural was null or undefined when calling getClusterCustomObjectStatus.');
+ }
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling getClusterCustomObjectStatus.');
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "object");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * Returns a namespace scoped custom object
+ * @param group the custom resource\'s group
+ * @param version the custom resource\'s version
+ * @param namespace The custom resource\'s namespace
+ * @param plural the custom resource\'s plural name. For TPRs this would be lowercase plural kind.
+ * @param name the custom object\'s name
+ */
+ getNamespacedCustomObject(group, version, namespace, plural, name, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/{group}/{version}/namespaces/{namespace}/{plural}/{name}'
+ .replace('{' + 'group' + '}', encodeURIComponent(String(group)))
+ .replace('{' + 'version' + '}', encodeURIComponent(String(version)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)))
+ .replace('{' + 'plural' + '}', encodeURIComponent(String(plural)))
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'group' is not null or undefined
+ if (group === null || group === undefined) {
+ throw new Error('Required parameter group was null or undefined when calling getNamespacedCustomObject.');
+ }
+ // verify required parameter 'version' is not null or undefined
+ if (version === null || version === undefined) {
+ throw new Error('Required parameter version was null or undefined when calling getNamespacedCustomObject.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling getNamespacedCustomObject.');
+ }
+ // verify required parameter 'plural' is not null or undefined
+ if (plural === null || plural === undefined) {
+ throw new Error('Required parameter plural was null or undefined when calling getNamespacedCustomObject.');
+ }
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling getNamespacedCustomObject.');
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "object");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read scale of the specified namespace scoped custom object
+ * @param group the custom resource\'s group
+ * @param version the custom resource\'s version
+ * @param namespace The custom resource\'s namespace
+ * @param plural the custom resource\'s plural name. For TPRs this would be lowercase plural kind.
+ * @param name the custom object\'s name
+ */
+ getNamespacedCustomObjectScale(group, version, namespace, plural, name, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/{group}/{version}/namespaces/{namespace}/{plural}/{name}/scale'
+ .replace('{' + 'group' + '}', encodeURIComponent(String(group)))
+ .replace('{' + 'version' + '}', encodeURIComponent(String(version)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)))
+ .replace('{' + 'plural' + '}', encodeURIComponent(String(plural)))
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'group' is not null or undefined
+ if (group === null || group === undefined) {
+ throw new Error('Required parameter group was null or undefined when calling getNamespacedCustomObjectScale.');
+ }
+ // verify required parameter 'version' is not null or undefined
+ if (version === null || version === undefined) {
+ throw new Error('Required parameter version was null or undefined when calling getNamespacedCustomObjectScale.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling getNamespacedCustomObjectScale.');
+ }
+ // verify required parameter 'plural' is not null or undefined
+ if (plural === null || plural === undefined) {
+ throw new Error('Required parameter plural was null or undefined when calling getNamespacedCustomObjectScale.');
+ }
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling getNamespacedCustomObjectScale.');
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "object");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read status of the specified namespace scoped custom object
+ * @param group the custom resource\'s group
+ * @param version the custom resource\'s version
+ * @param namespace The custom resource\'s namespace
+ * @param plural the custom resource\'s plural name. For TPRs this would be lowercase plural kind.
+ * @param name the custom object\'s name
+ */
+ getNamespacedCustomObjectStatus(group, version, namespace, plural, name, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/{group}/{version}/namespaces/{namespace}/{plural}/{name}/status'
+ .replace('{' + 'group' + '}', encodeURIComponent(String(group)))
+ .replace('{' + 'version' + '}', encodeURIComponent(String(version)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)))
+ .replace('{' + 'plural' + '}', encodeURIComponent(String(plural)))
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'group' is not null or undefined
+ if (group === null || group === undefined) {
+ throw new Error('Required parameter group was null or undefined when calling getNamespacedCustomObjectStatus.');
+ }
+ // verify required parameter 'version' is not null or undefined
+ if (version === null || version === undefined) {
+ throw new Error('Required parameter version was null or undefined when calling getNamespacedCustomObjectStatus.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling getNamespacedCustomObjectStatus.');
+ }
+ // verify required parameter 'plural' is not null or undefined
+ if (plural === null || plural === undefined) {
+ throw new Error('Required parameter plural was null or undefined when calling getNamespacedCustomObjectStatus.');
+ }
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling getNamespacedCustomObjectStatus.');
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "object");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch cluster scoped custom objects
+ * @param group The custom resource\'s group name
+ * @param version The custom resource\'s version
+ * @param plural The custom resource\'s plural name. For TPRs this would be lowercase plural kind.
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications.
+ */
+ listClusterCustomObject(group, version, plural, pretty, fieldSelector, labelSelector, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/{group}/{version}/{plural}'
+ .replace('{' + 'group' + '}', encodeURIComponent(String(group)))
+ .replace('{' + 'version' + '}', encodeURIComponent(String(version)))
+ .replace('{' + 'plural' + '}', encodeURIComponent(String(plural)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'group' is not null or undefined
+ if (group === null || group === undefined) {
+ throw new Error('Required parameter group was null or undefined when calling listClusterCustomObject.');
+ }
+ // verify required parameter 'version' is not null or undefined
+ if (version === null || version === undefined) {
+ throw new Error('Required parameter version was null or undefined when calling listClusterCustomObject.');
+ }
+ // verify required parameter 'plural' is not null or undefined
+ if (plural === null || plural === undefined) {
+ throw new Error('Required parameter plural was null or undefined when calling listClusterCustomObject.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "object");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch namespace scoped custom objects
+ * @param group The custom resource\'s group name
+ * @param version The custom resource\'s version
+ * @param namespace The custom resource\'s namespace
+ * @param plural The custom resource\'s plural name. For TPRs this would be lowercase plural kind.
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications.
+ */
+ listNamespacedCustomObject(group, version, namespace, plural, pretty, fieldSelector, labelSelector, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/{group}/{version}/namespaces/{namespace}/{plural}'
+ .replace('{' + 'group' + '}', encodeURIComponent(String(group)))
+ .replace('{' + 'version' + '}', encodeURIComponent(String(version)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)))
+ .replace('{' + 'plural' + '}', encodeURIComponent(String(plural)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'group' is not null or undefined
+ if (group === null || group === undefined) {
+ throw new Error('Required parameter group was null or undefined when calling listNamespacedCustomObject.');
+ }
+ // verify required parameter 'version' is not null or undefined
+ if (version === null || version === undefined) {
+ throw new Error('Required parameter version was null or undefined when calling listNamespacedCustomObject.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling listNamespacedCustomObject.');
+ }
+ // verify required parameter 'plural' is not null or undefined
+ if (plural === null || plural === undefined) {
+ throw new Error('Required parameter plural was null or undefined when calling listNamespacedCustomObject.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "object");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * patch the specified cluster scoped custom object
+ * @param group the custom resource\'s group
+ * @param version the custom resource\'s version
+ * @param plural the custom object\'s plural name. For TPRs this would be lowercase plural kind.
+ * @param name the custom object\'s name
+ * @param body The JSON schema of the Resource to patch.
+ */
+ patchClusterCustomObject(group, version, plural, name, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/{group}/{version}/{plural}/{name}'
+ .replace('{' + 'group' + '}', encodeURIComponent(String(group)))
+ .replace('{' + 'version' + '}', encodeURIComponent(String(version)))
+ .replace('{' + 'plural' + '}', encodeURIComponent(String(plural)))
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'group' is not null or undefined
+ if (group === null || group === undefined) {
+ throw new Error('Required parameter group was null or undefined when calling patchClusterCustomObject.');
+ }
+ // verify required parameter 'version' is not null or undefined
+ if (version === null || version === undefined) {
+ throw new Error('Required parameter version was null or undefined when calling patchClusterCustomObject.');
+ }
+ // verify required parameter 'plural' is not null or undefined
+ if (plural === null || plural === undefined) {
+ throw new Error('Required parameter plural was null or undefined when calling patchClusterCustomObject.');
+ }
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchClusterCustomObject.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchClusterCustomObject.');
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "object");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update scale of the specified cluster scoped custom object
+ * @param group the custom resource\'s group
+ * @param version the custom resource\'s version
+ * @param plural the custom resource\'s plural name. For TPRs this would be lowercase plural kind.
+ * @param name the custom object\'s name
+ * @param body
+ */
+ patchClusterCustomObjectScale(group, version, plural, name, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/{group}/{version}/{plural}/{name}/scale'
+ .replace('{' + 'group' + '}', encodeURIComponent(String(group)))
+ .replace('{' + 'version' + '}', encodeURIComponent(String(version)))
+ .replace('{' + 'plural' + '}', encodeURIComponent(String(plural)))
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'group' is not null or undefined
+ if (group === null || group === undefined) {
+ throw new Error('Required parameter group was null or undefined when calling patchClusterCustomObjectScale.');
+ }
+ // verify required parameter 'version' is not null or undefined
+ if (version === null || version === undefined) {
+ throw new Error('Required parameter version was null or undefined when calling patchClusterCustomObjectScale.');
+ }
+ // verify required parameter 'plural' is not null or undefined
+ if (plural === null || plural === undefined) {
+ throw new Error('Required parameter plural was null or undefined when calling patchClusterCustomObjectScale.');
+ }
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchClusterCustomObjectScale.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchClusterCustomObjectScale.');
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "object");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update status of the specified cluster scoped custom object
+ * @param group the custom resource\'s group
+ * @param version the custom resource\'s version
+ * @param plural the custom resource\'s plural name. For TPRs this would be lowercase plural kind.
+ * @param name the custom object\'s name
+ * @param body
+ */
+ patchClusterCustomObjectStatus(group, version, plural, name, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/{group}/{version}/{plural}/{name}/status'
+ .replace('{' + 'group' + '}', encodeURIComponent(String(group)))
+ .replace('{' + 'version' + '}', encodeURIComponent(String(version)))
+ .replace('{' + 'plural' + '}', encodeURIComponent(String(plural)))
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'group' is not null or undefined
+ if (group === null || group === undefined) {
+ throw new Error('Required parameter group was null or undefined when calling patchClusterCustomObjectStatus.');
+ }
+ // verify required parameter 'version' is not null or undefined
+ if (version === null || version === undefined) {
+ throw new Error('Required parameter version was null or undefined when calling patchClusterCustomObjectStatus.');
+ }
+ // verify required parameter 'plural' is not null or undefined
+ if (plural === null || plural === undefined) {
+ throw new Error('Required parameter plural was null or undefined when calling patchClusterCustomObjectStatus.');
+ }
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchClusterCustomObjectStatus.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchClusterCustomObjectStatus.');
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "object");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * patch the specified namespace scoped custom object
+ * @param group the custom resource\'s group
+ * @param version the custom resource\'s version
+ * @param namespace The custom resource\'s namespace
+ * @param plural the custom resource\'s plural name. For TPRs this would be lowercase plural kind.
+ * @param name the custom object\'s name
+ * @param body The JSON schema of the Resource to patch.
+ */
+ patchNamespacedCustomObject(group, version, namespace, plural, name, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/{group}/{version}/namespaces/{namespace}/{plural}/{name}'
+ .replace('{' + 'group' + '}', encodeURIComponent(String(group)))
+ .replace('{' + 'version' + '}', encodeURIComponent(String(version)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)))
+ .replace('{' + 'plural' + '}', encodeURIComponent(String(plural)))
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'group' is not null or undefined
+ if (group === null || group === undefined) {
+ throw new Error('Required parameter group was null or undefined when calling patchNamespacedCustomObject.');
+ }
+ // verify required parameter 'version' is not null or undefined
+ if (version === null || version === undefined) {
+ throw new Error('Required parameter version was null or undefined when calling patchNamespacedCustomObject.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling patchNamespacedCustomObject.');
+ }
+ // verify required parameter 'plural' is not null or undefined
+ if (plural === null || plural === undefined) {
+ throw new Error('Required parameter plural was null or undefined when calling patchNamespacedCustomObject.');
+ }
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchNamespacedCustomObject.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchNamespacedCustomObject.');
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "object");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update scale of the specified namespace scoped custom object
+ * @param group the custom resource\'s group
+ * @param version the custom resource\'s version
+ * @param namespace The custom resource\'s namespace
+ * @param plural the custom resource\'s plural name. For TPRs this would be lowercase plural kind.
+ * @param name the custom object\'s name
+ * @param body
+ */
+ patchNamespacedCustomObjectScale(group, version, namespace, plural, name, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/{group}/{version}/namespaces/{namespace}/{plural}/{name}/scale'
+ .replace('{' + 'group' + '}', encodeURIComponent(String(group)))
+ .replace('{' + 'version' + '}', encodeURIComponent(String(version)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)))
+ .replace('{' + 'plural' + '}', encodeURIComponent(String(plural)))
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'group' is not null or undefined
+ if (group === null || group === undefined) {
+ throw new Error('Required parameter group was null or undefined when calling patchNamespacedCustomObjectScale.');
+ }
+ // verify required parameter 'version' is not null or undefined
+ if (version === null || version === undefined) {
+ throw new Error('Required parameter version was null or undefined when calling patchNamespacedCustomObjectScale.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling patchNamespacedCustomObjectScale.');
+ }
+ // verify required parameter 'plural' is not null or undefined
+ if (plural === null || plural === undefined) {
+ throw new Error('Required parameter plural was null or undefined when calling patchNamespacedCustomObjectScale.');
+ }
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchNamespacedCustomObjectScale.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchNamespacedCustomObjectScale.');
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "object");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update status of the specified namespace scoped custom object
+ * @param group the custom resource\'s group
+ * @param version the custom resource\'s version
+ * @param namespace The custom resource\'s namespace
+ * @param plural the custom resource\'s plural name. For TPRs this would be lowercase plural kind.
+ * @param name the custom object\'s name
+ * @param body
+ */
+ patchNamespacedCustomObjectStatus(group, version, namespace, plural, name, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/{group}/{version}/namespaces/{namespace}/{plural}/{name}/status'
+ .replace('{' + 'group' + '}', encodeURIComponent(String(group)))
+ .replace('{' + 'version' + '}', encodeURIComponent(String(version)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)))
+ .replace('{' + 'plural' + '}', encodeURIComponent(String(plural)))
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'group' is not null or undefined
+ if (group === null || group === undefined) {
+ throw new Error('Required parameter group was null or undefined when calling patchNamespacedCustomObjectStatus.');
+ }
+ // verify required parameter 'version' is not null or undefined
+ if (version === null || version === undefined) {
+ throw new Error('Required parameter version was null or undefined when calling patchNamespacedCustomObjectStatus.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling patchNamespacedCustomObjectStatus.');
+ }
+ // verify required parameter 'plural' is not null or undefined
+ if (plural === null || plural === undefined) {
+ throw new Error('Required parameter plural was null or undefined when calling patchNamespacedCustomObjectStatus.');
+ }
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchNamespacedCustomObjectStatus.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchNamespacedCustomObjectStatus.');
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "object");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace the specified cluster scoped custom object
+ * @param group the custom resource\'s group
+ * @param version the custom resource\'s version
+ * @param plural the custom object\'s plural name. For TPRs this would be lowercase plural kind.
+ * @param name the custom object\'s name
+ * @param body The JSON schema of the Resource to replace.
+ */
+ replaceClusterCustomObject(group, version, plural, name, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/{group}/{version}/{plural}/{name}'
+ .replace('{' + 'group' + '}', encodeURIComponent(String(group)))
+ .replace('{' + 'version' + '}', encodeURIComponent(String(version)))
+ .replace('{' + 'plural' + '}', encodeURIComponent(String(plural)))
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'group' is not null or undefined
+ if (group === null || group === undefined) {
+ throw new Error('Required parameter group was null or undefined when calling replaceClusterCustomObject.');
+ }
+ // verify required parameter 'version' is not null or undefined
+ if (version === null || version === undefined) {
+ throw new Error('Required parameter version was null or undefined when calling replaceClusterCustomObject.');
+ }
+ // verify required parameter 'plural' is not null or undefined
+ if (plural === null || plural === undefined) {
+ throw new Error('Required parameter plural was null or undefined when calling replaceClusterCustomObject.');
+ }
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceClusterCustomObject.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceClusterCustomObject.');
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "object");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace scale of the specified cluster scoped custom object
+ * @param group the custom resource\'s group
+ * @param version the custom resource\'s version
+ * @param plural the custom resource\'s plural name. For TPRs this would be lowercase plural kind.
+ * @param name the custom object\'s name
+ * @param body
+ */
+ replaceClusterCustomObjectScale(group, version, plural, name, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/{group}/{version}/{plural}/{name}/scale'
+ .replace('{' + 'group' + '}', encodeURIComponent(String(group)))
+ .replace('{' + 'version' + '}', encodeURIComponent(String(version)))
+ .replace('{' + 'plural' + '}', encodeURIComponent(String(plural)))
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'group' is not null or undefined
+ if (group === null || group === undefined) {
+ throw new Error('Required parameter group was null or undefined when calling replaceClusterCustomObjectScale.');
+ }
+ // verify required parameter 'version' is not null or undefined
+ if (version === null || version === undefined) {
+ throw new Error('Required parameter version was null or undefined when calling replaceClusterCustomObjectScale.');
+ }
+ // verify required parameter 'plural' is not null or undefined
+ if (plural === null || plural === undefined) {
+ throw new Error('Required parameter plural was null or undefined when calling replaceClusterCustomObjectScale.');
+ }
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceClusterCustomObjectScale.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceClusterCustomObjectScale.');
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "object");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace status of the cluster scoped specified custom object
+ * @param group the custom resource\'s group
+ * @param version the custom resource\'s version
+ * @param plural the custom resource\'s plural name. For TPRs this would be lowercase plural kind.
+ * @param name the custom object\'s name
+ * @param body
+ */
+ replaceClusterCustomObjectStatus(group, version, plural, name, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/{group}/{version}/{plural}/{name}/status'
+ .replace('{' + 'group' + '}', encodeURIComponent(String(group)))
+ .replace('{' + 'version' + '}', encodeURIComponent(String(version)))
+ .replace('{' + 'plural' + '}', encodeURIComponent(String(plural)))
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'group' is not null or undefined
+ if (group === null || group === undefined) {
+ throw new Error('Required parameter group was null or undefined when calling replaceClusterCustomObjectStatus.');
+ }
+ // verify required parameter 'version' is not null or undefined
+ if (version === null || version === undefined) {
+ throw new Error('Required parameter version was null or undefined when calling replaceClusterCustomObjectStatus.');
+ }
+ // verify required parameter 'plural' is not null or undefined
+ if (plural === null || plural === undefined) {
+ throw new Error('Required parameter plural was null or undefined when calling replaceClusterCustomObjectStatus.');
+ }
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceClusterCustomObjectStatus.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceClusterCustomObjectStatus.');
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "object");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace the specified namespace scoped custom object
+ * @param group the custom resource\'s group
+ * @param version the custom resource\'s version
+ * @param namespace The custom resource\'s namespace
+ * @param plural the custom resource\'s plural name. For TPRs this would be lowercase plural kind.
+ * @param name the custom object\'s name
+ * @param body The JSON schema of the Resource to replace.
+ */
+ replaceNamespacedCustomObject(group, version, namespace, plural, name, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/{group}/{version}/namespaces/{namespace}/{plural}/{name}'
+ .replace('{' + 'group' + '}', encodeURIComponent(String(group)))
+ .replace('{' + 'version' + '}', encodeURIComponent(String(version)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)))
+ .replace('{' + 'plural' + '}', encodeURIComponent(String(plural)))
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'group' is not null or undefined
+ if (group === null || group === undefined) {
+ throw new Error('Required parameter group was null or undefined when calling replaceNamespacedCustomObject.');
+ }
+ // verify required parameter 'version' is not null or undefined
+ if (version === null || version === undefined) {
+ throw new Error('Required parameter version was null or undefined when calling replaceNamespacedCustomObject.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling replaceNamespacedCustomObject.');
+ }
+ // verify required parameter 'plural' is not null or undefined
+ if (plural === null || plural === undefined) {
+ throw new Error('Required parameter plural was null or undefined when calling replaceNamespacedCustomObject.');
+ }
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceNamespacedCustomObject.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceNamespacedCustomObject.');
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "object");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace scale of the specified namespace scoped custom object
+ * @param group the custom resource\'s group
+ * @param version the custom resource\'s version
+ * @param namespace The custom resource\'s namespace
+ * @param plural the custom resource\'s plural name. For TPRs this would be lowercase plural kind.
+ * @param name the custom object\'s name
+ * @param body
+ */
+ replaceNamespacedCustomObjectScale(group, version, namespace, plural, name, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/{group}/{version}/namespaces/{namespace}/{plural}/{name}/scale'
+ .replace('{' + 'group' + '}', encodeURIComponent(String(group)))
+ .replace('{' + 'version' + '}', encodeURIComponent(String(version)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)))
+ .replace('{' + 'plural' + '}', encodeURIComponent(String(plural)))
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'group' is not null or undefined
+ if (group === null || group === undefined) {
+ throw new Error('Required parameter group was null or undefined when calling replaceNamespacedCustomObjectScale.');
+ }
+ // verify required parameter 'version' is not null or undefined
+ if (version === null || version === undefined) {
+ throw new Error('Required parameter version was null or undefined when calling replaceNamespacedCustomObjectScale.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling replaceNamespacedCustomObjectScale.');
+ }
+ // verify required parameter 'plural' is not null or undefined
+ if (plural === null || plural === undefined) {
+ throw new Error('Required parameter plural was null or undefined when calling replaceNamespacedCustomObjectScale.');
+ }
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceNamespacedCustomObjectScale.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceNamespacedCustomObjectScale.');
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "object");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace status of the specified namespace scoped custom object
+ * @param group the custom resource\'s group
+ * @param version the custom resource\'s version
+ * @param namespace The custom resource\'s namespace
+ * @param plural the custom resource\'s plural name. For TPRs this would be lowercase plural kind.
+ * @param name the custom object\'s name
+ * @param body
+ */
+ replaceNamespacedCustomObjectStatus(group, version, namespace, plural, name, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/{group}/{version}/namespaces/{namespace}/{plural}/{name}/status'
+ .replace('{' + 'group' + '}', encodeURIComponent(String(group)))
+ .replace('{' + 'version' + '}', encodeURIComponent(String(version)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)))
+ .replace('{' + 'plural' + '}', encodeURIComponent(String(plural)))
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'group' is not null or undefined
+ if (group === null || group === undefined) {
+ throw new Error('Required parameter group was null or undefined when calling replaceNamespacedCustomObjectStatus.');
+ }
+ // verify required parameter 'version' is not null or undefined
+ if (version === null || version === undefined) {
+ throw new Error('Required parameter version was null or undefined when calling replaceNamespacedCustomObjectStatus.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling replaceNamespacedCustomObjectStatus.');
+ }
+ // verify required parameter 'plural' is not null or undefined
+ if (plural === null || plural === undefined) {
+ throw new Error('Required parameter plural was null or undefined when calling replaceNamespacedCustomObjectStatus.');
+ }
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceNamespacedCustomObjectStatus.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceNamespacedCustomObjectStatus.');
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "object");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+}
+exports.CustomObjectsApi = CustomObjectsApi;
+//# sourceMappingURL=customObjectsApi.js.map
\ No newline at end of file
diff --git a/dist/gen/api/customObjectsApi.js.map b/dist/gen/api/customObjectsApi.js.map
new file mode 100644
index 0000000000..6d953c16ce
--- /dev/null
+++ b/dist/gen/api/customObjectsApi.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"customObjectsApi.js","sourceRoot":"","sources":["../../../src/gen/api/customObjectsApi.ts"],"names":[],"mappings":"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"}
\ No newline at end of file
diff --git a/dist/gen/api/eventsApi.d.ts b/dist/gen/api/eventsApi.d.ts
new file mode 100644
index 0000000000..82c0ef551e
--- /dev/null
+++ b/dist/gen/api/eventsApi.d.ts
@@ -0,0 +1,44 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+///
+import http = require('http');
+import { V1APIGroup } from '../model/v1APIGroup';
+import { Authentication } from '../model/models';
+import { ApiKeyAuth } from '../model/models';
+export declare enum EventsApiApiKeys {
+ BearerToken = 0
+}
+export declare class EventsApi {
+ protected _basePath: string;
+ protected defaultHeaders: any;
+ protected _useQuerystring: boolean;
+ protected authentications: {
+ 'default': Authentication;
+ 'BearerToken': ApiKeyAuth;
+ };
+ constructor(basePath?: string);
+ useQuerystring: boolean;
+ basePath: string;
+ setDefaultAuthentication(auth: Authentication): void;
+ setApiKey(key: EventsApiApiKeys, value: string): void;
+ /**
+ * get information of a group
+ */
+ getAPIGroup(options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1APIGroup;
+ }>;
+}
diff --git a/dist/gen/api/eventsApi.js b/dist/gen/api/eventsApi.js
new file mode 100644
index 0000000000..acba2d821a
--- /dev/null
+++ b/dist/gen/api/eventsApi.js
@@ -0,0 +1,113 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+const tslib_1 = require("tslib");
+const localVarRequest = require("request");
+const models_1 = require("../model/models");
+const models_2 = require("../model/models");
+let defaultBasePath = 'http://localhost/';
+// ===============================================
+// This file is autogenerated - Please do not edit
+// ===============================================
+var EventsApiApiKeys;
+(function (EventsApiApiKeys) {
+ EventsApiApiKeys[EventsApiApiKeys["BearerToken"] = 0] = "BearerToken";
+})(EventsApiApiKeys = exports.EventsApiApiKeys || (exports.EventsApiApiKeys = {}));
+class EventsApi {
+ constructor(basePathOrUsername, password, basePath) {
+ this._basePath = defaultBasePath;
+ this.defaultHeaders = {};
+ this._useQuerystring = false;
+ this.authentications = {
+ 'default': new models_1.VoidAuth(),
+ 'BearerToken': new models_2.ApiKeyAuth('header', 'authorization'),
+ };
+ if (password) {
+ if (basePath) {
+ this.basePath = basePath;
+ }
+ }
+ else {
+ if (basePathOrUsername) {
+ this.basePath = basePathOrUsername;
+ }
+ }
+ }
+ set useQuerystring(value) {
+ this._useQuerystring = value;
+ }
+ set basePath(basePath) {
+ this._basePath = basePath;
+ }
+ get basePath() {
+ return this._basePath;
+ }
+ setDefaultAuthentication(auth) {
+ this.authentications.default = auth;
+ }
+ setApiKey(key, value) {
+ this.authentications[EventsApiApiKeys[key]].apiKey = value;
+ }
+ /**
+ * get information of a group
+ */
+ getAPIGroup(options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/events.k8s.io/';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1APIGroup");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+}
+exports.EventsApi = EventsApi;
+//# sourceMappingURL=eventsApi.js.map
\ No newline at end of file
diff --git a/dist/gen/api/eventsApi.js.map b/dist/gen/api/eventsApi.js.map
new file mode 100644
index 0000000000..70b35e0d03
--- /dev/null
+++ b/dist/gen/api/eventsApi.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"eventsApi.js","sourceRoot":"","sources":["../../../src/gen/api/eventsApi.ts"],"names":[],"mappings":"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"}
\ No newline at end of file
diff --git a/dist/gen/api/eventsV1beta1Api.d.ts b/dist/gen/api/eventsV1beta1Api.d.ts
new file mode 100644
index 0000000000..f8c409cb94
--- /dev/null
+++ b/dist/gen/api/eventsV1beta1Api.d.ts
@@ -0,0 +1,201 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+///
+import http = require('http');
+import { V1APIResourceList } from '../model/v1APIResourceList';
+import { V1DeleteOptions } from '../model/v1DeleteOptions';
+import { V1Status } from '../model/v1Status';
+import { V1beta1Event } from '../model/v1beta1Event';
+import { V1beta1EventList } from '../model/v1beta1EventList';
+import { Authentication } from '../model/models';
+import { ApiKeyAuth } from '../model/models';
+export declare enum EventsV1beta1ApiApiKeys {
+ BearerToken = 0
+}
+export declare class EventsV1beta1Api {
+ protected _basePath: string;
+ protected defaultHeaders: any;
+ protected _useQuerystring: boolean;
+ protected authentications: {
+ 'default': Authentication;
+ 'BearerToken': ApiKeyAuth;
+ };
+ constructor(basePath?: string);
+ useQuerystring: boolean;
+ basePath: string;
+ setDefaultAuthentication(auth: Authentication): void;
+ setApiKey(key: EventsV1beta1ApiApiKeys, value: string): void;
+ /**
+ * create an Event
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createNamespacedEvent(namespace: string, body: V1beta1Event, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1Event;
+ }>;
+ /**
+ * delete collection of Event
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionNamespacedEvent(namespace: string, pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, dryRun?: string, fieldSelector?: string, gracePeriodSeconds?: number, labelSelector?: string, limit?: number, orphanDependents?: boolean, propagationPolicy?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete an Event
+ * @param name name of the Event
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteNamespacedEvent(name: string, namespace: string, pretty?: string, dryRun?: string, gracePeriodSeconds?: number, orphanDependents?: boolean, propagationPolicy?: string, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * get available resources
+ */
+ getAPIResources(options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1APIResourceList;
+ }>;
+ /**
+ * list or watch objects of kind Event
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listEventForAllNamespaces(allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, pretty?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1EventList;
+ }>;
+ /**
+ * list or watch objects of kind Event
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listNamespacedEvent(namespace: string, pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1EventList;
+ }>;
+ /**
+ * partially update the specified Event
+ * @param name name of the Event
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedEvent(name: string, namespace: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1Event;
+ }>;
+ /**
+ * read the specified Event
+ * @param name name of the Event
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readNamespacedEvent(name: string, namespace: string, pretty?: string, exact?: boolean, _export?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1Event;
+ }>;
+ /**
+ * replace the specified Event
+ * @param name name of the Event
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedEvent(name: string, namespace: string, body: V1beta1Event, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1Event;
+ }>;
+}
diff --git a/dist/gen/api/eventsV1beta1Api.js b/dist/gen/api/eventsV1beta1Api.js
new file mode 100644
index 0000000000..9786e1a8bc
--- /dev/null
+++ b/dist/gen/api/eventsV1beta1Api.js
@@ -0,0 +1,797 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+const tslib_1 = require("tslib");
+const localVarRequest = require("request");
+const models_1 = require("../model/models");
+const models_2 = require("../model/models");
+let defaultBasePath = 'http://localhost/';
+// ===============================================
+// This file is autogenerated - Please do not edit
+// ===============================================
+var EventsV1beta1ApiApiKeys;
+(function (EventsV1beta1ApiApiKeys) {
+ EventsV1beta1ApiApiKeys[EventsV1beta1ApiApiKeys["BearerToken"] = 0] = "BearerToken";
+})(EventsV1beta1ApiApiKeys = exports.EventsV1beta1ApiApiKeys || (exports.EventsV1beta1ApiApiKeys = {}));
+class EventsV1beta1Api {
+ constructor(basePathOrUsername, password, basePath) {
+ this._basePath = defaultBasePath;
+ this.defaultHeaders = {};
+ this._useQuerystring = false;
+ this.authentications = {
+ 'default': new models_1.VoidAuth(),
+ 'BearerToken': new models_2.ApiKeyAuth('header', 'authorization'),
+ };
+ if (password) {
+ if (basePath) {
+ this.basePath = basePath;
+ }
+ }
+ else {
+ if (basePathOrUsername) {
+ this.basePath = basePathOrUsername;
+ }
+ }
+ }
+ set useQuerystring(value) {
+ this._useQuerystring = value;
+ }
+ set basePath(basePath) {
+ this._basePath = basePath;
+ }
+ get basePath() {
+ return this._basePath;
+ }
+ setDefaultAuthentication(auth) {
+ this.authentications.default = auth;
+ }
+ setApiKey(key, value) {
+ this.authentications[EventsV1beta1ApiApiKeys[key]].apiKey = value;
+ }
+ /**
+ * create an Event
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createNamespacedEvent(namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/events.k8s.io/v1beta1/namespaces/{namespace}/events'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling createNamespacedEvent.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling createNamespacedEvent.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'POST',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1beta1Event")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1Event");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete collection of Event
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionNamespacedEvent(namespace, pretty, allowWatchBookmarks, _continue, dryRun, fieldSelector, gracePeriodSeconds, labelSelector, limit, orphanDependents, propagationPolicy, resourceVersion, timeoutSeconds, watch, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/events.k8s.io/v1beta1/namespaces/{namespace}/events'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling deleteCollectionNamespacedEvent.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete an Event
+ * @param name name of the Event
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteNamespacedEvent(name, namespace, pretty, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/events.k8s.io/v1beta1/namespaces/{namespace}/events/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling deleteNamespacedEvent.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling deleteNamespacedEvent.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * get available resources
+ */
+ getAPIResources(options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/events.k8s.io/v1beta1/';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1APIResourceList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind Event
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listEventForAllNamespaces(allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, pretty, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/events.k8s.io/v1beta1/events';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1EventList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind Event
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listNamespacedEvent(namespace, pretty, allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/events.k8s.io/v1beta1/namespaces/{namespace}/events'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling listNamespacedEvent.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1EventList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update the specified Event
+ * @param name name of the Event
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedEvent(name, namespace, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/events.k8s.io/v1beta1/namespaces/{namespace}/events/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchNamespacedEvent.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling patchNamespacedEvent.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchNamespacedEvent.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1Event");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read the specified Event
+ * @param name name of the Event
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readNamespacedEvent(name, namespace, pretty, exact, _export, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/events.k8s.io/v1beta1/namespaces/{namespace}/events/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readNamespacedEvent.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling readNamespacedEvent.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (exact !== undefined) {
+ localVarQueryParameters['exact'] = models_1.ObjectSerializer.serialize(exact, "boolean");
+ }
+ if (_export !== undefined) {
+ localVarQueryParameters['export'] = models_1.ObjectSerializer.serialize(_export, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1Event");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace the specified Event
+ * @param name name of the Event
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedEvent(name, namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/events.k8s.io/v1beta1/namespaces/{namespace}/events/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceNamespacedEvent.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling replaceNamespacedEvent.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceNamespacedEvent.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1beta1Event")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1Event");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+}
+exports.EventsV1beta1Api = EventsV1beta1Api;
+//# sourceMappingURL=eventsV1beta1Api.js.map
\ No newline at end of file
diff --git a/dist/gen/api/eventsV1beta1Api.js.map b/dist/gen/api/eventsV1beta1Api.js.map
new file mode 100644
index 0000000000..6ccc7f8a0a
--- /dev/null
+++ b/dist/gen/api/eventsV1beta1Api.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"eventsV1beta1Api.js","sourceRoot":"","sources":["../../../src/gen/api/eventsV1beta1Api.ts"],"names":[],"mappings":"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"}
\ No newline at end of file
diff --git a/dist/gen/api/extensionsApi.d.ts b/dist/gen/api/extensionsApi.d.ts
new file mode 100644
index 0000000000..f1267b624f
--- /dev/null
+++ b/dist/gen/api/extensionsApi.d.ts
@@ -0,0 +1,44 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+///
+import http = require('http');
+import { V1APIGroup } from '../model/v1APIGroup';
+import { Authentication } from '../model/models';
+import { ApiKeyAuth } from '../model/models';
+export declare enum ExtensionsApiApiKeys {
+ BearerToken = 0
+}
+export declare class ExtensionsApi {
+ protected _basePath: string;
+ protected defaultHeaders: any;
+ protected _useQuerystring: boolean;
+ protected authentications: {
+ 'default': Authentication;
+ 'BearerToken': ApiKeyAuth;
+ };
+ constructor(basePath?: string);
+ useQuerystring: boolean;
+ basePath: string;
+ setDefaultAuthentication(auth: Authentication): void;
+ setApiKey(key: ExtensionsApiApiKeys, value: string): void;
+ /**
+ * get information of a group
+ */
+ getAPIGroup(options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1APIGroup;
+ }>;
+}
diff --git a/dist/gen/api/extensionsApi.js b/dist/gen/api/extensionsApi.js
new file mode 100644
index 0000000000..458d6ef008
--- /dev/null
+++ b/dist/gen/api/extensionsApi.js
@@ -0,0 +1,113 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+const tslib_1 = require("tslib");
+const localVarRequest = require("request");
+const models_1 = require("../model/models");
+const models_2 = require("../model/models");
+let defaultBasePath = 'http://localhost/';
+// ===============================================
+// This file is autogenerated - Please do not edit
+// ===============================================
+var ExtensionsApiApiKeys;
+(function (ExtensionsApiApiKeys) {
+ ExtensionsApiApiKeys[ExtensionsApiApiKeys["BearerToken"] = 0] = "BearerToken";
+})(ExtensionsApiApiKeys = exports.ExtensionsApiApiKeys || (exports.ExtensionsApiApiKeys = {}));
+class ExtensionsApi {
+ constructor(basePathOrUsername, password, basePath) {
+ this._basePath = defaultBasePath;
+ this.defaultHeaders = {};
+ this._useQuerystring = false;
+ this.authentications = {
+ 'default': new models_1.VoidAuth(),
+ 'BearerToken': new models_2.ApiKeyAuth('header', 'authorization'),
+ };
+ if (password) {
+ if (basePath) {
+ this.basePath = basePath;
+ }
+ }
+ else {
+ if (basePathOrUsername) {
+ this.basePath = basePathOrUsername;
+ }
+ }
+ }
+ set useQuerystring(value) {
+ this._useQuerystring = value;
+ }
+ set basePath(basePath) {
+ this._basePath = basePath;
+ }
+ get basePath() {
+ return this._basePath;
+ }
+ setDefaultAuthentication(auth) {
+ this.authentications.default = auth;
+ }
+ setApiKey(key, value) {
+ this.authentications[ExtensionsApiApiKeys[key]].apiKey = value;
+ }
+ /**
+ * get information of a group
+ */
+ getAPIGroup(options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/extensions/';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1APIGroup");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+}
+exports.ExtensionsApi = ExtensionsApi;
+//# sourceMappingURL=extensionsApi.js.map
\ No newline at end of file
diff --git a/dist/gen/api/extensionsApi.js.map b/dist/gen/api/extensionsApi.js.map
new file mode 100644
index 0000000000..bcc5a26ffb
--- /dev/null
+++ b/dist/gen/api/extensionsApi.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"extensionsApi.js","sourceRoot":"","sources":["../../../src/gen/api/extensionsApi.ts"],"names":[],"mappings":"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"}
\ No newline at end of file
diff --git a/dist/gen/api/extensionsV1beta1Api.d.ts b/dist/gen/api/extensionsV1beta1Api.d.ts
new file mode 100644
index 0000000000..9a92e74df8
--- /dev/null
+++ b/dist/gen/api/extensionsV1beta1Api.d.ts
@@ -0,0 +1,1311 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+///
+import http = require('http');
+import { ExtensionsV1beta1Deployment } from '../model/extensionsV1beta1Deployment';
+import { ExtensionsV1beta1DeploymentList } from '../model/extensionsV1beta1DeploymentList';
+import { ExtensionsV1beta1DeploymentRollback } from '../model/extensionsV1beta1DeploymentRollback';
+import { ExtensionsV1beta1Ingress } from '../model/extensionsV1beta1Ingress';
+import { ExtensionsV1beta1IngressList } from '../model/extensionsV1beta1IngressList';
+import { ExtensionsV1beta1PodSecurityPolicy } from '../model/extensionsV1beta1PodSecurityPolicy';
+import { ExtensionsV1beta1PodSecurityPolicyList } from '../model/extensionsV1beta1PodSecurityPolicyList';
+import { ExtensionsV1beta1Scale } from '../model/extensionsV1beta1Scale';
+import { V1APIResourceList } from '../model/v1APIResourceList';
+import { V1DeleteOptions } from '../model/v1DeleteOptions';
+import { V1Status } from '../model/v1Status';
+import { V1beta1DaemonSet } from '../model/v1beta1DaemonSet';
+import { V1beta1DaemonSetList } from '../model/v1beta1DaemonSetList';
+import { V1beta1NetworkPolicy } from '../model/v1beta1NetworkPolicy';
+import { V1beta1NetworkPolicyList } from '../model/v1beta1NetworkPolicyList';
+import { V1beta1ReplicaSet } from '../model/v1beta1ReplicaSet';
+import { V1beta1ReplicaSetList } from '../model/v1beta1ReplicaSetList';
+import { Authentication } from '../model/models';
+import { ApiKeyAuth } from '../model/models';
+export declare enum ExtensionsV1beta1ApiApiKeys {
+ BearerToken = 0
+}
+export declare class ExtensionsV1beta1Api {
+ protected _basePath: string;
+ protected defaultHeaders: any;
+ protected _useQuerystring: boolean;
+ protected authentications: {
+ 'default': Authentication;
+ 'BearerToken': ApiKeyAuth;
+ };
+ constructor(basePath?: string);
+ useQuerystring: boolean;
+ basePath: string;
+ setDefaultAuthentication(auth: Authentication): void;
+ setApiKey(key: ExtensionsV1beta1ApiApiKeys, value: string): void;
+ /**
+ * create a DaemonSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createNamespacedDaemonSet(namespace: string, body: V1beta1DaemonSet, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1DaemonSet;
+ }>;
+ /**
+ * create a Deployment
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createNamespacedDeployment(namespace: string, body: ExtensionsV1beta1Deployment, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: ExtensionsV1beta1Deployment;
+ }>;
+ /**
+ * create rollback of a Deployment
+ * @param name name of the DeploymentRollback
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ createNamespacedDeploymentRollback(name: string, namespace: string, body: ExtensionsV1beta1DeploymentRollback, dryRun?: string, fieldManager?: string, pretty?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * create an Ingress
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createNamespacedIngress(namespace: string, body: ExtensionsV1beta1Ingress, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: ExtensionsV1beta1Ingress;
+ }>;
+ /**
+ * create a NetworkPolicy
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createNamespacedNetworkPolicy(namespace: string, body: V1beta1NetworkPolicy, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1NetworkPolicy;
+ }>;
+ /**
+ * create a ReplicaSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createNamespacedReplicaSet(namespace: string, body: V1beta1ReplicaSet, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1ReplicaSet;
+ }>;
+ /**
+ * create a PodSecurityPolicy
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createPodSecurityPolicy(body: ExtensionsV1beta1PodSecurityPolicy, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: ExtensionsV1beta1PodSecurityPolicy;
+ }>;
+ /**
+ * delete collection of DaemonSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionNamespacedDaemonSet(namespace: string, pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, dryRun?: string, fieldSelector?: string, gracePeriodSeconds?: number, labelSelector?: string, limit?: number, orphanDependents?: boolean, propagationPolicy?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete collection of Deployment
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionNamespacedDeployment(namespace: string, pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, dryRun?: string, fieldSelector?: string, gracePeriodSeconds?: number, labelSelector?: string, limit?: number, orphanDependents?: boolean, propagationPolicy?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete collection of Ingress
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionNamespacedIngress(namespace: string, pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, dryRun?: string, fieldSelector?: string, gracePeriodSeconds?: number, labelSelector?: string, limit?: number, orphanDependents?: boolean, propagationPolicy?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete collection of NetworkPolicy
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionNamespacedNetworkPolicy(namespace: string, pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, dryRun?: string, fieldSelector?: string, gracePeriodSeconds?: number, labelSelector?: string, limit?: number, orphanDependents?: boolean, propagationPolicy?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete collection of ReplicaSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionNamespacedReplicaSet(namespace: string, pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, dryRun?: string, fieldSelector?: string, gracePeriodSeconds?: number, labelSelector?: string, limit?: number, orphanDependents?: boolean, propagationPolicy?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete collection of PodSecurityPolicy
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionPodSecurityPolicy(pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, dryRun?: string, fieldSelector?: string, gracePeriodSeconds?: number, labelSelector?: string, limit?: number, orphanDependents?: boolean, propagationPolicy?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete a DaemonSet
+ * @param name name of the DaemonSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteNamespacedDaemonSet(name: string, namespace: string, pretty?: string, dryRun?: string, gracePeriodSeconds?: number, orphanDependents?: boolean, propagationPolicy?: string, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete a Deployment
+ * @param name name of the Deployment
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteNamespacedDeployment(name: string, namespace: string, pretty?: string, dryRun?: string, gracePeriodSeconds?: number, orphanDependents?: boolean, propagationPolicy?: string, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete an Ingress
+ * @param name name of the Ingress
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteNamespacedIngress(name: string, namespace: string, pretty?: string, dryRun?: string, gracePeriodSeconds?: number, orphanDependents?: boolean, propagationPolicy?: string, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete a NetworkPolicy
+ * @param name name of the NetworkPolicy
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteNamespacedNetworkPolicy(name: string, namespace: string, pretty?: string, dryRun?: string, gracePeriodSeconds?: number, orphanDependents?: boolean, propagationPolicy?: string, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete a ReplicaSet
+ * @param name name of the ReplicaSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteNamespacedReplicaSet(name: string, namespace: string, pretty?: string, dryRun?: string, gracePeriodSeconds?: number, orphanDependents?: boolean, propagationPolicy?: string, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete a PodSecurityPolicy
+ * @param name name of the PodSecurityPolicy
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deletePodSecurityPolicy(name: string, pretty?: string, dryRun?: string, gracePeriodSeconds?: number, orphanDependents?: boolean, propagationPolicy?: string, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * get available resources
+ */
+ getAPIResources(options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1APIResourceList;
+ }>;
+ /**
+ * list or watch objects of kind DaemonSet
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listDaemonSetForAllNamespaces(allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, pretty?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1DaemonSetList;
+ }>;
+ /**
+ * list or watch objects of kind Deployment
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listDeploymentForAllNamespaces(allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, pretty?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: ExtensionsV1beta1DeploymentList;
+ }>;
+ /**
+ * list or watch objects of kind Ingress
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listIngressForAllNamespaces(allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, pretty?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: ExtensionsV1beta1IngressList;
+ }>;
+ /**
+ * list or watch objects of kind DaemonSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listNamespacedDaemonSet(namespace: string, pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1DaemonSetList;
+ }>;
+ /**
+ * list or watch objects of kind Deployment
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listNamespacedDeployment(namespace: string, pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: ExtensionsV1beta1DeploymentList;
+ }>;
+ /**
+ * list or watch objects of kind Ingress
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listNamespacedIngress(namespace: string, pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: ExtensionsV1beta1IngressList;
+ }>;
+ /**
+ * list or watch objects of kind NetworkPolicy
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listNamespacedNetworkPolicy(namespace: string, pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1NetworkPolicyList;
+ }>;
+ /**
+ * list or watch objects of kind ReplicaSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listNamespacedReplicaSet(namespace: string, pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1ReplicaSetList;
+ }>;
+ /**
+ * list or watch objects of kind NetworkPolicy
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listNetworkPolicyForAllNamespaces(allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, pretty?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1NetworkPolicyList;
+ }>;
+ /**
+ * list or watch objects of kind PodSecurityPolicy
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listPodSecurityPolicy(pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: ExtensionsV1beta1PodSecurityPolicyList;
+ }>;
+ /**
+ * list or watch objects of kind ReplicaSet
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listReplicaSetForAllNamespaces(allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, pretty?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1ReplicaSetList;
+ }>;
+ /**
+ * partially update the specified DaemonSet
+ * @param name name of the DaemonSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedDaemonSet(name: string, namespace: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1DaemonSet;
+ }>;
+ /**
+ * partially update status of the specified DaemonSet
+ * @param name name of the DaemonSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedDaemonSetStatus(name: string, namespace: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1DaemonSet;
+ }>;
+ /**
+ * partially update the specified Deployment
+ * @param name name of the Deployment
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedDeployment(name: string, namespace: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: ExtensionsV1beta1Deployment;
+ }>;
+ /**
+ * partially update scale of the specified Deployment
+ * @param name name of the Scale
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedDeploymentScale(name: string, namespace: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: ExtensionsV1beta1Scale;
+ }>;
+ /**
+ * partially update status of the specified Deployment
+ * @param name name of the Deployment
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedDeploymentStatus(name: string, namespace: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: ExtensionsV1beta1Deployment;
+ }>;
+ /**
+ * partially update the specified Ingress
+ * @param name name of the Ingress
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedIngress(name: string, namespace: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: ExtensionsV1beta1Ingress;
+ }>;
+ /**
+ * partially update status of the specified Ingress
+ * @param name name of the Ingress
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedIngressStatus(name: string, namespace: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: ExtensionsV1beta1Ingress;
+ }>;
+ /**
+ * partially update the specified NetworkPolicy
+ * @param name name of the NetworkPolicy
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedNetworkPolicy(name: string, namespace: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1NetworkPolicy;
+ }>;
+ /**
+ * partially update the specified ReplicaSet
+ * @param name name of the ReplicaSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedReplicaSet(name: string, namespace: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1ReplicaSet;
+ }>;
+ /**
+ * partially update scale of the specified ReplicaSet
+ * @param name name of the Scale
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedReplicaSetScale(name: string, namespace: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: ExtensionsV1beta1Scale;
+ }>;
+ /**
+ * partially update status of the specified ReplicaSet
+ * @param name name of the ReplicaSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedReplicaSetStatus(name: string, namespace: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1ReplicaSet;
+ }>;
+ /**
+ * partially update scale of the specified ReplicationControllerDummy
+ * @param name name of the Scale
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedReplicationControllerDummyScale(name: string, namespace: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: ExtensionsV1beta1Scale;
+ }>;
+ /**
+ * partially update the specified PodSecurityPolicy
+ * @param name name of the PodSecurityPolicy
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchPodSecurityPolicy(name: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: ExtensionsV1beta1PodSecurityPolicy;
+ }>;
+ /**
+ * read the specified DaemonSet
+ * @param name name of the DaemonSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readNamespacedDaemonSet(name: string, namespace: string, pretty?: string, exact?: boolean, _export?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1DaemonSet;
+ }>;
+ /**
+ * read status of the specified DaemonSet
+ * @param name name of the DaemonSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readNamespacedDaemonSetStatus(name: string, namespace: string, pretty?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1DaemonSet;
+ }>;
+ /**
+ * read the specified Deployment
+ * @param name name of the Deployment
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readNamespacedDeployment(name: string, namespace: string, pretty?: string, exact?: boolean, _export?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: ExtensionsV1beta1Deployment;
+ }>;
+ /**
+ * read scale of the specified Deployment
+ * @param name name of the Scale
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readNamespacedDeploymentScale(name: string, namespace: string, pretty?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: ExtensionsV1beta1Scale;
+ }>;
+ /**
+ * read status of the specified Deployment
+ * @param name name of the Deployment
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readNamespacedDeploymentStatus(name: string, namespace: string, pretty?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: ExtensionsV1beta1Deployment;
+ }>;
+ /**
+ * read the specified Ingress
+ * @param name name of the Ingress
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readNamespacedIngress(name: string, namespace: string, pretty?: string, exact?: boolean, _export?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: ExtensionsV1beta1Ingress;
+ }>;
+ /**
+ * read status of the specified Ingress
+ * @param name name of the Ingress
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readNamespacedIngressStatus(name: string, namespace: string, pretty?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: ExtensionsV1beta1Ingress;
+ }>;
+ /**
+ * read the specified NetworkPolicy
+ * @param name name of the NetworkPolicy
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readNamespacedNetworkPolicy(name: string, namespace: string, pretty?: string, exact?: boolean, _export?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1NetworkPolicy;
+ }>;
+ /**
+ * read the specified ReplicaSet
+ * @param name name of the ReplicaSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readNamespacedReplicaSet(name: string, namespace: string, pretty?: string, exact?: boolean, _export?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1ReplicaSet;
+ }>;
+ /**
+ * read scale of the specified ReplicaSet
+ * @param name name of the Scale
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readNamespacedReplicaSetScale(name: string, namespace: string, pretty?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: ExtensionsV1beta1Scale;
+ }>;
+ /**
+ * read status of the specified ReplicaSet
+ * @param name name of the ReplicaSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readNamespacedReplicaSetStatus(name: string, namespace: string, pretty?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1ReplicaSet;
+ }>;
+ /**
+ * read scale of the specified ReplicationControllerDummy
+ * @param name name of the Scale
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readNamespacedReplicationControllerDummyScale(name: string, namespace: string, pretty?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: ExtensionsV1beta1Scale;
+ }>;
+ /**
+ * read the specified PodSecurityPolicy
+ * @param name name of the PodSecurityPolicy
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readPodSecurityPolicy(name: string, pretty?: string, exact?: boolean, _export?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: ExtensionsV1beta1PodSecurityPolicy;
+ }>;
+ /**
+ * replace the specified DaemonSet
+ * @param name name of the DaemonSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedDaemonSet(name: string, namespace: string, body: V1beta1DaemonSet, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1DaemonSet;
+ }>;
+ /**
+ * replace status of the specified DaemonSet
+ * @param name name of the DaemonSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedDaemonSetStatus(name: string, namespace: string, body: V1beta1DaemonSet, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1DaemonSet;
+ }>;
+ /**
+ * replace the specified Deployment
+ * @param name name of the Deployment
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedDeployment(name: string, namespace: string, body: ExtensionsV1beta1Deployment, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: ExtensionsV1beta1Deployment;
+ }>;
+ /**
+ * replace scale of the specified Deployment
+ * @param name name of the Scale
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedDeploymentScale(name: string, namespace: string, body: ExtensionsV1beta1Scale, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: ExtensionsV1beta1Scale;
+ }>;
+ /**
+ * replace status of the specified Deployment
+ * @param name name of the Deployment
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedDeploymentStatus(name: string, namespace: string, body: ExtensionsV1beta1Deployment, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: ExtensionsV1beta1Deployment;
+ }>;
+ /**
+ * replace the specified Ingress
+ * @param name name of the Ingress
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedIngress(name: string, namespace: string, body: ExtensionsV1beta1Ingress, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: ExtensionsV1beta1Ingress;
+ }>;
+ /**
+ * replace status of the specified Ingress
+ * @param name name of the Ingress
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedIngressStatus(name: string, namespace: string, body: ExtensionsV1beta1Ingress, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: ExtensionsV1beta1Ingress;
+ }>;
+ /**
+ * replace the specified NetworkPolicy
+ * @param name name of the NetworkPolicy
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedNetworkPolicy(name: string, namespace: string, body: V1beta1NetworkPolicy, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1NetworkPolicy;
+ }>;
+ /**
+ * replace the specified ReplicaSet
+ * @param name name of the ReplicaSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedReplicaSet(name: string, namespace: string, body: V1beta1ReplicaSet, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1ReplicaSet;
+ }>;
+ /**
+ * replace scale of the specified ReplicaSet
+ * @param name name of the Scale
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedReplicaSetScale(name: string, namespace: string, body: ExtensionsV1beta1Scale, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: ExtensionsV1beta1Scale;
+ }>;
+ /**
+ * replace status of the specified ReplicaSet
+ * @param name name of the ReplicaSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedReplicaSetStatus(name: string, namespace: string, body: V1beta1ReplicaSet, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1ReplicaSet;
+ }>;
+ /**
+ * replace scale of the specified ReplicationControllerDummy
+ * @param name name of the Scale
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedReplicationControllerDummyScale(name: string, namespace: string, body: ExtensionsV1beta1Scale, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: ExtensionsV1beta1Scale;
+ }>;
+ /**
+ * replace the specified PodSecurityPolicy
+ * @param name name of the PodSecurityPolicy
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replacePodSecurityPolicy(name: string, body: ExtensionsV1beta1PodSecurityPolicy, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: ExtensionsV1beta1PodSecurityPolicy;
+ }>;
+}
diff --git a/dist/gen/api/extensionsV1beta1Api.js b/dist/gen/api/extensionsV1beta1Api.js
new file mode 100644
index 0000000000..f0e4299be8
--- /dev/null
+++ b/dist/gen/api/extensionsV1beta1Api.js
@@ -0,0 +1,5779 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+const tslib_1 = require("tslib");
+const localVarRequest = require("request");
+const models_1 = require("../model/models");
+const models_2 = require("../model/models");
+let defaultBasePath = 'http://localhost/';
+// ===============================================
+// This file is autogenerated - Please do not edit
+// ===============================================
+var ExtensionsV1beta1ApiApiKeys;
+(function (ExtensionsV1beta1ApiApiKeys) {
+ ExtensionsV1beta1ApiApiKeys[ExtensionsV1beta1ApiApiKeys["BearerToken"] = 0] = "BearerToken";
+})(ExtensionsV1beta1ApiApiKeys = exports.ExtensionsV1beta1ApiApiKeys || (exports.ExtensionsV1beta1ApiApiKeys = {}));
+class ExtensionsV1beta1Api {
+ constructor(basePathOrUsername, password, basePath) {
+ this._basePath = defaultBasePath;
+ this.defaultHeaders = {};
+ this._useQuerystring = false;
+ this.authentications = {
+ 'default': new models_1.VoidAuth(),
+ 'BearerToken': new models_2.ApiKeyAuth('header', 'authorization'),
+ };
+ if (password) {
+ if (basePath) {
+ this.basePath = basePath;
+ }
+ }
+ else {
+ if (basePathOrUsername) {
+ this.basePath = basePathOrUsername;
+ }
+ }
+ }
+ set useQuerystring(value) {
+ this._useQuerystring = value;
+ }
+ set basePath(basePath) {
+ this._basePath = basePath;
+ }
+ get basePath() {
+ return this._basePath;
+ }
+ setDefaultAuthentication(auth) {
+ this.authentications.default = auth;
+ }
+ setApiKey(key, value) {
+ this.authentications[ExtensionsV1beta1ApiApiKeys[key]].apiKey = value;
+ }
+ /**
+ * create a DaemonSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createNamespacedDaemonSet(namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/extensions/v1beta1/namespaces/{namespace}/daemonsets'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling createNamespacedDaemonSet.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling createNamespacedDaemonSet.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'POST',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1beta1DaemonSet")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1DaemonSet");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * create a Deployment
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createNamespacedDeployment(namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/extensions/v1beta1/namespaces/{namespace}/deployments'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling createNamespacedDeployment.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling createNamespacedDeployment.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'POST',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "ExtensionsV1beta1Deployment")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "ExtensionsV1beta1Deployment");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * create rollback of a Deployment
+ * @param name name of the DeploymentRollback
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ createNamespacedDeploymentRollback(name, namespace, body, dryRun, fieldManager, pretty, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}/rollback'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling createNamespacedDeploymentRollback.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling createNamespacedDeploymentRollback.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling createNamespacedDeploymentRollback.');
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'POST',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "ExtensionsV1beta1DeploymentRollback")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * create an Ingress
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createNamespacedIngress(namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/extensions/v1beta1/namespaces/{namespace}/ingresses'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling createNamespacedIngress.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling createNamespacedIngress.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'POST',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "ExtensionsV1beta1Ingress")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "ExtensionsV1beta1Ingress");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * create a NetworkPolicy
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createNamespacedNetworkPolicy(namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/extensions/v1beta1/namespaces/{namespace}/networkpolicies'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling createNamespacedNetworkPolicy.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling createNamespacedNetworkPolicy.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'POST',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1beta1NetworkPolicy")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1NetworkPolicy");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * create a ReplicaSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createNamespacedReplicaSet(namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/extensions/v1beta1/namespaces/{namespace}/replicasets'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling createNamespacedReplicaSet.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling createNamespacedReplicaSet.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'POST',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1beta1ReplicaSet")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1ReplicaSet");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * create a PodSecurityPolicy
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createPodSecurityPolicy(body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/extensions/v1beta1/podsecuritypolicies';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling createPodSecurityPolicy.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'POST',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "ExtensionsV1beta1PodSecurityPolicy")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "ExtensionsV1beta1PodSecurityPolicy");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete collection of DaemonSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionNamespacedDaemonSet(namespace, pretty, allowWatchBookmarks, _continue, dryRun, fieldSelector, gracePeriodSeconds, labelSelector, limit, orphanDependents, propagationPolicy, resourceVersion, timeoutSeconds, watch, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/extensions/v1beta1/namespaces/{namespace}/daemonsets'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling deleteCollectionNamespacedDaemonSet.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete collection of Deployment
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionNamespacedDeployment(namespace, pretty, allowWatchBookmarks, _continue, dryRun, fieldSelector, gracePeriodSeconds, labelSelector, limit, orphanDependents, propagationPolicy, resourceVersion, timeoutSeconds, watch, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/extensions/v1beta1/namespaces/{namespace}/deployments'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling deleteCollectionNamespacedDeployment.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete collection of Ingress
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionNamespacedIngress(namespace, pretty, allowWatchBookmarks, _continue, dryRun, fieldSelector, gracePeriodSeconds, labelSelector, limit, orphanDependents, propagationPolicy, resourceVersion, timeoutSeconds, watch, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/extensions/v1beta1/namespaces/{namespace}/ingresses'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling deleteCollectionNamespacedIngress.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete collection of NetworkPolicy
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionNamespacedNetworkPolicy(namespace, pretty, allowWatchBookmarks, _continue, dryRun, fieldSelector, gracePeriodSeconds, labelSelector, limit, orphanDependents, propagationPolicy, resourceVersion, timeoutSeconds, watch, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/extensions/v1beta1/namespaces/{namespace}/networkpolicies'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling deleteCollectionNamespacedNetworkPolicy.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete collection of ReplicaSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionNamespacedReplicaSet(namespace, pretty, allowWatchBookmarks, _continue, dryRun, fieldSelector, gracePeriodSeconds, labelSelector, limit, orphanDependents, propagationPolicy, resourceVersion, timeoutSeconds, watch, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/extensions/v1beta1/namespaces/{namespace}/replicasets'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling deleteCollectionNamespacedReplicaSet.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete collection of PodSecurityPolicy
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionPodSecurityPolicy(pretty, allowWatchBookmarks, _continue, dryRun, fieldSelector, gracePeriodSeconds, labelSelector, limit, orphanDependents, propagationPolicy, resourceVersion, timeoutSeconds, watch, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/extensions/v1beta1/podsecuritypolicies';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete a DaemonSet
+ * @param name name of the DaemonSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteNamespacedDaemonSet(name, namespace, pretty, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/extensions/v1beta1/namespaces/{namespace}/daemonsets/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling deleteNamespacedDaemonSet.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling deleteNamespacedDaemonSet.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete a Deployment
+ * @param name name of the Deployment
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteNamespacedDeployment(name, namespace, pretty, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling deleteNamespacedDeployment.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling deleteNamespacedDeployment.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete an Ingress
+ * @param name name of the Ingress
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteNamespacedIngress(name, namespace, pretty, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/extensions/v1beta1/namespaces/{namespace}/ingresses/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling deleteNamespacedIngress.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling deleteNamespacedIngress.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete a NetworkPolicy
+ * @param name name of the NetworkPolicy
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteNamespacedNetworkPolicy(name, namespace, pretty, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/extensions/v1beta1/namespaces/{namespace}/networkpolicies/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling deleteNamespacedNetworkPolicy.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling deleteNamespacedNetworkPolicy.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete a ReplicaSet
+ * @param name name of the ReplicaSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteNamespacedReplicaSet(name, namespace, pretty, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling deleteNamespacedReplicaSet.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling deleteNamespacedReplicaSet.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete a PodSecurityPolicy
+ * @param name name of the PodSecurityPolicy
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deletePodSecurityPolicy(name, pretty, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/extensions/v1beta1/podsecuritypolicies/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling deletePodSecurityPolicy.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * get available resources
+ */
+ getAPIResources(options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/extensions/v1beta1/';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1APIResourceList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind DaemonSet
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listDaemonSetForAllNamespaces(allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, pretty, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/extensions/v1beta1/daemonsets';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1DaemonSetList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind Deployment
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listDeploymentForAllNamespaces(allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, pretty, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/extensions/v1beta1/deployments';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "ExtensionsV1beta1DeploymentList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind Ingress
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listIngressForAllNamespaces(allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, pretty, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/extensions/v1beta1/ingresses';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "ExtensionsV1beta1IngressList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind DaemonSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listNamespacedDaemonSet(namespace, pretty, allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/extensions/v1beta1/namespaces/{namespace}/daemonsets'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling listNamespacedDaemonSet.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1DaemonSetList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind Deployment
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listNamespacedDeployment(namespace, pretty, allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/extensions/v1beta1/namespaces/{namespace}/deployments'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling listNamespacedDeployment.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "ExtensionsV1beta1DeploymentList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind Ingress
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listNamespacedIngress(namespace, pretty, allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/extensions/v1beta1/namespaces/{namespace}/ingresses'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling listNamespacedIngress.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "ExtensionsV1beta1IngressList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind NetworkPolicy
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listNamespacedNetworkPolicy(namespace, pretty, allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/extensions/v1beta1/namespaces/{namespace}/networkpolicies'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling listNamespacedNetworkPolicy.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1NetworkPolicyList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind ReplicaSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listNamespacedReplicaSet(namespace, pretty, allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/extensions/v1beta1/namespaces/{namespace}/replicasets'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling listNamespacedReplicaSet.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1ReplicaSetList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind NetworkPolicy
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listNetworkPolicyForAllNamespaces(allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, pretty, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/extensions/v1beta1/networkpolicies';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1NetworkPolicyList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind PodSecurityPolicy
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listPodSecurityPolicy(pretty, allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/extensions/v1beta1/podsecuritypolicies';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "ExtensionsV1beta1PodSecurityPolicyList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind ReplicaSet
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listReplicaSetForAllNamespaces(allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, pretty, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/extensions/v1beta1/replicasets';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1ReplicaSetList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update the specified DaemonSet
+ * @param name name of the DaemonSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedDaemonSet(name, namespace, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/extensions/v1beta1/namespaces/{namespace}/daemonsets/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchNamespacedDaemonSet.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling patchNamespacedDaemonSet.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchNamespacedDaemonSet.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1DaemonSet");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update status of the specified DaemonSet
+ * @param name name of the DaemonSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedDaemonSetStatus(name, namespace, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/extensions/v1beta1/namespaces/{namespace}/daemonsets/{name}/status'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchNamespacedDaemonSetStatus.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling patchNamespacedDaemonSetStatus.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchNamespacedDaemonSetStatus.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1DaemonSet");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update the specified Deployment
+ * @param name name of the Deployment
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedDeployment(name, namespace, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchNamespacedDeployment.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling patchNamespacedDeployment.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchNamespacedDeployment.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "ExtensionsV1beta1Deployment");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update scale of the specified Deployment
+ * @param name name of the Scale
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedDeploymentScale(name, namespace, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}/scale'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchNamespacedDeploymentScale.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling patchNamespacedDeploymentScale.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchNamespacedDeploymentScale.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "ExtensionsV1beta1Scale");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update status of the specified Deployment
+ * @param name name of the Deployment
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedDeploymentStatus(name, namespace, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}/status'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchNamespacedDeploymentStatus.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling patchNamespacedDeploymentStatus.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchNamespacedDeploymentStatus.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "ExtensionsV1beta1Deployment");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update the specified Ingress
+ * @param name name of the Ingress
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedIngress(name, namespace, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/extensions/v1beta1/namespaces/{namespace}/ingresses/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchNamespacedIngress.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling patchNamespacedIngress.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchNamespacedIngress.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "ExtensionsV1beta1Ingress");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update status of the specified Ingress
+ * @param name name of the Ingress
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedIngressStatus(name, namespace, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/extensions/v1beta1/namespaces/{namespace}/ingresses/{name}/status'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchNamespacedIngressStatus.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling patchNamespacedIngressStatus.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchNamespacedIngressStatus.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "ExtensionsV1beta1Ingress");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update the specified NetworkPolicy
+ * @param name name of the NetworkPolicy
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedNetworkPolicy(name, namespace, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/extensions/v1beta1/namespaces/{namespace}/networkpolicies/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchNamespacedNetworkPolicy.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling patchNamespacedNetworkPolicy.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchNamespacedNetworkPolicy.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1NetworkPolicy");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update the specified ReplicaSet
+ * @param name name of the ReplicaSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedReplicaSet(name, namespace, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchNamespacedReplicaSet.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling patchNamespacedReplicaSet.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchNamespacedReplicaSet.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1ReplicaSet");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update scale of the specified ReplicaSet
+ * @param name name of the Scale
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedReplicaSetScale(name, namespace, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}/scale'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchNamespacedReplicaSetScale.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling patchNamespacedReplicaSetScale.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchNamespacedReplicaSetScale.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "ExtensionsV1beta1Scale");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update status of the specified ReplicaSet
+ * @param name name of the ReplicaSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedReplicaSetStatus(name, namespace, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}/status'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchNamespacedReplicaSetStatus.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling patchNamespacedReplicaSetStatus.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchNamespacedReplicaSetStatus.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1ReplicaSet");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update scale of the specified ReplicationControllerDummy
+ * @param name name of the Scale
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedReplicationControllerDummyScale(name, namespace, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/extensions/v1beta1/namespaces/{namespace}/replicationcontrollers/{name}/scale'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchNamespacedReplicationControllerDummyScale.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling patchNamespacedReplicationControllerDummyScale.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchNamespacedReplicationControllerDummyScale.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "ExtensionsV1beta1Scale");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update the specified PodSecurityPolicy
+ * @param name name of the PodSecurityPolicy
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchPodSecurityPolicy(name, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/extensions/v1beta1/podsecuritypolicies/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchPodSecurityPolicy.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchPodSecurityPolicy.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "ExtensionsV1beta1PodSecurityPolicy");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read the specified DaemonSet
+ * @param name name of the DaemonSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readNamespacedDaemonSet(name, namespace, pretty, exact, _export, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/extensions/v1beta1/namespaces/{namespace}/daemonsets/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readNamespacedDaemonSet.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling readNamespacedDaemonSet.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (exact !== undefined) {
+ localVarQueryParameters['exact'] = models_1.ObjectSerializer.serialize(exact, "boolean");
+ }
+ if (_export !== undefined) {
+ localVarQueryParameters['export'] = models_1.ObjectSerializer.serialize(_export, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1DaemonSet");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read status of the specified DaemonSet
+ * @param name name of the DaemonSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readNamespacedDaemonSetStatus(name, namespace, pretty, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/extensions/v1beta1/namespaces/{namespace}/daemonsets/{name}/status'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readNamespacedDaemonSetStatus.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling readNamespacedDaemonSetStatus.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1DaemonSet");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read the specified Deployment
+ * @param name name of the Deployment
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readNamespacedDeployment(name, namespace, pretty, exact, _export, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readNamespacedDeployment.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling readNamespacedDeployment.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (exact !== undefined) {
+ localVarQueryParameters['exact'] = models_1.ObjectSerializer.serialize(exact, "boolean");
+ }
+ if (_export !== undefined) {
+ localVarQueryParameters['export'] = models_1.ObjectSerializer.serialize(_export, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "ExtensionsV1beta1Deployment");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read scale of the specified Deployment
+ * @param name name of the Scale
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readNamespacedDeploymentScale(name, namespace, pretty, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}/scale'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readNamespacedDeploymentScale.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling readNamespacedDeploymentScale.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "ExtensionsV1beta1Scale");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read status of the specified Deployment
+ * @param name name of the Deployment
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readNamespacedDeploymentStatus(name, namespace, pretty, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}/status'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readNamespacedDeploymentStatus.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling readNamespacedDeploymentStatus.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "ExtensionsV1beta1Deployment");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read the specified Ingress
+ * @param name name of the Ingress
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readNamespacedIngress(name, namespace, pretty, exact, _export, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/extensions/v1beta1/namespaces/{namespace}/ingresses/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readNamespacedIngress.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling readNamespacedIngress.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (exact !== undefined) {
+ localVarQueryParameters['exact'] = models_1.ObjectSerializer.serialize(exact, "boolean");
+ }
+ if (_export !== undefined) {
+ localVarQueryParameters['export'] = models_1.ObjectSerializer.serialize(_export, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "ExtensionsV1beta1Ingress");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read status of the specified Ingress
+ * @param name name of the Ingress
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readNamespacedIngressStatus(name, namespace, pretty, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/extensions/v1beta1/namespaces/{namespace}/ingresses/{name}/status'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readNamespacedIngressStatus.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling readNamespacedIngressStatus.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "ExtensionsV1beta1Ingress");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read the specified NetworkPolicy
+ * @param name name of the NetworkPolicy
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readNamespacedNetworkPolicy(name, namespace, pretty, exact, _export, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/extensions/v1beta1/namespaces/{namespace}/networkpolicies/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readNamespacedNetworkPolicy.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling readNamespacedNetworkPolicy.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (exact !== undefined) {
+ localVarQueryParameters['exact'] = models_1.ObjectSerializer.serialize(exact, "boolean");
+ }
+ if (_export !== undefined) {
+ localVarQueryParameters['export'] = models_1.ObjectSerializer.serialize(_export, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1NetworkPolicy");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read the specified ReplicaSet
+ * @param name name of the ReplicaSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readNamespacedReplicaSet(name, namespace, pretty, exact, _export, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readNamespacedReplicaSet.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling readNamespacedReplicaSet.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (exact !== undefined) {
+ localVarQueryParameters['exact'] = models_1.ObjectSerializer.serialize(exact, "boolean");
+ }
+ if (_export !== undefined) {
+ localVarQueryParameters['export'] = models_1.ObjectSerializer.serialize(_export, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1ReplicaSet");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read scale of the specified ReplicaSet
+ * @param name name of the Scale
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readNamespacedReplicaSetScale(name, namespace, pretty, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}/scale'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readNamespacedReplicaSetScale.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling readNamespacedReplicaSetScale.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "ExtensionsV1beta1Scale");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read status of the specified ReplicaSet
+ * @param name name of the ReplicaSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readNamespacedReplicaSetStatus(name, namespace, pretty, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}/status'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readNamespacedReplicaSetStatus.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling readNamespacedReplicaSetStatus.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1ReplicaSet");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read scale of the specified ReplicationControllerDummy
+ * @param name name of the Scale
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readNamespacedReplicationControllerDummyScale(name, namespace, pretty, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/extensions/v1beta1/namespaces/{namespace}/replicationcontrollers/{name}/scale'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readNamespacedReplicationControllerDummyScale.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling readNamespacedReplicationControllerDummyScale.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "ExtensionsV1beta1Scale");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read the specified PodSecurityPolicy
+ * @param name name of the PodSecurityPolicy
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readPodSecurityPolicy(name, pretty, exact, _export, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/extensions/v1beta1/podsecuritypolicies/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readPodSecurityPolicy.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (exact !== undefined) {
+ localVarQueryParameters['exact'] = models_1.ObjectSerializer.serialize(exact, "boolean");
+ }
+ if (_export !== undefined) {
+ localVarQueryParameters['export'] = models_1.ObjectSerializer.serialize(_export, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "ExtensionsV1beta1PodSecurityPolicy");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace the specified DaemonSet
+ * @param name name of the DaemonSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedDaemonSet(name, namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/extensions/v1beta1/namespaces/{namespace}/daemonsets/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceNamespacedDaemonSet.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling replaceNamespacedDaemonSet.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceNamespacedDaemonSet.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1beta1DaemonSet")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1DaemonSet");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace status of the specified DaemonSet
+ * @param name name of the DaemonSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedDaemonSetStatus(name, namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/extensions/v1beta1/namespaces/{namespace}/daemonsets/{name}/status'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceNamespacedDaemonSetStatus.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling replaceNamespacedDaemonSetStatus.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceNamespacedDaemonSetStatus.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1beta1DaemonSet")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1DaemonSet");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace the specified Deployment
+ * @param name name of the Deployment
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedDeployment(name, namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceNamespacedDeployment.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling replaceNamespacedDeployment.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceNamespacedDeployment.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "ExtensionsV1beta1Deployment")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "ExtensionsV1beta1Deployment");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace scale of the specified Deployment
+ * @param name name of the Scale
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedDeploymentScale(name, namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}/scale'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceNamespacedDeploymentScale.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling replaceNamespacedDeploymentScale.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceNamespacedDeploymentScale.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "ExtensionsV1beta1Scale")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "ExtensionsV1beta1Scale");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace status of the specified Deployment
+ * @param name name of the Deployment
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedDeploymentStatus(name, namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}/status'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceNamespacedDeploymentStatus.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling replaceNamespacedDeploymentStatus.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceNamespacedDeploymentStatus.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "ExtensionsV1beta1Deployment")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "ExtensionsV1beta1Deployment");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace the specified Ingress
+ * @param name name of the Ingress
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedIngress(name, namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/extensions/v1beta1/namespaces/{namespace}/ingresses/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceNamespacedIngress.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling replaceNamespacedIngress.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceNamespacedIngress.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "ExtensionsV1beta1Ingress")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "ExtensionsV1beta1Ingress");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace status of the specified Ingress
+ * @param name name of the Ingress
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedIngressStatus(name, namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/extensions/v1beta1/namespaces/{namespace}/ingresses/{name}/status'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceNamespacedIngressStatus.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling replaceNamespacedIngressStatus.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceNamespacedIngressStatus.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "ExtensionsV1beta1Ingress")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "ExtensionsV1beta1Ingress");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace the specified NetworkPolicy
+ * @param name name of the NetworkPolicy
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedNetworkPolicy(name, namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/extensions/v1beta1/namespaces/{namespace}/networkpolicies/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceNamespacedNetworkPolicy.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling replaceNamespacedNetworkPolicy.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceNamespacedNetworkPolicy.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1beta1NetworkPolicy")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1NetworkPolicy");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace the specified ReplicaSet
+ * @param name name of the ReplicaSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedReplicaSet(name, namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceNamespacedReplicaSet.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling replaceNamespacedReplicaSet.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceNamespacedReplicaSet.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1beta1ReplicaSet")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1ReplicaSet");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace scale of the specified ReplicaSet
+ * @param name name of the Scale
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedReplicaSetScale(name, namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}/scale'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceNamespacedReplicaSetScale.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling replaceNamespacedReplicaSetScale.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceNamespacedReplicaSetScale.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "ExtensionsV1beta1Scale")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "ExtensionsV1beta1Scale");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace status of the specified ReplicaSet
+ * @param name name of the ReplicaSet
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedReplicaSetStatus(name, namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}/status'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceNamespacedReplicaSetStatus.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling replaceNamespacedReplicaSetStatus.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceNamespacedReplicaSetStatus.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1beta1ReplicaSet")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1ReplicaSet");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace scale of the specified ReplicationControllerDummy
+ * @param name name of the Scale
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedReplicationControllerDummyScale(name, namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/extensions/v1beta1/namespaces/{namespace}/replicationcontrollers/{name}/scale'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceNamespacedReplicationControllerDummyScale.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling replaceNamespacedReplicationControllerDummyScale.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceNamespacedReplicationControllerDummyScale.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "ExtensionsV1beta1Scale")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "ExtensionsV1beta1Scale");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace the specified PodSecurityPolicy
+ * @param name name of the PodSecurityPolicy
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replacePodSecurityPolicy(name, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/extensions/v1beta1/podsecuritypolicies/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replacePodSecurityPolicy.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replacePodSecurityPolicy.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "ExtensionsV1beta1PodSecurityPolicy")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "ExtensionsV1beta1PodSecurityPolicy");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+}
+exports.ExtensionsV1beta1Api = ExtensionsV1beta1Api;
+//# sourceMappingURL=extensionsV1beta1Api.js.map
\ No newline at end of file
diff --git a/dist/gen/api/extensionsV1beta1Api.js.map b/dist/gen/api/extensionsV1beta1Api.js.map
new file mode 100644
index 0000000000..12fbbe25d6
--- /dev/null
+++ b/dist/gen/api/extensionsV1beta1Api.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"extensionsV1beta1Api.js","sourceRoot":"","sources":["../../../src/gen/api/extensionsV1beta1Api.ts"],"names":[],"mappings":"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"}
\ No newline at end of file
diff --git a/dist/gen/api/logsApi.d.ts b/dist/gen/api/logsApi.d.ts
new file mode 100644
index 0000000000..bb0114bbfe
--- /dev/null
+++ b/dist/gen/api/logsApi.d.ts
@@ -0,0 +1,55 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+///
+import http = require('http');
+import { Authentication } from '../model/models';
+import { ApiKeyAuth } from '../model/models';
+export declare enum LogsApiApiKeys {
+ BearerToken = 0
+}
+export declare class LogsApi {
+ protected _basePath: string;
+ protected defaultHeaders: any;
+ protected _useQuerystring: boolean;
+ protected authentications: {
+ 'default': Authentication;
+ 'BearerToken': ApiKeyAuth;
+ };
+ constructor(basePath?: string);
+ useQuerystring: boolean;
+ basePath: string;
+ setDefaultAuthentication(auth: Authentication): void;
+ setApiKey(key: LogsApiApiKeys, value: string): void;
+ /**
+ *
+ * @param logpath path to the log
+ */
+ logFileHandler(logpath: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body?: any;
+ }>;
+ /**
+ *
+ */
+ logFileListHandler(options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body?: any;
+ }>;
+}
diff --git a/dist/gen/api/logsApi.js b/dist/gen/api/logsApi.js
new file mode 100644
index 0000000000..0b4f9510b6
--- /dev/null
+++ b/dist/gen/api/logsApi.js
@@ -0,0 +1,168 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+const tslib_1 = require("tslib");
+const localVarRequest = require("request");
+/* tslint:disable:no-unused-locals */
+const models_1 = require("../model/models");
+const models_2 = require("../model/models");
+let defaultBasePath = 'http://localhost/';
+// ===============================================
+// This file is autogenerated - Please do not edit
+// ===============================================
+var LogsApiApiKeys;
+(function (LogsApiApiKeys) {
+ LogsApiApiKeys[LogsApiApiKeys["BearerToken"] = 0] = "BearerToken";
+})(LogsApiApiKeys = exports.LogsApiApiKeys || (exports.LogsApiApiKeys = {}));
+class LogsApi {
+ constructor(basePathOrUsername, password, basePath) {
+ this._basePath = defaultBasePath;
+ this.defaultHeaders = {};
+ this._useQuerystring = false;
+ this.authentications = {
+ 'default': new models_1.VoidAuth(),
+ 'BearerToken': new models_2.ApiKeyAuth('header', 'authorization'),
+ };
+ if (password) {
+ if (basePath) {
+ this.basePath = basePath;
+ }
+ }
+ else {
+ if (basePathOrUsername) {
+ this.basePath = basePathOrUsername;
+ }
+ }
+ }
+ set useQuerystring(value) {
+ this._useQuerystring = value;
+ }
+ set basePath(basePath) {
+ this._basePath = basePath;
+ }
+ get basePath() {
+ return this._basePath;
+ }
+ setDefaultAuthentication(auth) {
+ this.authentications.default = auth;
+ }
+ setApiKey(key, value) {
+ this.authentications[LogsApiApiKeys[key]].apiKey = value;
+ }
+ /**
+ *
+ * @param logpath path to the log
+ */
+ logFileHandler(logpath, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/logs/{logpath}'
+ .replace('{' + 'logpath' + '}', encodeURIComponent(String(logpath)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'logpath' is not null or undefined
+ if (logpath === null || logpath === undefined) {
+ throw new Error('Required parameter logpath was null or undefined when calling logFileHandler.');
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ *
+ */
+ logFileListHandler(options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/logs/';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+}
+exports.LogsApi = LogsApi;
+//# sourceMappingURL=logsApi.js.map
\ No newline at end of file
diff --git a/dist/gen/api/logsApi.js.map b/dist/gen/api/logsApi.js.map
new file mode 100644
index 0000000000..33083859a3
--- /dev/null
+++ b/dist/gen/api/logsApi.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"logsApi.js","sourceRoot":"","sources":["../../../src/gen/api/logsApi.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;;AAEH,2CAA4C;AAG5C,qCAAqC;AAErC,4CAA6E;AAC7E,4CAA6C;AAE7C,IAAI,eAAe,GAAG,kBAAkB,CAAC;AAEzC,kDAAkD;AAClD,kDAAkD;AAClD,kDAAkD;AAElD,IAAY,cAEX;AAFD,WAAY,cAAc;IACtB,iEAAW,CAAA;AACf,CAAC,EAFW,cAAc,GAAd,sBAAc,KAAd,sBAAc,QAEzB;AAED,MAAa,OAAO;IAWhB,YAAY,kBAA0B,EAAE,QAAiB,EAAE,QAAiB;QAVlE,cAAS,GAAG,eAAe,CAAC;QAC5B,mBAAc,GAAS,EAAE,CAAC;QAC1B,oBAAe,GAAa,KAAK,CAAC;QAElC,oBAAe,GAAG;YACxB,SAAS,EAAkB,IAAI,iBAAQ,EAAE;YACzC,aAAa,EAAE,IAAI,mBAAU,CAAC,QAAQ,EAAE,eAAe,CAAC;SAC3D,CAAA;QAIG,IAAI,QAAQ,EAAE;YACV,IAAI,QAAQ,EAAE;gBACV,IAAI,CAAC,QAAQ,GAAG,QAAQ,CAAC;aAC5B;SACJ;aAAM;YACH,IAAI,kBAAkB,EAAE;gBACpB,IAAI,CAAC,QAAQ,GAAG,kBAAkB,CAAA;aACrC;SACJ;IACL,CAAC;IAED,IAAI,cAAc,CAAC,KAAc;QAC7B,IAAI,CAAC,eAAe,GAAG,KAAK,CAAC;IACjC,CAAC;IAED,IAAI,QAAQ,CAAC,QAAgB;QACzB,IAAI,CAAC,SAAS,GAAG,QAAQ,CAAC;IAC9B,CAAC;IAED,IAAI,QAAQ;QACR,OAAO,IAAI,CAAC,SAAS,CAAC;IAC1B,CAAC;IAEM,wBAAwB,CAAC,IAAoB;QAChD,IAAI,CAAC,eAAe,CAAC,OAAO,GAAG,IAAI,CAAC;IACxC,CAAC;IAEM,SAAS,CAAC,GAAmB,EAAE,KAAa;QAC9C,IAAI,CAAC,eAAuB,CAAC,cAAc,CAAC,GAAG,CAAC,CAAC,CAAC,MAAM,GAAG,KAAK,CAAC;IACtE,CAAC;IAED;;;OAGG;IACU,cAAc,CAAE,OAAe,EAAE,UAA+C,EAAC,OAAO,EAAE,EAAE,EAAC;;YACtG,MAAM,YAAY,GAAG,IAAI,CAAC,QAAQ,GAAG,iBAAiB;iBACjD,OAAO,CAAC,GAAG,GAAG,SAAS,GAAG,GAAG,EAAE,kBAAkB,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC;YACzE,IAAI,uBAAuB,GAAQ,EAAE,CAAC;YACtC,IAAI,oBAAoB,GAAc,MAAO,CAAC,MAAM,CAAC,EAAE,EAAE,IAAI,CAAC,cAAc,CAAC,CAAC;YAC9E,IAAI,kBAAkB,GAAQ,EAAE,CAAC;YAEjC,+DAA+D;YAC/D,IAAI,OAAO,KAAK,IAAI,IAAI,OAAO,KAAK,SAAS,EAAE;gBAC3C,MAAM,IAAI,KAAK,CAAC,+EAA+E,CAAC,CAAC;aACpG;YAEK,MAAO,CAAC,MAAM,CAAC,oBAAoB,EAAE,OAAO,CAAC,OAAO,CAAC,CAAC;YAE5D,IAAI,mBAAmB,GAAG,KAAK,CAAC;YAEhC,IAAI,sBAAsB,GAA4B;gBAClD,MAAM,EAAE,KAAK;gBACb,EAAE,EAAE,uBAAuB;gBAC3B,OAAO,EAAE,oBAAoB;gBAC7B,GAAG,EAAE,YAAY;gBACjB,cAAc,EAAE,IAAI,CAAC,eAAe;gBACpC,IAAI,EAAE,IAAI;aACb,CAAC;YAEF,IAAI,qBAAqB,GAAG,OAAO,CAAC,OAAO,EAAE,CAAC;YAC9C,qBAAqB,GAAG,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,eAAe,CAAC,WAAW,CAAC,cAAc,CAAC,sBAAsB,CAAC,CAAC,CAAC;YAElI,qBAAqB,GAAG,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,eAAe,CAAC,OAAO,CAAC,cAAc,CAAC,sBAAsB,CAAC,CAAC,CAAC;YAC9H,OAAO,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE;gBACnC,IAAI,MAAM,CAAC,IAAI,CAAC,kBAAkB,CAAC,CAAC,MAAM,EAAE;oBACxC,IAAI,mBAAmB,EAAE;wBACf,sBAAuB,CAAC,QAAQ,GAAG,kBAAkB,CAAC;qBAC/D;yBAAM;wBACH,sBAAsB,CAAC,IAAI,GAAG,kBAAkB,CAAC;qBACpD;iBACJ;gBACD,OAAO,IAAI,OAAO,CAAmD,CAAC,OAAO,EAAE,MAAM,EAAE,EAAE;oBACrF,eAAe,CAAC,sBAAsB,EAAE,CAAC,KAAK,EAAE,QAAQ,EAAE,IAAI,EAAE,EAAE;wBAC9D,IAAI,KAAK,EAAE;4BACP,MAAM,CAAC,KAAK,CAAC,CAAC;yBACjB;6BAAM;4BACH,IAAI,QAAQ,CAAC,UAAU,IAAI,QAAQ,CAAC,UAAU,IAAI,GAAG,IAAI,QAAQ,CAAC,UAAU,IAAI,GAAG,EAAE;gCACjF,OAAO,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;6BAC/C;iCAAM;gCACH,MAAM,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;6BAC9C;yBACJ;oBACL,CAAC,CAAC,CAAC;gBACP,CAAC,CAAC,CAAC;YACP,CAAC,CAAC,CAAC;QACP,CAAC;KAAA;IACD;;OAEG;IACU,kBAAkB,CAAE,UAA+C,EAAC,OAAO,EAAE,EAAE,EAAC;;YACzF,MAAM,YAAY,GAAG,IAAI,CAAC,QAAQ,GAAG,QAAQ,CAAC;YAC9C,IAAI,uBAAuB,GAAQ,EAAE,CAAC;YACtC,IAAI,oBAAoB,GAAc,MAAO,CAAC,MAAM,CAAC,EAAE,EAAE,IAAI,CAAC,cAAc,CAAC,CAAC;YAC9E,IAAI,kBAAkB,GAAQ,EAAE,CAAC;YAE3B,MAAO,CAAC,MAAM,CAAC,oBAAoB,EAAE,OAAO,CAAC,OAAO,CAAC,CAAC;YAE5D,IAAI,mBAAmB,GAAG,KAAK,CAAC;YAEhC,IAAI,sBAAsB,GAA4B;gBAClD,MAAM,EAAE,KAAK;gBACb,EAAE,EAAE,uBAAuB;gBAC3B,OAAO,EAAE,oBAAoB;gBAC7B,GAAG,EAAE,YAAY;gBACjB,cAAc,EAAE,IAAI,CAAC,eAAe;gBACpC,IAAI,EAAE,IAAI;aACb,CAAC;YAEF,IAAI,qBAAqB,GAAG,OAAO,CAAC,OAAO,EAAE,CAAC;YAC9C,qBAAqB,GAAG,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,eAAe,CAAC,WAAW,CAAC,cAAc,CAAC,sBAAsB,CAAC,CAAC,CAAC;YAElI,qBAAqB,GAAG,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,eAAe,CAAC,OAAO,CAAC,cAAc,CAAC,sBAAsB,CAAC,CAAC,CAAC;YAC9H,OAAO,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE;gBACnC,IAAI,MAAM,CAAC,IAAI,CAAC,kBAAkB,CAAC,CAAC,MAAM,EAAE;oBACxC,IAAI,mBAAmB,EAAE;wBACf,sBAAuB,CAAC,QAAQ,GAAG,kBAAkB,CAAC;qBAC/D;yBAAM;wBACH,sBAAsB,CAAC,IAAI,GAAG,kBAAkB,CAAC;qBACpD;iBACJ;gBACD,OAAO,IAAI,OAAO,CAAmD,CAAC,OAAO,EAAE,MAAM,EAAE,EAAE;oBACrF,eAAe,CAAC,sBAAsB,EAAE,CAAC,KAAK,EAAE,QAAQ,EAAE,IAAI,EAAE,EAAE;wBAC9D,IAAI,KAAK,EAAE;4BACP,MAAM,CAAC,KAAK,CAAC,CAAC;yBACjB;6BAAM;4BACH,IAAI,QAAQ,CAAC,UAAU,IAAI,QAAQ,CAAC,UAAU,IAAI,GAAG,IAAI,QAAQ,CAAC,UAAU,IAAI,GAAG,EAAE;gCACjF,OAAO,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;6BAC/C;iCAAM;gCACH,MAAM,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;6BAC9C;yBACJ;oBACL,CAAC,CAAC,CAAC;gBACP,CAAC,CAAC,CAAC;YACP,CAAC,CAAC,CAAC;QACP,CAAC;KAAA;CACJ;AApJD,0BAoJC"}
\ No newline at end of file
diff --git a/dist/gen/api/networkingApi.d.ts b/dist/gen/api/networkingApi.d.ts
new file mode 100644
index 0000000000..5453d9c022
--- /dev/null
+++ b/dist/gen/api/networkingApi.d.ts
@@ -0,0 +1,44 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+///
+import http = require('http');
+import { V1APIGroup } from '../model/v1APIGroup';
+import { Authentication } from '../model/models';
+import { ApiKeyAuth } from '../model/models';
+export declare enum NetworkingApiApiKeys {
+ BearerToken = 0
+}
+export declare class NetworkingApi {
+ protected _basePath: string;
+ protected defaultHeaders: any;
+ protected _useQuerystring: boolean;
+ protected authentications: {
+ 'default': Authentication;
+ 'BearerToken': ApiKeyAuth;
+ };
+ constructor(basePath?: string);
+ useQuerystring: boolean;
+ basePath: string;
+ setDefaultAuthentication(auth: Authentication): void;
+ setApiKey(key: NetworkingApiApiKeys, value: string): void;
+ /**
+ * get information of a group
+ */
+ getAPIGroup(options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1APIGroup;
+ }>;
+}
diff --git a/dist/gen/api/networkingApi.js b/dist/gen/api/networkingApi.js
new file mode 100644
index 0000000000..ef18eabe76
--- /dev/null
+++ b/dist/gen/api/networkingApi.js
@@ -0,0 +1,113 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+const tslib_1 = require("tslib");
+const localVarRequest = require("request");
+const models_1 = require("../model/models");
+const models_2 = require("../model/models");
+let defaultBasePath = 'http://localhost/';
+// ===============================================
+// This file is autogenerated - Please do not edit
+// ===============================================
+var NetworkingApiApiKeys;
+(function (NetworkingApiApiKeys) {
+ NetworkingApiApiKeys[NetworkingApiApiKeys["BearerToken"] = 0] = "BearerToken";
+})(NetworkingApiApiKeys = exports.NetworkingApiApiKeys || (exports.NetworkingApiApiKeys = {}));
+class NetworkingApi {
+ constructor(basePathOrUsername, password, basePath) {
+ this._basePath = defaultBasePath;
+ this.defaultHeaders = {};
+ this._useQuerystring = false;
+ this.authentications = {
+ 'default': new models_1.VoidAuth(),
+ 'BearerToken': new models_2.ApiKeyAuth('header', 'authorization'),
+ };
+ if (password) {
+ if (basePath) {
+ this.basePath = basePath;
+ }
+ }
+ else {
+ if (basePathOrUsername) {
+ this.basePath = basePathOrUsername;
+ }
+ }
+ }
+ set useQuerystring(value) {
+ this._useQuerystring = value;
+ }
+ set basePath(basePath) {
+ this._basePath = basePath;
+ }
+ get basePath() {
+ return this._basePath;
+ }
+ setDefaultAuthentication(auth) {
+ this.authentications.default = auth;
+ }
+ setApiKey(key, value) {
+ this.authentications[NetworkingApiApiKeys[key]].apiKey = value;
+ }
+ /**
+ * get information of a group
+ */
+ getAPIGroup(options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/networking.k8s.io/';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1APIGroup");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+}
+exports.NetworkingApi = NetworkingApi;
+//# sourceMappingURL=networkingApi.js.map
\ No newline at end of file
diff --git a/dist/gen/api/networkingApi.js.map b/dist/gen/api/networkingApi.js.map
new file mode 100644
index 0000000000..7806e284cb
--- /dev/null
+++ b/dist/gen/api/networkingApi.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"networkingApi.js","sourceRoot":"","sources":["../../../src/gen/api/networkingApi.ts"],"names":[],"mappings":"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"}
\ No newline at end of file
diff --git a/dist/gen/api/networkingV1Api.d.ts b/dist/gen/api/networkingV1Api.d.ts
new file mode 100644
index 0000000000..0f6393a9f9
--- /dev/null
+++ b/dist/gen/api/networkingV1Api.d.ts
@@ -0,0 +1,201 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+///
+import http = require('http');
+import { V1APIResourceList } from '../model/v1APIResourceList';
+import { V1DeleteOptions } from '../model/v1DeleteOptions';
+import { V1NetworkPolicy } from '../model/v1NetworkPolicy';
+import { V1NetworkPolicyList } from '../model/v1NetworkPolicyList';
+import { V1Status } from '../model/v1Status';
+import { Authentication } from '../model/models';
+import { ApiKeyAuth } from '../model/models';
+export declare enum NetworkingV1ApiApiKeys {
+ BearerToken = 0
+}
+export declare class NetworkingV1Api {
+ protected _basePath: string;
+ protected defaultHeaders: any;
+ protected _useQuerystring: boolean;
+ protected authentications: {
+ 'default': Authentication;
+ 'BearerToken': ApiKeyAuth;
+ };
+ constructor(basePath?: string);
+ useQuerystring: boolean;
+ basePath: string;
+ setDefaultAuthentication(auth: Authentication): void;
+ setApiKey(key: NetworkingV1ApiApiKeys, value: string): void;
+ /**
+ * create a NetworkPolicy
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createNamespacedNetworkPolicy(namespace: string, body: V1NetworkPolicy, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1NetworkPolicy;
+ }>;
+ /**
+ * delete collection of NetworkPolicy
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionNamespacedNetworkPolicy(namespace: string, pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, dryRun?: string, fieldSelector?: string, gracePeriodSeconds?: number, labelSelector?: string, limit?: number, orphanDependents?: boolean, propagationPolicy?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete a NetworkPolicy
+ * @param name name of the NetworkPolicy
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteNamespacedNetworkPolicy(name: string, namespace: string, pretty?: string, dryRun?: string, gracePeriodSeconds?: number, orphanDependents?: boolean, propagationPolicy?: string, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * get available resources
+ */
+ getAPIResources(options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1APIResourceList;
+ }>;
+ /**
+ * list or watch objects of kind NetworkPolicy
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listNamespacedNetworkPolicy(namespace: string, pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1NetworkPolicyList;
+ }>;
+ /**
+ * list or watch objects of kind NetworkPolicy
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listNetworkPolicyForAllNamespaces(allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, pretty?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1NetworkPolicyList;
+ }>;
+ /**
+ * partially update the specified NetworkPolicy
+ * @param name name of the NetworkPolicy
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedNetworkPolicy(name: string, namespace: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1NetworkPolicy;
+ }>;
+ /**
+ * read the specified NetworkPolicy
+ * @param name name of the NetworkPolicy
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readNamespacedNetworkPolicy(name: string, namespace: string, pretty?: string, exact?: boolean, _export?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1NetworkPolicy;
+ }>;
+ /**
+ * replace the specified NetworkPolicy
+ * @param name name of the NetworkPolicy
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedNetworkPolicy(name: string, namespace: string, body: V1NetworkPolicy, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1NetworkPolicy;
+ }>;
+}
diff --git a/dist/gen/api/networkingV1Api.js b/dist/gen/api/networkingV1Api.js
new file mode 100644
index 0000000000..0cbe97493a
--- /dev/null
+++ b/dist/gen/api/networkingV1Api.js
@@ -0,0 +1,797 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+const tslib_1 = require("tslib");
+const localVarRequest = require("request");
+const models_1 = require("../model/models");
+const models_2 = require("../model/models");
+let defaultBasePath = 'http://localhost/';
+// ===============================================
+// This file is autogenerated - Please do not edit
+// ===============================================
+var NetworkingV1ApiApiKeys;
+(function (NetworkingV1ApiApiKeys) {
+ NetworkingV1ApiApiKeys[NetworkingV1ApiApiKeys["BearerToken"] = 0] = "BearerToken";
+})(NetworkingV1ApiApiKeys = exports.NetworkingV1ApiApiKeys || (exports.NetworkingV1ApiApiKeys = {}));
+class NetworkingV1Api {
+ constructor(basePathOrUsername, password, basePath) {
+ this._basePath = defaultBasePath;
+ this.defaultHeaders = {};
+ this._useQuerystring = false;
+ this.authentications = {
+ 'default': new models_1.VoidAuth(),
+ 'BearerToken': new models_2.ApiKeyAuth('header', 'authorization'),
+ };
+ if (password) {
+ if (basePath) {
+ this.basePath = basePath;
+ }
+ }
+ else {
+ if (basePathOrUsername) {
+ this.basePath = basePathOrUsername;
+ }
+ }
+ }
+ set useQuerystring(value) {
+ this._useQuerystring = value;
+ }
+ set basePath(basePath) {
+ this._basePath = basePath;
+ }
+ get basePath() {
+ return this._basePath;
+ }
+ setDefaultAuthentication(auth) {
+ this.authentications.default = auth;
+ }
+ setApiKey(key, value) {
+ this.authentications[NetworkingV1ApiApiKeys[key]].apiKey = value;
+ }
+ /**
+ * create a NetworkPolicy
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createNamespacedNetworkPolicy(namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/networking.k8s.io/v1/namespaces/{namespace}/networkpolicies'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling createNamespacedNetworkPolicy.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling createNamespacedNetworkPolicy.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'POST',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1NetworkPolicy")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1NetworkPolicy");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete collection of NetworkPolicy
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionNamespacedNetworkPolicy(namespace, pretty, allowWatchBookmarks, _continue, dryRun, fieldSelector, gracePeriodSeconds, labelSelector, limit, orphanDependents, propagationPolicy, resourceVersion, timeoutSeconds, watch, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/networking.k8s.io/v1/namespaces/{namespace}/networkpolicies'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling deleteCollectionNamespacedNetworkPolicy.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete a NetworkPolicy
+ * @param name name of the NetworkPolicy
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteNamespacedNetworkPolicy(name, namespace, pretty, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/networking.k8s.io/v1/namespaces/{namespace}/networkpolicies/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling deleteNamespacedNetworkPolicy.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling deleteNamespacedNetworkPolicy.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * get available resources
+ */
+ getAPIResources(options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/networking.k8s.io/v1/';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1APIResourceList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind NetworkPolicy
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listNamespacedNetworkPolicy(namespace, pretty, allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/networking.k8s.io/v1/namespaces/{namespace}/networkpolicies'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling listNamespacedNetworkPolicy.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1NetworkPolicyList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind NetworkPolicy
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listNetworkPolicyForAllNamespaces(allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, pretty, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/networking.k8s.io/v1/networkpolicies';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1NetworkPolicyList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update the specified NetworkPolicy
+ * @param name name of the NetworkPolicy
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedNetworkPolicy(name, namespace, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/networking.k8s.io/v1/namespaces/{namespace}/networkpolicies/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchNamespacedNetworkPolicy.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling patchNamespacedNetworkPolicy.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchNamespacedNetworkPolicy.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1NetworkPolicy");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read the specified NetworkPolicy
+ * @param name name of the NetworkPolicy
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readNamespacedNetworkPolicy(name, namespace, pretty, exact, _export, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/networking.k8s.io/v1/namespaces/{namespace}/networkpolicies/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readNamespacedNetworkPolicy.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling readNamespacedNetworkPolicy.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (exact !== undefined) {
+ localVarQueryParameters['exact'] = models_1.ObjectSerializer.serialize(exact, "boolean");
+ }
+ if (_export !== undefined) {
+ localVarQueryParameters['export'] = models_1.ObjectSerializer.serialize(_export, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1NetworkPolicy");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace the specified NetworkPolicy
+ * @param name name of the NetworkPolicy
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedNetworkPolicy(name, namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/networking.k8s.io/v1/namespaces/{namespace}/networkpolicies/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceNamespacedNetworkPolicy.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling replaceNamespacedNetworkPolicy.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceNamespacedNetworkPolicy.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1NetworkPolicy")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1NetworkPolicy");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+}
+exports.NetworkingV1Api = NetworkingV1Api;
+//# sourceMappingURL=networkingV1Api.js.map
\ No newline at end of file
diff --git a/dist/gen/api/networkingV1Api.js.map b/dist/gen/api/networkingV1Api.js.map
new file mode 100644
index 0000000000..9b5d036466
--- /dev/null
+++ b/dist/gen/api/networkingV1Api.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"networkingV1Api.js","sourceRoot":"","sources":["../../../src/gen/api/networkingV1Api.ts"],"names":[],"mappings":"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"}
\ No newline at end of file
diff --git a/dist/gen/api/networkingV1beta1Api.d.ts b/dist/gen/api/networkingV1beta1Api.d.ts
new file mode 100644
index 0000000000..858b9be58e
--- /dev/null
+++ b/dist/gen/api/networkingV1beta1Api.d.ts
@@ -0,0 +1,250 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+///
+import http = require('http');
+import { NetworkingV1beta1Ingress } from '../model/networkingV1beta1Ingress';
+import { NetworkingV1beta1IngressList } from '../model/networkingV1beta1IngressList';
+import { V1APIResourceList } from '../model/v1APIResourceList';
+import { V1DeleteOptions } from '../model/v1DeleteOptions';
+import { V1Status } from '../model/v1Status';
+import { Authentication } from '../model/models';
+import { ApiKeyAuth } from '../model/models';
+export declare enum NetworkingV1beta1ApiApiKeys {
+ BearerToken = 0
+}
+export declare class NetworkingV1beta1Api {
+ protected _basePath: string;
+ protected defaultHeaders: any;
+ protected _useQuerystring: boolean;
+ protected authentications: {
+ 'default': Authentication;
+ 'BearerToken': ApiKeyAuth;
+ };
+ constructor(basePath?: string);
+ useQuerystring: boolean;
+ basePath: string;
+ setDefaultAuthentication(auth: Authentication): void;
+ setApiKey(key: NetworkingV1beta1ApiApiKeys, value: string): void;
+ /**
+ * create an Ingress
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createNamespacedIngress(namespace: string, body: NetworkingV1beta1Ingress, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: NetworkingV1beta1Ingress;
+ }>;
+ /**
+ * delete collection of Ingress
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionNamespacedIngress(namespace: string, pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, dryRun?: string, fieldSelector?: string, gracePeriodSeconds?: number, labelSelector?: string, limit?: number, orphanDependents?: boolean, propagationPolicy?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete an Ingress
+ * @param name name of the Ingress
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteNamespacedIngress(name: string, namespace: string, pretty?: string, dryRun?: string, gracePeriodSeconds?: number, orphanDependents?: boolean, propagationPolicy?: string, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * get available resources
+ */
+ getAPIResources(options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1APIResourceList;
+ }>;
+ /**
+ * list or watch objects of kind Ingress
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listIngressForAllNamespaces(allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, pretty?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: NetworkingV1beta1IngressList;
+ }>;
+ /**
+ * list or watch objects of kind Ingress
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listNamespacedIngress(namespace: string, pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: NetworkingV1beta1IngressList;
+ }>;
+ /**
+ * partially update the specified Ingress
+ * @param name name of the Ingress
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedIngress(name: string, namespace: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: NetworkingV1beta1Ingress;
+ }>;
+ /**
+ * partially update status of the specified Ingress
+ * @param name name of the Ingress
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedIngressStatus(name: string, namespace: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: NetworkingV1beta1Ingress;
+ }>;
+ /**
+ * read the specified Ingress
+ * @param name name of the Ingress
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readNamespacedIngress(name: string, namespace: string, pretty?: string, exact?: boolean, _export?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: NetworkingV1beta1Ingress;
+ }>;
+ /**
+ * read status of the specified Ingress
+ * @param name name of the Ingress
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readNamespacedIngressStatus(name: string, namespace: string, pretty?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: NetworkingV1beta1Ingress;
+ }>;
+ /**
+ * replace the specified Ingress
+ * @param name name of the Ingress
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedIngress(name: string, namespace: string, body: NetworkingV1beta1Ingress, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: NetworkingV1beta1Ingress;
+ }>;
+ /**
+ * replace status of the specified Ingress
+ * @param name name of the Ingress
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedIngressStatus(name: string, namespace: string, body: NetworkingV1beta1Ingress, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: NetworkingV1beta1Ingress;
+ }>;
+}
diff --git a/dist/gen/api/networkingV1beta1Api.js b/dist/gen/api/networkingV1beta1Api.js
new file mode 100644
index 0000000000..31e100c9f0
--- /dev/null
+++ b/dist/gen/api/networkingV1beta1Api.js
@@ -0,0 +1,1027 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+const tslib_1 = require("tslib");
+const localVarRequest = require("request");
+const models_1 = require("../model/models");
+const models_2 = require("../model/models");
+let defaultBasePath = 'http://localhost/';
+// ===============================================
+// This file is autogenerated - Please do not edit
+// ===============================================
+var NetworkingV1beta1ApiApiKeys;
+(function (NetworkingV1beta1ApiApiKeys) {
+ NetworkingV1beta1ApiApiKeys[NetworkingV1beta1ApiApiKeys["BearerToken"] = 0] = "BearerToken";
+})(NetworkingV1beta1ApiApiKeys = exports.NetworkingV1beta1ApiApiKeys || (exports.NetworkingV1beta1ApiApiKeys = {}));
+class NetworkingV1beta1Api {
+ constructor(basePathOrUsername, password, basePath) {
+ this._basePath = defaultBasePath;
+ this.defaultHeaders = {};
+ this._useQuerystring = false;
+ this.authentications = {
+ 'default': new models_1.VoidAuth(),
+ 'BearerToken': new models_2.ApiKeyAuth('header', 'authorization'),
+ };
+ if (password) {
+ if (basePath) {
+ this.basePath = basePath;
+ }
+ }
+ else {
+ if (basePathOrUsername) {
+ this.basePath = basePathOrUsername;
+ }
+ }
+ }
+ set useQuerystring(value) {
+ this._useQuerystring = value;
+ }
+ set basePath(basePath) {
+ this._basePath = basePath;
+ }
+ get basePath() {
+ return this._basePath;
+ }
+ setDefaultAuthentication(auth) {
+ this.authentications.default = auth;
+ }
+ setApiKey(key, value) {
+ this.authentications[NetworkingV1beta1ApiApiKeys[key]].apiKey = value;
+ }
+ /**
+ * create an Ingress
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createNamespacedIngress(namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/networking.k8s.io/v1beta1/namespaces/{namespace}/ingresses'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling createNamespacedIngress.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling createNamespacedIngress.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'POST',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "NetworkingV1beta1Ingress")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "NetworkingV1beta1Ingress");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete collection of Ingress
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionNamespacedIngress(namespace, pretty, allowWatchBookmarks, _continue, dryRun, fieldSelector, gracePeriodSeconds, labelSelector, limit, orphanDependents, propagationPolicy, resourceVersion, timeoutSeconds, watch, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/networking.k8s.io/v1beta1/namespaces/{namespace}/ingresses'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling deleteCollectionNamespacedIngress.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete an Ingress
+ * @param name name of the Ingress
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteNamespacedIngress(name, namespace, pretty, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/networking.k8s.io/v1beta1/namespaces/{namespace}/ingresses/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling deleteNamespacedIngress.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling deleteNamespacedIngress.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * get available resources
+ */
+ getAPIResources(options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/networking.k8s.io/v1beta1/';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1APIResourceList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind Ingress
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listIngressForAllNamespaces(allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, pretty, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/networking.k8s.io/v1beta1/ingresses';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "NetworkingV1beta1IngressList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind Ingress
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listNamespacedIngress(namespace, pretty, allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/networking.k8s.io/v1beta1/namespaces/{namespace}/ingresses'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling listNamespacedIngress.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "NetworkingV1beta1IngressList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update the specified Ingress
+ * @param name name of the Ingress
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedIngress(name, namespace, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/networking.k8s.io/v1beta1/namespaces/{namespace}/ingresses/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchNamespacedIngress.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling patchNamespacedIngress.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchNamespacedIngress.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "NetworkingV1beta1Ingress");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update status of the specified Ingress
+ * @param name name of the Ingress
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedIngressStatus(name, namespace, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/networking.k8s.io/v1beta1/namespaces/{namespace}/ingresses/{name}/status'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchNamespacedIngressStatus.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling patchNamespacedIngressStatus.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchNamespacedIngressStatus.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "NetworkingV1beta1Ingress");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read the specified Ingress
+ * @param name name of the Ingress
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readNamespacedIngress(name, namespace, pretty, exact, _export, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/networking.k8s.io/v1beta1/namespaces/{namespace}/ingresses/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readNamespacedIngress.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling readNamespacedIngress.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (exact !== undefined) {
+ localVarQueryParameters['exact'] = models_1.ObjectSerializer.serialize(exact, "boolean");
+ }
+ if (_export !== undefined) {
+ localVarQueryParameters['export'] = models_1.ObjectSerializer.serialize(_export, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "NetworkingV1beta1Ingress");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read status of the specified Ingress
+ * @param name name of the Ingress
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readNamespacedIngressStatus(name, namespace, pretty, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/networking.k8s.io/v1beta1/namespaces/{namespace}/ingresses/{name}/status'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readNamespacedIngressStatus.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling readNamespacedIngressStatus.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "NetworkingV1beta1Ingress");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace the specified Ingress
+ * @param name name of the Ingress
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedIngress(name, namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/networking.k8s.io/v1beta1/namespaces/{namespace}/ingresses/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceNamespacedIngress.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling replaceNamespacedIngress.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceNamespacedIngress.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "NetworkingV1beta1Ingress")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "NetworkingV1beta1Ingress");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace status of the specified Ingress
+ * @param name name of the Ingress
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedIngressStatus(name, namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/networking.k8s.io/v1beta1/namespaces/{namespace}/ingresses/{name}/status'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceNamespacedIngressStatus.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling replaceNamespacedIngressStatus.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceNamespacedIngressStatus.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "NetworkingV1beta1Ingress")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "NetworkingV1beta1Ingress");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+}
+exports.NetworkingV1beta1Api = NetworkingV1beta1Api;
+//# sourceMappingURL=networkingV1beta1Api.js.map
\ No newline at end of file
diff --git a/dist/gen/api/networkingV1beta1Api.js.map b/dist/gen/api/networkingV1beta1Api.js.map
new file mode 100644
index 0000000000..e46c09baf3
--- /dev/null
+++ b/dist/gen/api/networkingV1beta1Api.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"networkingV1beta1Api.js","sourceRoot":"","sources":["../../../src/gen/api/networkingV1beta1Api.ts"],"names":[],"mappings":"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"}
\ No newline at end of file
diff --git a/dist/gen/api/nodeApi.d.ts b/dist/gen/api/nodeApi.d.ts
new file mode 100644
index 0000000000..f77f43fac4
--- /dev/null
+++ b/dist/gen/api/nodeApi.d.ts
@@ -0,0 +1,44 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+///
+import http = require('http');
+import { V1APIGroup } from '../model/v1APIGroup';
+import { Authentication } from '../model/models';
+import { ApiKeyAuth } from '../model/models';
+export declare enum NodeApiApiKeys {
+ BearerToken = 0
+}
+export declare class NodeApi {
+ protected _basePath: string;
+ protected defaultHeaders: any;
+ protected _useQuerystring: boolean;
+ protected authentications: {
+ 'default': Authentication;
+ 'BearerToken': ApiKeyAuth;
+ };
+ constructor(basePath?: string);
+ useQuerystring: boolean;
+ basePath: string;
+ setDefaultAuthentication(auth: Authentication): void;
+ setApiKey(key: NodeApiApiKeys, value: string): void;
+ /**
+ * get information of a group
+ */
+ getAPIGroup(options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1APIGroup;
+ }>;
+}
diff --git a/dist/gen/api/nodeApi.js b/dist/gen/api/nodeApi.js
new file mode 100644
index 0000000000..386c1cf24d
--- /dev/null
+++ b/dist/gen/api/nodeApi.js
@@ -0,0 +1,113 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+const tslib_1 = require("tslib");
+const localVarRequest = require("request");
+const models_1 = require("../model/models");
+const models_2 = require("../model/models");
+let defaultBasePath = 'http://localhost/';
+// ===============================================
+// This file is autogenerated - Please do not edit
+// ===============================================
+var NodeApiApiKeys;
+(function (NodeApiApiKeys) {
+ NodeApiApiKeys[NodeApiApiKeys["BearerToken"] = 0] = "BearerToken";
+})(NodeApiApiKeys = exports.NodeApiApiKeys || (exports.NodeApiApiKeys = {}));
+class NodeApi {
+ constructor(basePathOrUsername, password, basePath) {
+ this._basePath = defaultBasePath;
+ this.defaultHeaders = {};
+ this._useQuerystring = false;
+ this.authentications = {
+ 'default': new models_1.VoidAuth(),
+ 'BearerToken': new models_2.ApiKeyAuth('header', 'authorization'),
+ };
+ if (password) {
+ if (basePath) {
+ this.basePath = basePath;
+ }
+ }
+ else {
+ if (basePathOrUsername) {
+ this.basePath = basePathOrUsername;
+ }
+ }
+ }
+ set useQuerystring(value) {
+ this._useQuerystring = value;
+ }
+ set basePath(basePath) {
+ this._basePath = basePath;
+ }
+ get basePath() {
+ return this._basePath;
+ }
+ setDefaultAuthentication(auth) {
+ this.authentications.default = auth;
+ }
+ setApiKey(key, value) {
+ this.authentications[NodeApiApiKeys[key]].apiKey = value;
+ }
+ /**
+ * get information of a group
+ */
+ getAPIGroup(options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/node.k8s.io/';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1APIGroup");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+}
+exports.NodeApi = NodeApi;
+//# sourceMappingURL=nodeApi.js.map
\ No newline at end of file
diff --git a/dist/gen/api/nodeApi.js.map b/dist/gen/api/nodeApi.js.map
new file mode 100644
index 0000000000..e6a3542bb0
--- /dev/null
+++ b/dist/gen/api/nodeApi.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"nodeApi.js","sourceRoot":"","sources":["../../../src/gen/api/nodeApi.ts"],"names":[],"mappings":"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"}
\ No newline at end of file
diff --git a/dist/gen/api/nodeV1alpha1Api.d.ts b/dist/gen/api/nodeV1alpha1Api.d.ts
new file mode 100644
index 0000000000..d784288226
--- /dev/null
+++ b/dist/gen/api/nodeV1alpha1Api.d.ts
@@ -0,0 +1,174 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+///
+import http = require('http');
+import { V1APIResourceList } from '../model/v1APIResourceList';
+import { V1DeleteOptions } from '../model/v1DeleteOptions';
+import { V1Status } from '../model/v1Status';
+import { V1alpha1RuntimeClass } from '../model/v1alpha1RuntimeClass';
+import { V1alpha1RuntimeClassList } from '../model/v1alpha1RuntimeClassList';
+import { Authentication } from '../model/models';
+import { ApiKeyAuth } from '../model/models';
+export declare enum NodeV1alpha1ApiApiKeys {
+ BearerToken = 0
+}
+export declare class NodeV1alpha1Api {
+ protected _basePath: string;
+ protected defaultHeaders: any;
+ protected _useQuerystring: boolean;
+ protected authentications: {
+ 'default': Authentication;
+ 'BearerToken': ApiKeyAuth;
+ };
+ constructor(basePath?: string);
+ useQuerystring: boolean;
+ basePath: string;
+ setDefaultAuthentication(auth: Authentication): void;
+ setApiKey(key: NodeV1alpha1ApiApiKeys, value: string): void;
+ /**
+ * create a RuntimeClass
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createRuntimeClass(body: V1alpha1RuntimeClass, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1alpha1RuntimeClass;
+ }>;
+ /**
+ * delete collection of RuntimeClass
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionRuntimeClass(pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, dryRun?: string, fieldSelector?: string, gracePeriodSeconds?: number, labelSelector?: string, limit?: number, orphanDependents?: boolean, propagationPolicy?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete a RuntimeClass
+ * @param name name of the RuntimeClass
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteRuntimeClass(name: string, pretty?: string, dryRun?: string, gracePeriodSeconds?: number, orphanDependents?: boolean, propagationPolicy?: string, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * get available resources
+ */
+ getAPIResources(options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1APIResourceList;
+ }>;
+ /**
+ * list or watch objects of kind RuntimeClass
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listRuntimeClass(pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1alpha1RuntimeClassList;
+ }>;
+ /**
+ * partially update the specified RuntimeClass
+ * @param name name of the RuntimeClass
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchRuntimeClass(name: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1alpha1RuntimeClass;
+ }>;
+ /**
+ * read the specified RuntimeClass
+ * @param name name of the RuntimeClass
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readRuntimeClass(name: string, pretty?: string, exact?: boolean, _export?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1alpha1RuntimeClass;
+ }>;
+ /**
+ * replace the specified RuntimeClass
+ * @param name name of the RuntimeClass
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceRuntimeClass(name: string, body: V1alpha1RuntimeClass, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1alpha1RuntimeClass;
+ }>;
+}
diff --git a/dist/gen/api/nodeV1alpha1Api.js b/dist/gen/api/nodeV1alpha1Api.js
new file mode 100644
index 0000000000..1bfae183ee
--- /dev/null
+++ b/dist/gen/api/nodeV1alpha1Api.js
@@ -0,0 +1,669 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+const tslib_1 = require("tslib");
+const localVarRequest = require("request");
+const models_1 = require("../model/models");
+const models_2 = require("../model/models");
+let defaultBasePath = 'http://localhost/';
+// ===============================================
+// This file is autogenerated - Please do not edit
+// ===============================================
+var NodeV1alpha1ApiApiKeys;
+(function (NodeV1alpha1ApiApiKeys) {
+ NodeV1alpha1ApiApiKeys[NodeV1alpha1ApiApiKeys["BearerToken"] = 0] = "BearerToken";
+})(NodeV1alpha1ApiApiKeys = exports.NodeV1alpha1ApiApiKeys || (exports.NodeV1alpha1ApiApiKeys = {}));
+class NodeV1alpha1Api {
+ constructor(basePathOrUsername, password, basePath) {
+ this._basePath = defaultBasePath;
+ this.defaultHeaders = {};
+ this._useQuerystring = false;
+ this.authentications = {
+ 'default': new models_1.VoidAuth(),
+ 'BearerToken': new models_2.ApiKeyAuth('header', 'authorization'),
+ };
+ if (password) {
+ if (basePath) {
+ this.basePath = basePath;
+ }
+ }
+ else {
+ if (basePathOrUsername) {
+ this.basePath = basePathOrUsername;
+ }
+ }
+ }
+ set useQuerystring(value) {
+ this._useQuerystring = value;
+ }
+ set basePath(basePath) {
+ this._basePath = basePath;
+ }
+ get basePath() {
+ return this._basePath;
+ }
+ setDefaultAuthentication(auth) {
+ this.authentications.default = auth;
+ }
+ setApiKey(key, value) {
+ this.authentications[NodeV1alpha1ApiApiKeys[key]].apiKey = value;
+ }
+ /**
+ * create a RuntimeClass
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createRuntimeClass(body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/node.k8s.io/v1alpha1/runtimeclasses';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling createRuntimeClass.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'POST',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1alpha1RuntimeClass")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1alpha1RuntimeClass");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete collection of RuntimeClass
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionRuntimeClass(pretty, allowWatchBookmarks, _continue, dryRun, fieldSelector, gracePeriodSeconds, labelSelector, limit, orphanDependents, propagationPolicy, resourceVersion, timeoutSeconds, watch, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/node.k8s.io/v1alpha1/runtimeclasses';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete a RuntimeClass
+ * @param name name of the RuntimeClass
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteRuntimeClass(name, pretty, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/node.k8s.io/v1alpha1/runtimeclasses/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling deleteRuntimeClass.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * get available resources
+ */
+ getAPIResources(options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/node.k8s.io/v1alpha1/';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1APIResourceList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind RuntimeClass
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listRuntimeClass(pretty, allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/node.k8s.io/v1alpha1/runtimeclasses';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1alpha1RuntimeClassList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update the specified RuntimeClass
+ * @param name name of the RuntimeClass
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchRuntimeClass(name, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/node.k8s.io/v1alpha1/runtimeclasses/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchRuntimeClass.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchRuntimeClass.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1alpha1RuntimeClass");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read the specified RuntimeClass
+ * @param name name of the RuntimeClass
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readRuntimeClass(name, pretty, exact, _export, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/node.k8s.io/v1alpha1/runtimeclasses/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readRuntimeClass.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (exact !== undefined) {
+ localVarQueryParameters['exact'] = models_1.ObjectSerializer.serialize(exact, "boolean");
+ }
+ if (_export !== undefined) {
+ localVarQueryParameters['export'] = models_1.ObjectSerializer.serialize(_export, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1alpha1RuntimeClass");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace the specified RuntimeClass
+ * @param name name of the RuntimeClass
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceRuntimeClass(name, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/node.k8s.io/v1alpha1/runtimeclasses/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceRuntimeClass.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceRuntimeClass.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1alpha1RuntimeClass")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1alpha1RuntimeClass");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+}
+exports.NodeV1alpha1Api = NodeV1alpha1Api;
+//# sourceMappingURL=nodeV1alpha1Api.js.map
\ No newline at end of file
diff --git a/dist/gen/api/nodeV1alpha1Api.js.map b/dist/gen/api/nodeV1alpha1Api.js.map
new file mode 100644
index 0000000000..c1b43cee64
--- /dev/null
+++ b/dist/gen/api/nodeV1alpha1Api.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"nodeV1alpha1Api.js","sourceRoot":"","sources":["../../../src/gen/api/nodeV1alpha1Api.ts"],"names":[],"mappings":"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"}
\ No newline at end of file
diff --git a/dist/gen/api/nodeV1beta1Api.d.ts b/dist/gen/api/nodeV1beta1Api.d.ts
new file mode 100644
index 0000000000..bb1761b952
--- /dev/null
+++ b/dist/gen/api/nodeV1beta1Api.d.ts
@@ -0,0 +1,174 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+///
+import http = require('http');
+import { V1APIResourceList } from '../model/v1APIResourceList';
+import { V1DeleteOptions } from '../model/v1DeleteOptions';
+import { V1Status } from '../model/v1Status';
+import { V1beta1RuntimeClass } from '../model/v1beta1RuntimeClass';
+import { V1beta1RuntimeClassList } from '../model/v1beta1RuntimeClassList';
+import { Authentication } from '../model/models';
+import { ApiKeyAuth } from '../model/models';
+export declare enum NodeV1beta1ApiApiKeys {
+ BearerToken = 0
+}
+export declare class NodeV1beta1Api {
+ protected _basePath: string;
+ protected defaultHeaders: any;
+ protected _useQuerystring: boolean;
+ protected authentications: {
+ 'default': Authentication;
+ 'BearerToken': ApiKeyAuth;
+ };
+ constructor(basePath?: string);
+ useQuerystring: boolean;
+ basePath: string;
+ setDefaultAuthentication(auth: Authentication): void;
+ setApiKey(key: NodeV1beta1ApiApiKeys, value: string): void;
+ /**
+ * create a RuntimeClass
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createRuntimeClass(body: V1beta1RuntimeClass, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1RuntimeClass;
+ }>;
+ /**
+ * delete collection of RuntimeClass
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionRuntimeClass(pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, dryRun?: string, fieldSelector?: string, gracePeriodSeconds?: number, labelSelector?: string, limit?: number, orphanDependents?: boolean, propagationPolicy?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete a RuntimeClass
+ * @param name name of the RuntimeClass
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteRuntimeClass(name: string, pretty?: string, dryRun?: string, gracePeriodSeconds?: number, orphanDependents?: boolean, propagationPolicy?: string, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * get available resources
+ */
+ getAPIResources(options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1APIResourceList;
+ }>;
+ /**
+ * list or watch objects of kind RuntimeClass
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listRuntimeClass(pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1RuntimeClassList;
+ }>;
+ /**
+ * partially update the specified RuntimeClass
+ * @param name name of the RuntimeClass
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchRuntimeClass(name: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1RuntimeClass;
+ }>;
+ /**
+ * read the specified RuntimeClass
+ * @param name name of the RuntimeClass
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readRuntimeClass(name: string, pretty?: string, exact?: boolean, _export?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1RuntimeClass;
+ }>;
+ /**
+ * replace the specified RuntimeClass
+ * @param name name of the RuntimeClass
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceRuntimeClass(name: string, body: V1beta1RuntimeClass, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1RuntimeClass;
+ }>;
+}
diff --git a/dist/gen/api/nodeV1beta1Api.js b/dist/gen/api/nodeV1beta1Api.js
new file mode 100644
index 0000000000..01fcb3c315
--- /dev/null
+++ b/dist/gen/api/nodeV1beta1Api.js
@@ -0,0 +1,669 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+const tslib_1 = require("tslib");
+const localVarRequest = require("request");
+const models_1 = require("../model/models");
+const models_2 = require("../model/models");
+let defaultBasePath = 'http://localhost/';
+// ===============================================
+// This file is autogenerated - Please do not edit
+// ===============================================
+var NodeV1beta1ApiApiKeys;
+(function (NodeV1beta1ApiApiKeys) {
+ NodeV1beta1ApiApiKeys[NodeV1beta1ApiApiKeys["BearerToken"] = 0] = "BearerToken";
+})(NodeV1beta1ApiApiKeys = exports.NodeV1beta1ApiApiKeys || (exports.NodeV1beta1ApiApiKeys = {}));
+class NodeV1beta1Api {
+ constructor(basePathOrUsername, password, basePath) {
+ this._basePath = defaultBasePath;
+ this.defaultHeaders = {};
+ this._useQuerystring = false;
+ this.authentications = {
+ 'default': new models_1.VoidAuth(),
+ 'BearerToken': new models_2.ApiKeyAuth('header', 'authorization'),
+ };
+ if (password) {
+ if (basePath) {
+ this.basePath = basePath;
+ }
+ }
+ else {
+ if (basePathOrUsername) {
+ this.basePath = basePathOrUsername;
+ }
+ }
+ }
+ set useQuerystring(value) {
+ this._useQuerystring = value;
+ }
+ set basePath(basePath) {
+ this._basePath = basePath;
+ }
+ get basePath() {
+ return this._basePath;
+ }
+ setDefaultAuthentication(auth) {
+ this.authentications.default = auth;
+ }
+ setApiKey(key, value) {
+ this.authentications[NodeV1beta1ApiApiKeys[key]].apiKey = value;
+ }
+ /**
+ * create a RuntimeClass
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createRuntimeClass(body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/node.k8s.io/v1beta1/runtimeclasses';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling createRuntimeClass.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'POST',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1beta1RuntimeClass")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1RuntimeClass");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete collection of RuntimeClass
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionRuntimeClass(pretty, allowWatchBookmarks, _continue, dryRun, fieldSelector, gracePeriodSeconds, labelSelector, limit, orphanDependents, propagationPolicy, resourceVersion, timeoutSeconds, watch, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/node.k8s.io/v1beta1/runtimeclasses';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete a RuntimeClass
+ * @param name name of the RuntimeClass
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteRuntimeClass(name, pretty, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/node.k8s.io/v1beta1/runtimeclasses/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling deleteRuntimeClass.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * get available resources
+ */
+ getAPIResources(options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/node.k8s.io/v1beta1/';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1APIResourceList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind RuntimeClass
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listRuntimeClass(pretty, allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/node.k8s.io/v1beta1/runtimeclasses';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1RuntimeClassList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update the specified RuntimeClass
+ * @param name name of the RuntimeClass
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchRuntimeClass(name, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/node.k8s.io/v1beta1/runtimeclasses/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchRuntimeClass.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchRuntimeClass.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1RuntimeClass");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read the specified RuntimeClass
+ * @param name name of the RuntimeClass
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readRuntimeClass(name, pretty, exact, _export, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/node.k8s.io/v1beta1/runtimeclasses/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readRuntimeClass.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (exact !== undefined) {
+ localVarQueryParameters['exact'] = models_1.ObjectSerializer.serialize(exact, "boolean");
+ }
+ if (_export !== undefined) {
+ localVarQueryParameters['export'] = models_1.ObjectSerializer.serialize(_export, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1RuntimeClass");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace the specified RuntimeClass
+ * @param name name of the RuntimeClass
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceRuntimeClass(name, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/node.k8s.io/v1beta1/runtimeclasses/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceRuntimeClass.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceRuntimeClass.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1beta1RuntimeClass")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1RuntimeClass");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+}
+exports.NodeV1beta1Api = NodeV1beta1Api;
+//# sourceMappingURL=nodeV1beta1Api.js.map
\ No newline at end of file
diff --git a/dist/gen/api/nodeV1beta1Api.js.map b/dist/gen/api/nodeV1beta1Api.js.map
new file mode 100644
index 0000000000..18e9ee35a5
--- /dev/null
+++ b/dist/gen/api/nodeV1beta1Api.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"nodeV1beta1Api.js","sourceRoot":"","sources":["../../../src/gen/api/nodeV1beta1Api.ts"],"names":[],"mappings":"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"}
\ No newline at end of file
diff --git a/dist/gen/api/policyApi.d.ts b/dist/gen/api/policyApi.d.ts
new file mode 100644
index 0000000000..487f913047
--- /dev/null
+++ b/dist/gen/api/policyApi.d.ts
@@ -0,0 +1,44 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+///
+import http = require('http');
+import { V1APIGroup } from '../model/v1APIGroup';
+import { Authentication } from '../model/models';
+import { ApiKeyAuth } from '../model/models';
+export declare enum PolicyApiApiKeys {
+ BearerToken = 0
+}
+export declare class PolicyApi {
+ protected _basePath: string;
+ protected defaultHeaders: any;
+ protected _useQuerystring: boolean;
+ protected authentications: {
+ 'default': Authentication;
+ 'BearerToken': ApiKeyAuth;
+ };
+ constructor(basePath?: string);
+ useQuerystring: boolean;
+ basePath: string;
+ setDefaultAuthentication(auth: Authentication): void;
+ setApiKey(key: PolicyApiApiKeys, value: string): void;
+ /**
+ * get information of a group
+ */
+ getAPIGroup(options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1APIGroup;
+ }>;
+}
diff --git a/dist/gen/api/policyApi.js b/dist/gen/api/policyApi.js
new file mode 100644
index 0000000000..faee3300d2
--- /dev/null
+++ b/dist/gen/api/policyApi.js
@@ -0,0 +1,113 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+const tslib_1 = require("tslib");
+const localVarRequest = require("request");
+const models_1 = require("../model/models");
+const models_2 = require("../model/models");
+let defaultBasePath = 'http://localhost/';
+// ===============================================
+// This file is autogenerated - Please do not edit
+// ===============================================
+var PolicyApiApiKeys;
+(function (PolicyApiApiKeys) {
+ PolicyApiApiKeys[PolicyApiApiKeys["BearerToken"] = 0] = "BearerToken";
+})(PolicyApiApiKeys = exports.PolicyApiApiKeys || (exports.PolicyApiApiKeys = {}));
+class PolicyApi {
+ constructor(basePathOrUsername, password, basePath) {
+ this._basePath = defaultBasePath;
+ this.defaultHeaders = {};
+ this._useQuerystring = false;
+ this.authentications = {
+ 'default': new models_1.VoidAuth(),
+ 'BearerToken': new models_2.ApiKeyAuth('header', 'authorization'),
+ };
+ if (password) {
+ if (basePath) {
+ this.basePath = basePath;
+ }
+ }
+ else {
+ if (basePathOrUsername) {
+ this.basePath = basePathOrUsername;
+ }
+ }
+ }
+ set useQuerystring(value) {
+ this._useQuerystring = value;
+ }
+ set basePath(basePath) {
+ this._basePath = basePath;
+ }
+ get basePath() {
+ return this._basePath;
+ }
+ setDefaultAuthentication(auth) {
+ this.authentications.default = auth;
+ }
+ setApiKey(key, value) {
+ this.authentications[PolicyApiApiKeys[key]].apiKey = value;
+ }
+ /**
+ * get information of a group
+ */
+ getAPIGroup(options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/policy/';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1APIGroup");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+}
+exports.PolicyApi = PolicyApi;
+//# sourceMappingURL=policyApi.js.map
\ No newline at end of file
diff --git a/dist/gen/api/policyApi.js.map b/dist/gen/api/policyApi.js.map
new file mode 100644
index 0000000000..6fe2ddabfe
--- /dev/null
+++ b/dist/gen/api/policyApi.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"policyApi.js","sourceRoot":"","sources":["../../../src/gen/api/policyApi.ts"],"names":[],"mappings":"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"}
\ No newline at end of file
diff --git a/dist/gen/api/policyV1beta1Api.d.ts b/dist/gen/api/policyV1beta1Api.d.ts
new file mode 100644
index 0000000000..9d9a3891a4
--- /dev/null
+++ b/dist/gen/api/policyV1beta1Api.d.ts
@@ -0,0 +1,378 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+///
+import http = require('http');
+import { PolicyV1beta1PodSecurityPolicy } from '../model/policyV1beta1PodSecurityPolicy';
+import { PolicyV1beta1PodSecurityPolicyList } from '../model/policyV1beta1PodSecurityPolicyList';
+import { V1APIResourceList } from '../model/v1APIResourceList';
+import { V1DeleteOptions } from '../model/v1DeleteOptions';
+import { V1Status } from '../model/v1Status';
+import { V1beta1PodDisruptionBudget } from '../model/v1beta1PodDisruptionBudget';
+import { V1beta1PodDisruptionBudgetList } from '../model/v1beta1PodDisruptionBudgetList';
+import { Authentication } from '../model/models';
+import { ApiKeyAuth } from '../model/models';
+export declare enum PolicyV1beta1ApiApiKeys {
+ BearerToken = 0
+}
+export declare class PolicyV1beta1Api {
+ protected _basePath: string;
+ protected defaultHeaders: any;
+ protected _useQuerystring: boolean;
+ protected authentications: {
+ 'default': Authentication;
+ 'BearerToken': ApiKeyAuth;
+ };
+ constructor(basePath?: string);
+ useQuerystring: boolean;
+ basePath: string;
+ setDefaultAuthentication(auth: Authentication): void;
+ setApiKey(key: PolicyV1beta1ApiApiKeys, value: string): void;
+ /**
+ * create a PodDisruptionBudget
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createNamespacedPodDisruptionBudget(namespace: string, body: V1beta1PodDisruptionBudget, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1PodDisruptionBudget;
+ }>;
+ /**
+ * create a PodSecurityPolicy
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createPodSecurityPolicy(body: PolicyV1beta1PodSecurityPolicy, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: PolicyV1beta1PodSecurityPolicy;
+ }>;
+ /**
+ * delete collection of PodDisruptionBudget
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionNamespacedPodDisruptionBudget(namespace: string, pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, dryRun?: string, fieldSelector?: string, gracePeriodSeconds?: number, labelSelector?: string, limit?: number, orphanDependents?: boolean, propagationPolicy?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete collection of PodSecurityPolicy
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionPodSecurityPolicy(pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, dryRun?: string, fieldSelector?: string, gracePeriodSeconds?: number, labelSelector?: string, limit?: number, orphanDependents?: boolean, propagationPolicy?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete a PodDisruptionBudget
+ * @param name name of the PodDisruptionBudget
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteNamespacedPodDisruptionBudget(name: string, namespace: string, pretty?: string, dryRun?: string, gracePeriodSeconds?: number, orphanDependents?: boolean, propagationPolicy?: string, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete a PodSecurityPolicy
+ * @param name name of the PodSecurityPolicy
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deletePodSecurityPolicy(name: string, pretty?: string, dryRun?: string, gracePeriodSeconds?: number, orphanDependents?: boolean, propagationPolicy?: string, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * get available resources
+ */
+ getAPIResources(options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1APIResourceList;
+ }>;
+ /**
+ * list or watch objects of kind PodDisruptionBudget
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listNamespacedPodDisruptionBudget(namespace: string, pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1PodDisruptionBudgetList;
+ }>;
+ /**
+ * list or watch objects of kind PodDisruptionBudget
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listPodDisruptionBudgetForAllNamespaces(allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, pretty?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1PodDisruptionBudgetList;
+ }>;
+ /**
+ * list or watch objects of kind PodSecurityPolicy
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listPodSecurityPolicy(pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: PolicyV1beta1PodSecurityPolicyList;
+ }>;
+ /**
+ * partially update the specified PodDisruptionBudget
+ * @param name name of the PodDisruptionBudget
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedPodDisruptionBudget(name: string, namespace: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1PodDisruptionBudget;
+ }>;
+ /**
+ * partially update status of the specified PodDisruptionBudget
+ * @param name name of the PodDisruptionBudget
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedPodDisruptionBudgetStatus(name: string, namespace: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1PodDisruptionBudget;
+ }>;
+ /**
+ * partially update the specified PodSecurityPolicy
+ * @param name name of the PodSecurityPolicy
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchPodSecurityPolicy(name: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: PolicyV1beta1PodSecurityPolicy;
+ }>;
+ /**
+ * read the specified PodDisruptionBudget
+ * @param name name of the PodDisruptionBudget
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readNamespacedPodDisruptionBudget(name: string, namespace: string, pretty?: string, exact?: boolean, _export?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1PodDisruptionBudget;
+ }>;
+ /**
+ * read status of the specified PodDisruptionBudget
+ * @param name name of the PodDisruptionBudget
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readNamespacedPodDisruptionBudgetStatus(name: string, namespace: string, pretty?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1PodDisruptionBudget;
+ }>;
+ /**
+ * read the specified PodSecurityPolicy
+ * @param name name of the PodSecurityPolicy
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readPodSecurityPolicy(name: string, pretty?: string, exact?: boolean, _export?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: PolicyV1beta1PodSecurityPolicy;
+ }>;
+ /**
+ * replace the specified PodDisruptionBudget
+ * @param name name of the PodDisruptionBudget
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedPodDisruptionBudget(name: string, namespace: string, body: V1beta1PodDisruptionBudget, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1PodDisruptionBudget;
+ }>;
+ /**
+ * replace status of the specified PodDisruptionBudget
+ * @param name name of the PodDisruptionBudget
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedPodDisruptionBudgetStatus(name: string, namespace: string, body: V1beta1PodDisruptionBudget, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1PodDisruptionBudget;
+ }>;
+ /**
+ * replace the specified PodSecurityPolicy
+ * @param name name of the PodSecurityPolicy
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replacePodSecurityPolicy(name: string, body: PolicyV1beta1PodSecurityPolicy, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: PolicyV1beta1PodSecurityPolicy;
+ }>;
+}
diff --git a/dist/gen/api/policyV1beta1Api.js b/dist/gen/api/policyV1beta1Api.js
new file mode 100644
index 0000000000..5f25847e83
--- /dev/null
+++ b/dist/gen/api/policyV1beta1Api.js
@@ -0,0 +1,1583 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+const tslib_1 = require("tslib");
+const localVarRequest = require("request");
+const models_1 = require("../model/models");
+const models_2 = require("../model/models");
+let defaultBasePath = 'http://localhost/';
+// ===============================================
+// This file is autogenerated - Please do not edit
+// ===============================================
+var PolicyV1beta1ApiApiKeys;
+(function (PolicyV1beta1ApiApiKeys) {
+ PolicyV1beta1ApiApiKeys[PolicyV1beta1ApiApiKeys["BearerToken"] = 0] = "BearerToken";
+})(PolicyV1beta1ApiApiKeys = exports.PolicyV1beta1ApiApiKeys || (exports.PolicyV1beta1ApiApiKeys = {}));
+class PolicyV1beta1Api {
+ constructor(basePathOrUsername, password, basePath) {
+ this._basePath = defaultBasePath;
+ this.defaultHeaders = {};
+ this._useQuerystring = false;
+ this.authentications = {
+ 'default': new models_1.VoidAuth(),
+ 'BearerToken': new models_2.ApiKeyAuth('header', 'authorization'),
+ };
+ if (password) {
+ if (basePath) {
+ this.basePath = basePath;
+ }
+ }
+ else {
+ if (basePathOrUsername) {
+ this.basePath = basePathOrUsername;
+ }
+ }
+ }
+ set useQuerystring(value) {
+ this._useQuerystring = value;
+ }
+ set basePath(basePath) {
+ this._basePath = basePath;
+ }
+ get basePath() {
+ return this._basePath;
+ }
+ setDefaultAuthentication(auth) {
+ this.authentications.default = auth;
+ }
+ setApiKey(key, value) {
+ this.authentications[PolicyV1beta1ApiApiKeys[key]].apiKey = value;
+ }
+ /**
+ * create a PodDisruptionBudget
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createNamespacedPodDisruptionBudget(namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/policy/v1beta1/namespaces/{namespace}/poddisruptionbudgets'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling createNamespacedPodDisruptionBudget.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling createNamespacedPodDisruptionBudget.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'POST',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1beta1PodDisruptionBudget")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1PodDisruptionBudget");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * create a PodSecurityPolicy
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createPodSecurityPolicy(body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/policy/v1beta1/podsecuritypolicies';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling createPodSecurityPolicy.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'POST',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "PolicyV1beta1PodSecurityPolicy")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "PolicyV1beta1PodSecurityPolicy");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete collection of PodDisruptionBudget
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionNamespacedPodDisruptionBudget(namespace, pretty, allowWatchBookmarks, _continue, dryRun, fieldSelector, gracePeriodSeconds, labelSelector, limit, orphanDependents, propagationPolicy, resourceVersion, timeoutSeconds, watch, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/policy/v1beta1/namespaces/{namespace}/poddisruptionbudgets'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling deleteCollectionNamespacedPodDisruptionBudget.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete collection of PodSecurityPolicy
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionPodSecurityPolicy(pretty, allowWatchBookmarks, _continue, dryRun, fieldSelector, gracePeriodSeconds, labelSelector, limit, orphanDependents, propagationPolicy, resourceVersion, timeoutSeconds, watch, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/policy/v1beta1/podsecuritypolicies';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete a PodDisruptionBudget
+ * @param name name of the PodDisruptionBudget
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteNamespacedPodDisruptionBudget(name, namespace, pretty, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/policy/v1beta1/namespaces/{namespace}/poddisruptionbudgets/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling deleteNamespacedPodDisruptionBudget.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling deleteNamespacedPodDisruptionBudget.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete a PodSecurityPolicy
+ * @param name name of the PodSecurityPolicy
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deletePodSecurityPolicy(name, pretty, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/policy/v1beta1/podsecuritypolicies/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling deletePodSecurityPolicy.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * get available resources
+ */
+ getAPIResources(options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/policy/v1beta1/';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1APIResourceList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind PodDisruptionBudget
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listNamespacedPodDisruptionBudget(namespace, pretty, allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/policy/v1beta1/namespaces/{namespace}/poddisruptionbudgets'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling listNamespacedPodDisruptionBudget.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1PodDisruptionBudgetList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind PodDisruptionBudget
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listPodDisruptionBudgetForAllNamespaces(allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, pretty, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/policy/v1beta1/poddisruptionbudgets';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1PodDisruptionBudgetList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind PodSecurityPolicy
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listPodSecurityPolicy(pretty, allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/policy/v1beta1/podsecuritypolicies';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "PolicyV1beta1PodSecurityPolicyList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update the specified PodDisruptionBudget
+ * @param name name of the PodDisruptionBudget
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedPodDisruptionBudget(name, namespace, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/policy/v1beta1/namespaces/{namespace}/poddisruptionbudgets/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchNamespacedPodDisruptionBudget.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling patchNamespacedPodDisruptionBudget.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchNamespacedPodDisruptionBudget.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1PodDisruptionBudget");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update status of the specified PodDisruptionBudget
+ * @param name name of the PodDisruptionBudget
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedPodDisruptionBudgetStatus(name, namespace, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/policy/v1beta1/namespaces/{namespace}/poddisruptionbudgets/{name}/status'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchNamespacedPodDisruptionBudgetStatus.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling patchNamespacedPodDisruptionBudgetStatus.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchNamespacedPodDisruptionBudgetStatus.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1PodDisruptionBudget");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update the specified PodSecurityPolicy
+ * @param name name of the PodSecurityPolicy
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchPodSecurityPolicy(name, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/policy/v1beta1/podsecuritypolicies/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchPodSecurityPolicy.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchPodSecurityPolicy.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "PolicyV1beta1PodSecurityPolicy");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read the specified PodDisruptionBudget
+ * @param name name of the PodDisruptionBudget
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readNamespacedPodDisruptionBudget(name, namespace, pretty, exact, _export, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/policy/v1beta1/namespaces/{namespace}/poddisruptionbudgets/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readNamespacedPodDisruptionBudget.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling readNamespacedPodDisruptionBudget.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (exact !== undefined) {
+ localVarQueryParameters['exact'] = models_1.ObjectSerializer.serialize(exact, "boolean");
+ }
+ if (_export !== undefined) {
+ localVarQueryParameters['export'] = models_1.ObjectSerializer.serialize(_export, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1PodDisruptionBudget");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read status of the specified PodDisruptionBudget
+ * @param name name of the PodDisruptionBudget
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readNamespacedPodDisruptionBudgetStatus(name, namespace, pretty, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/policy/v1beta1/namespaces/{namespace}/poddisruptionbudgets/{name}/status'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readNamespacedPodDisruptionBudgetStatus.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling readNamespacedPodDisruptionBudgetStatus.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1PodDisruptionBudget");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read the specified PodSecurityPolicy
+ * @param name name of the PodSecurityPolicy
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readPodSecurityPolicy(name, pretty, exact, _export, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/policy/v1beta1/podsecuritypolicies/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readPodSecurityPolicy.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (exact !== undefined) {
+ localVarQueryParameters['exact'] = models_1.ObjectSerializer.serialize(exact, "boolean");
+ }
+ if (_export !== undefined) {
+ localVarQueryParameters['export'] = models_1.ObjectSerializer.serialize(_export, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "PolicyV1beta1PodSecurityPolicy");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace the specified PodDisruptionBudget
+ * @param name name of the PodDisruptionBudget
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedPodDisruptionBudget(name, namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/policy/v1beta1/namespaces/{namespace}/poddisruptionbudgets/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceNamespacedPodDisruptionBudget.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling replaceNamespacedPodDisruptionBudget.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceNamespacedPodDisruptionBudget.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1beta1PodDisruptionBudget")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1PodDisruptionBudget");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace status of the specified PodDisruptionBudget
+ * @param name name of the PodDisruptionBudget
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedPodDisruptionBudgetStatus(name, namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/policy/v1beta1/namespaces/{namespace}/poddisruptionbudgets/{name}/status'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceNamespacedPodDisruptionBudgetStatus.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling replaceNamespacedPodDisruptionBudgetStatus.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceNamespacedPodDisruptionBudgetStatus.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1beta1PodDisruptionBudget")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1PodDisruptionBudget");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace the specified PodSecurityPolicy
+ * @param name name of the PodSecurityPolicy
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replacePodSecurityPolicy(name, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/policy/v1beta1/podsecuritypolicies/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replacePodSecurityPolicy.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replacePodSecurityPolicy.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "PolicyV1beta1PodSecurityPolicy")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "PolicyV1beta1PodSecurityPolicy");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+}
+exports.PolicyV1beta1Api = PolicyV1beta1Api;
+//# sourceMappingURL=policyV1beta1Api.js.map
\ No newline at end of file
diff --git a/dist/gen/api/policyV1beta1Api.js.map b/dist/gen/api/policyV1beta1Api.js.map
new file mode 100644
index 0000000000..78325dd49b
--- /dev/null
+++ b/dist/gen/api/policyV1beta1Api.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"policyV1beta1Api.js","sourceRoot":"","sources":["../../../src/gen/api/policyV1beta1Api.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;;AAEH,2CAA4C;AAY5C,4CAA6E;AAC7E,4CAA6C;AAE7C,IAAI,eAAe,GAAG,kBAAkB,CAAC;AAEzC,kDAAkD;AAClD,kDAAkD;AAClD,kDAAkD;AAElD,IAAY,uBAEX;AAFD,WAAY,uBAAuB;IAC/B,mFAAW,CAAA;AACf,CAAC,EAFW,uBAAuB,GAAvB,+BAAuB,KAAvB,+BAAuB,QAElC;AAED,MAAa,gBAAgB;IAWzB,YAAY,kBAA0B,EAAE,QAAiB,EAAE,QAAiB;QAVlE,cAAS,GAAG,eAAe,CAAC;QAC5B,mBAAc,GAAS,EAAE,CAAC;QAC1B,oBAAe,GAAa,KAAK,CAAC;QAElC,oBAAe,GAAG;YACxB,SAAS,EAAkB,IAAI,iBAAQ,EAAE;YACzC,aAAa,EAAE,IAAI,mBAAU,CAAC,QAAQ,EAAE,eAAe,CAAC;SAC3D,CAAA;QAIG,IAAI,QAAQ,EAAE;YACV,IAAI,QAAQ,EAAE;gBACV,IAAI,CAAC,QAAQ,GAAG,QAAQ,CAAC;aAC5B;SACJ;aAAM;YACH,IAAI,kBAAkB,EAAE;gBACpB,IAAI,CAAC,QAAQ,GAAG,kBAAkB,CAAA;aACrC;SACJ;IACL,CAAC;IAED,IAAI,cAAc,CAAC,KAAc;QAC7B,IAAI,CAAC,eAAe,GAAG,KAAK,CAAC;IACjC,CAAC;IAED,IAAI,QAAQ,CAAC,QAAgB;QACzB,IAAI,CAAC,SAAS,GAAG,QAAQ,CAAC;IAC9B,CAAC;IAED,IAAI,QAAQ;QACR,OAAO,IAAI,CAAC,SAAS,CAAC;IAC1B,CAAC;IAEM,wBAAwB,CAAC,IAAoB;QAChD,IAAI,CAAC,eAAe,CAAC,OAAO,GAAG,IAAI,CAAC;IACxC,CAAC;IAEM,SAAS,CAAC,GAA4B,EAAE,KAAa;QACvD,IAAI,CAAC,eAAuB,CAAC,uBAAuB,CAAC,GAAG,CAAC,CAAC,CAAC,MAAM,GAAG,KAAK,CAAC;IAC/E,CAAC;IAED;;;;;;;OAOG;IACU,mCAAmC,CAAE,SAAiB,EAAE,IAAgC,EAAE,MAAe,EAAE,MAAe,EAAE,YAAqB,EAAE,UAA+C,EAAC,OAAO,EAAE,EAAE,EAAC;;YACxN,MAAM,YAAY,GAAG,IAAI,CAAC,QAAQ,GAAG,kEAAkE;iBAClG,OAAO,CAAC,GAAG,GAAG,WAAW,GAAG,GAAG,EAAE,kBAAkB,CAAC,MAAM,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC;YAC7E,IAAI,uBAAuB,GAAQ,EAAE,CAAC;YACtC,IAAI,oBAAoB,GAAc,MAAO,CAAC,MAAM,CAAC,EAAE,EAAE,IAAI,CAAC,cAAc,CAAC,CAAC;YAC9E,IAAI,kBAAkB,GAAQ,EAAE,CAAC;YAEjC,iEAAiE;YACjE,IAAI,SAAS,KAAK,IAAI,IAAI,SAAS,KAAK,SAAS,EAAE;gBAC/C,MAAM,IAAI,KAAK,CAAC,sGAAsG,CAAC,CAAC;aAC3H;YAED,4DAA4D;YAC5D,IAAI,IAAI,KAAK,IAAI,IAAI,IAAI,KAAK,SAAS,EAAE;gBACrC,MAAM,IAAI,KAAK,CAAC,iGAAiG,CAAC,CAAC;aACtH;YAED,IAAI,MAAM,KAAK,SAAS,EAAE;gBACtB,uBAAuB,CAAC,QAAQ,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;aACpF;YAED,IAAI,MAAM,KAAK,SAAS,EAAE;gBACtB,uBAAuB,CAAC,QAAQ,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;aACpF;YAED,IAAI,YAAY,KAAK,SAAS,EAAE;gBAC5B,uBAAuB,CAAC,cAAc,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,YAAY,EAAE,QAAQ,CAAC,CAAC;aAChG;YAEK,MAAO,CAAC,MAAM,CAAC,oBAAoB,EAAE,OAAO,CAAC,OAAO,CAAC,CAAC;YAE5D,IAAI,mBAAmB,GAAG,KAAK,CAAC;YAEhC,IAAI,sBAAsB,GAA4B;gBAClD,MAAM,EAAE,MAAM;gBACd,EAAE,EAAE,uBAAuB;gBAC3B,OAAO,EAAE,oBAAoB;gBAC7B,GAAG,EAAE,YAAY;gBACjB,cAAc,EAAE,IAAI,CAAC,eAAe;gBACpC,IAAI,EAAE,IAAI;gBACV,IAAI,EAAE,yBAAgB,CAAC,SAAS,CAAC,IAAI,EAAE,4BAA4B,CAAC;aACvE,CAAC;YAEF,IAAI,qBAAqB,GAAG,OAAO,CAAC,OAAO,EAAE,CAAC;YAC9C,qBAAqB,GAAG,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,eAAe,CAAC,WAAW,CAAC,cAAc,CAAC,sBAAsB,CAAC,CAAC,CAAC;YAElI,qBAAqB,GAAG,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,eAAe,CAAC,OAAO,CAAC,cAAc,CAAC,sBAAsB,CAAC,CAAC,CAAC;YAC9H,OAAO,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE;gBACnC,IAAI,MAAM,CAAC,IAAI,CAAC,kBAAkB,CAAC,CAAC,MAAM,EAAE;oBACxC,IAAI,mBAAmB,EAAE;wBACf,sBAAuB,CAAC,QAAQ,GAAG,kBAAkB,CAAC;qBAC/D;yBAAM;wBACH,sBAAsB,CAAC,IAAI,GAAG,kBAAkB,CAAC;qBACpD;iBACJ;gBACD,OAAO,IAAI,OAAO,CAAyE,CAAC,OAAO,EAAE,MAAM,EAAE,EAAE;oBAC3G,eAAe,CAAC,sBAAsB,EAAE,CAAC,KAAK,EAAE,QAAQ,EAAE,IAAI,EAAE,EAAE;wBAC9D,IAAI,KAAK,EAAE;4BACP,MAAM,CAAC,KAAK,CAAC,CAAC;yBACjB;6BAAM;4BACH,IAAI,GAAG,yBAAgB,CAAC,WAAW,CAAC,IAAI,EAAE,4BAA4B,CAAC,CAAC;4BACxE,IAAI,QAAQ,CAAC,UAAU,IAAI,QAAQ,CAAC,UAAU,IAAI,GAAG,IAAI,QAAQ,CAAC,UAAU,IAAI,GAAG,EAAE;gCACjF,OAAO,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;6BAC/C;iCAAM;gCACH,MAAM,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;6BAC9C;yBACJ;oBACL,CAAC,CAAC,CAAC;gBACP,CAAC,CAAC,CAAC;YACP,CAAC,CAAC,CAAC;QACP,CAAC;KAAA;IACD;;;;;;OAMG;IACU,uBAAuB,CAAE,IAAoC,EAAE,MAAe,EAAE,MAAe,EAAE,YAAqB,EAAE,UAA+C,EAAC,OAAO,EAAE,EAAE,EAAC;;YAC7L,MAAM,YAAY,GAAG,IAAI,CAAC,QAAQ,GAAG,0CAA0C,CAAC;YAChF,IAAI,uBAAuB,GAAQ,EAAE,CAAC;YACtC,IAAI,oBAAoB,GAAc,MAAO,CAAC,MAAM,CAAC,EAAE,EAAE,IAAI,CAAC,cAAc,CAAC,CAAC;YAC9E,IAAI,kBAAkB,GAAQ,EAAE,CAAC;YAEjC,4DAA4D;YAC5D,IAAI,IAAI,KAAK,IAAI,IAAI,IAAI,KAAK,SAAS,EAAE;gBACrC,MAAM,IAAI,KAAK,CAAC,qFAAqF,CAAC,CAAC;aAC1G;YAED,IAAI,MAAM,KAAK,SAAS,EAAE;gBACtB,uBAAuB,CAAC,QAAQ,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;aACpF;YAED,IAAI,MAAM,KAAK,SAAS,EAAE;gBACtB,uBAAuB,CAAC,QAAQ,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;aACpF;YAED,IAAI,YAAY,KAAK,SAAS,EAAE;gBAC5B,uBAAuB,CAAC,cAAc,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,YAAY,EAAE,QAAQ,CAAC,CAAC;aAChG;YAEK,MAAO,CAAC,MAAM,CAAC,oBAAoB,EAAE,OAAO,CAAC,OAAO,CAAC,CAAC;YAE5D,IAAI,mBAAmB,GAAG,KAAK,CAAC;YAEhC,IAAI,sBAAsB,GAA4B;gBAClD,MAAM,EAAE,MAAM;gBACd,EAAE,EAAE,uBAAuB;gBAC3B,OAAO,EAAE,oBAAoB;gBAC7B,GAAG,EAAE,YAAY;gBACjB,cAAc,EAAE,IAAI,CAAC,eAAe;gBACpC,IAAI,EAAE,IAAI;gBACV,IAAI,EAAE,yBAAgB,CAAC,SAAS,CAAC,IAAI,EAAE,gCAAgC,CAAC;aAC3E,CAAC;YAEF,IAAI,qBAAqB,GAAG,OAAO,CAAC,OAAO,EAAE,CAAC;YAC9C,qBAAqB,GAAG,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,eAAe,CAAC,WAAW,CAAC,cAAc,CAAC,sBAAsB,CAAC,CAAC,CAAC;YAElI,qBAAqB,GAAG,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,eAAe,CAAC,OAAO,CAAC,cAAc,CAAC,sBAAsB,CAAC,CAAC,CAAC;YAC9H,OAAO,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE;gBACnC,IAAI,MAAM,CAAC,IAAI,CAAC,kBAAkB,CAAC,CAAC,MAAM,EAAE;oBACxC,IAAI,mBAAmB,EAAE;wBACf,sBAAuB,CAAC,QAAQ,GAAG,kBAAkB,CAAC;qBAC/D;yBAAM;wBACH,sBAAsB,CAAC,IAAI,GAAG,kBAAkB,CAAC;qBACpD;iBACJ;gBACD,OAAO,IAAI,OAAO,CAA6E,CAAC,OAAO,EAAE,MAAM,EAAE,EAAE;oBAC/G,eAAe,CAAC,sBAAsB,EAAE,CAAC,KAAK,EAAE,QAAQ,EAAE,IAAI,EAAE,EAAE;wBAC9D,IAAI,KAAK,EAAE;4BACP,MAAM,CAAC,KAAK,CAAC,CAAC;yBACjB;6BAAM;4BACH,IAAI,GAAG,yBAAgB,CAAC,WAAW,CAAC,IAAI,EAAE,gCAAgC,CAAC,CAAC;4BAC5E,IAAI,QAAQ,CAAC,UAAU,IAAI,QAAQ,CAAC,UAAU,IAAI,GAAG,IAAI,QAAQ,CAAC,UAAU,IAAI,GAAG,EAAE;gCACjF,OAAO,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;6BAC/C;iCAAM;gCACH,MAAM,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;6BAC9C;yBACJ;oBACL,CAAC,CAAC,CAAC;gBACP,CAAC,CAAC,CAAC;YACP,CAAC,CAAC,CAAC;QACP,CAAC;KAAA;IACD;;;;;;;;;;;;;;;;;OAiBG;IACU,6CAA6C,CAAE,SAAiB,EAAE,MAAe,EAAE,mBAA6B,EAAE,SAAkB,EAAE,MAAe,EAAE,aAAsB,EAAE,kBAA2B,EAAE,aAAsB,EAAE,KAAc,EAAE,gBAA0B,EAAE,iBAA0B,EAAE,eAAwB,EAAE,cAAuB,EAAE,KAAe,EAAE,IAAsB,EAAE,UAA+C,EAAC,OAAO,EAAE,EAAE,EAAC;;YAC7c,MAAM,YAAY,GAAG,IAAI,CAAC,QAAQ,GAAG,kEAAkE;iBAClG,OAAO,CAAC,GAAG,GAAG,WAAW,GAAG,GAAG,EAAE,kBAAkB,CAAC,MAAM,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC;YAC7E,IAAI,uBAAuB,GAAQ,EAAE,CAAC;YACtC,IAAI,oBAAoB,GAAc,MAAO,CAAC,MAAM,CAAC,EAAE,EAAE,IAAI,CAAC,cAAc,CAAC,CAAC;YAC9E,IAAI,kBAAkB,GAAQ,EAAE,CAAC;YAEjC,iEAAiE;YACjE,IAAI,SAAS,KAAK,IAAI,IAAI,SAAS,KAAK,SAAS,EAAE;gBAC/C,MAAM,IAAI,KAAK,CAAC,gHAAgH,CAAC,CAAC;aACrI;YAED,IAAI,MAAM,KAAK,SAAS,EAAE;gBACtB,uBAAuB,CAAC,QAAQ,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;aACpF;YAED,IAAI,mBAAmB,KAAK,SAAS,EAAE;gBACnC,uBAAuB,CAAC,qBAAqB,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,mBAAmB,EAAE,SAAS,CAAC,CAAC;aAC/G;YAED,IAAI,SAAS,KAAK,SAAS,EAAE;gBACzB,uBAAuB,CAAC,UAAU,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,SAAS,EAAE,QAAQ,CAAC,CAAC;aACzF;YAED,IAAI,MAAM,KAAK,SAAS,EAAE;gBACtB,uBAAuB,CAAC,QAAQ,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;aACpF;YAED,IAAI,aAAa,KAAK,SAAS,EAAE;gBAC7B,uBAAuB,CAAC,eAAe,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,aAAa,EAAE,QAAQ,CAAC,CAAC;aAClG;YAED,IAAI,kBAAkB,KAAK,SAAS,EAAE;gBAClC,uBAAuB,CAAC,oBAAoB,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,kBAAkB,EAAE,QAAQ,CAAC,CAAC;aAC5G;YAED,IAAI,aAAa,KAAK,SAAS,EAAE;gBAC7B,uBAAuB,CAAC,eAAe,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,aAAa,EAAE,QAAQ,CAAC,CAAC;aAClG;YAED,IAAI,KAAK,KAAK,SAAS,EAAE;gBACrB,uBAAuB,CAAC,OAAO,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,KAAK,EAAE,QAAQ,CAAC,CAAC;aAClF;YAED,IAAI,gBAAgB,KAAK,SAAS,EAAE;gBAChC,uBAAuB,CAAC,kBAAkB,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,gBAAgB,EAAE,SAAS,CAAC,CAAC;aACzG;YAED,IAAI,iBAAiB,KAAK,SAAS,EAAE;gBACjC,uBAAuB,CAAC,mBAAmB,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,iBAAiB,EAAE,QAAQ,CAAC,CAAC;aAC1G;YAED,IAAI,eAAe,KAAK,SAAS,EAAE;gBAC/B,uBAAuB,CAAC,iBAAiB,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,eAAe,EAAE,QAAQ,CAAC,CAAC;aACtG;YAED,IAAI,cAAc,KAAK,SAAS,EAAE;gBAC9B,uBAAuB,CAAC,gBAAgB,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,cAAc,EAAE,QAAQ,CAAC,CAAC;aACpG;YAED,IAAI,KAAK,KAAK,SAAS,EAAE;gBACrB,uBAAuB,CAAC,OAAO,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,KAAK,EAAE,SAAS,CAAC,CAAC;aACnF;YAEK,MAAO,CAAC,MAAM,CAAC,oBAAoB,EAAE,OAAO,CAAC,OAAO,CAAC,CAAC;YAE5D,IAAI,mBAAmB,GAAG,KAAK,CAAC;YAEhC,IAAI,sBAAsB,GAA4B;gBAClD,MAAM,EAAE,QAAQ;gBAChB,EAAE,EAAE,uBAAuB;gBAC3B,OAAO,EAAE,oBAAoB;gBAC7B,GAAG,EAAE,YAAY;gBACjB,cAAc,EAAE,IAAI,CAAC,eAAe;gBACpC,IAAI,EAAE,IAAI;gBACV,IAAI,EAAE,yBAAgB,CAAC,SAAS,CAAC,IAAI,EAAE,iBAAiB,CAAC;aAC5D,CAAC;YAEF,IAAI,qBAAqB,GAAG,OAAO,CAAC,OAAO,EAAE,CAAC;YAC9C,qBAAqB,GAAG,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,eAAe,CAAC,WAAW,CAAC,cAAc,CAAC,sBAAsB,CAAC,CAAC,CAAC;YAElI,qBAAqB,GAAG,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,eAAe,CAAC,OAAO,CAAC,cAAc,CAAC,sBAAsB,CAAC,CAAC,CAAC;YAC9H,OAAO,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE;gBACnC,IAAI,MAAM,CAAC,IAAI,CAAC,kBAAkB,CAAC,CAAC,MAAM,EAAE;oBACxC,IAAI,mBAAmB,EAAE;wBACf,sBAAuB,CAAC,QAAQ,GAAG,kBAAkB,CAAC;qBAC/D;yBAAM;wBACH,sBAAsB,CAAC,IAAI,GAAG,kBAAkB,CAAC;qBACpD;iBACJ;gBACD,OAAO,IAAI,OAAO,CAAuD,CAAC,OAAO,EAAE,MAAM,EAAE,EAAE;oBACzF,eAAe,CAAC,sBAAsB,EAAE,CAAC,KAAK,EAAE,QAAQ,EAAE,IAAI,EAAE,EAAE;wBAC9D,IAAI,KAAK,EAAE;4BACP,MAAM,CAAC,KAAK,CAAC,CAAC;yBACjB;6BAAM;4BACH,IAAI,GAAG,yBAAgB,CAAC,WAAW,CAAC,IAAI,EAAE,UAAU,CAAC,CAAC;4BACtD,IAAI,QAAQ,CAAC,UAAU,IAAI,QAAQ,CAAC,UAAU,IAAI,GAAG,IAAI,QAAQ,CAAC,UAAU,IAAI,GAAG,EAAE;gCACjF,OAAO,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;6BAC/C;iCAAM;gCACH,MAAM,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;6BAC9C;yBACJ;oBACL,CAAC,CAAC,CAAC;gBACP,CAAC,CAAC,CAAC;YACP,CAAC,CAAC,CAAC;QACP,CAAC;KAAA;IACD;;;;;;;;;;;;;;;;OAgBG;IACU,iCAAiC,CAAE,MAAe,EAAE,mBAA6B,EAAE,SAAkB,EAAE,MAAe,EAAE,aAAsB,EAAE,kBAA2B,EAAE,aAAsB,EAAE,KAAc,EAAE,gBAA0B,EAAE,iBAA0B,EAAE,eAAwB,EAAE,cAAuB,EAAE,KAAe,EAAE,IAAsB,EAAE,UAA+C,EAAC,OAAO,EAAE,EAAE,EAAC;;YAC9a,MAAM,YAAY,GAAG,IAAI,CAAC,QAAQ,GAAG,0CAA0C,CAAC;YAChF,IAAI,uBAAuB,GAAQ,EAAE,CAAC;YACtC,IAAI,oBAAoB,GAAc,MAAO,CAAC,MAAM,CAAC,EAAE,EAAE,IAAI,CAAC,cAAc,CAAC,CAAC;YAC9E,IAAI,kBAAkB,GAAQ,EAAE,CAAC;YAEjC,IAAI,MAAM,KAAK,SAAS,EAAE;gBACtB,uBAAuB,CAAC,QAAQ,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;aACpF;YAED,IAAI,mBAAmB,KAAK,SAAS,EAAE;gBACnC,uBAAuB,CAAC,qBAAqB,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,mBAAmB,EAAE,SAAS,CAAC,CAAC;aAC/G;YAED,IAAI,SAAS,KAAK,SAAS,EAAE;gBACzB,uBAAuB,CAAC,UAAU,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,SAAS,EAAE,QAAQ,CAAC,CAAC;aACzF;YAED,IAAI,MAAM,KAAK,SAAS,EAAE;gBACtB,uBAAuB,CAAC,QAAQ,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;aACpF;YAED,IAAI,aAAa,KAAK,SAAS,EAAE;gBAC7B,uBAAuB,CAAC,eAAe,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,aAAa,EAAE,QAAQ,CAAC,CAAC;aAClG;YAED,IAAI,kBAAkB,KAAK,SAAS,EAAE;gBAClC,uBAAuB,CAAC,oBAAoB,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,kBAAkB,EAAE,QAAQ,CAAC,CAAC;aAC5G;YAED,IAAI,aAAa,KAAK,SAAS,EAAE;gBAC7B,uBAAuB,CAAC,eAAe,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,aAAa,EAAE,QAAQ,CAAC,CAAC;aAClG;YAED,IAAI,KAAK,KAAK,SAAS,EAAE;gBACrB,uBAAuB,CAAC,OAAO,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,KAAK,EAAE,QAAQ,CAAC,CAAC;aAClF;YAED,IAAI,gBAAgB,KAAK,SAAS,EAAE;gBAChC,uBAAuB,CAAC,kBAAkB,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,gBAAgB,EAAE,SAAS,CAAC,CAAC;aACzG;YAED,IAAI,iBAAiB,KAAK,SAAS,EAAE;gBACjC,uBAAuB,CAAC,mBAAmB,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,iBAAiB,EAAE,QAAQ,CAAC,CAAC;aAC1G;YAED,IAAI,eAAe,KAAK,SAAS,EAAE;gBAC/B,uBAAuB,CAAC,iBAAiB,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,eAAe,EAAE,QAAQ,CAAC,CAAC;aACtG;YAED,IAAI,cAAc,KAAK,SAAS,EAAE;gBAC9B,uBAAuB,CAAC,gBAAgB,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,cAAc,EAAE,QAAQ,CAAC,CAAC;aACpG;YAED,IAAI,KAAK,KAAK,SAAS,EAAE;gBACrB,uBAAuB,CAAC,OAAO,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,KAAK,EAAE,SAAS,CAAC,CAAC;aACnF;YAEK,MAAO,CAAC,MAAM,CAAC,oBAAoB,EAAE,OAAO,CAAC,OAAO,CAAC,CAAC;YAE5D,IAAI,mBAAmB,GAAG,KAAK,CAAC;YAEhC,IAAI,sBAAsB,GAA4B;gBAClD,MAAM,EAAE,QAAQ;gBAChB,EAAE,EAAE,uBAAuB;gBAC3B,OAAO,EAAE,oBAAoB;gBAC7B,GAAG,EAAE,YAAY;gBACjB,cAAc,EAAE,IAAI,CAAC,eAAe;gBACpC,IAAI,EAAE,IAAI;gBACV,IAAI,EAAE,yBAAgB,CAAC,SAAS,CAAC,IAAI,EAAE,iBAAiB,CAAC;aAC5D,CAAC;YAEF,IAAI,qBAAqB,GAAG,OAAO,CAAC,OAAO,EAAE,CAAC;YAC9C,qBAAqB,GAAG,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,eAAe,CAAC,WAAW,CAAC,cAAc,CAAC,sBAAsB,CAAC,CAAC,CAAC;YAElI,qBAAqB,GAAG,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,eAAe,CAAC,OAAO,CAAC,cAAc,CAAC,sBAAsB,CAAC,CAAC,CAAC;YAC9H,OAAO,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE;gBACnC,IAAI,MAAM,CAAC,IAAI,CAAC,kBAAkB,CAAC,CAAC,MAAM,EAAE;oBACxC,IAAI,mBAAmB,EAAE;wBACf,sBAAuB,CAAC,QAAQ,GAAG,kBAAkB,CAAC;qBAC/D;yBAAM;wBACH,sBAAsB,CAAC,IAAI,GAAG,kBAAkB,CAAC;qBACpD;iBACJ;gBACD,OAAO,IAAI,OAAO,CAAuD,CAAC,OAAO,EAAE,MAAM,EAAE,EAAE;oBACzF,eAAe,CAAC,sBAAsB,EAAE,CAAC,KAAK,EAAE,QAAQ,EAAE,IAAI,EAAE,EAAE;wBAC9D,IAAI,KAAK,EAAE;4BACP,MAAM,CAAC,KAAK,CAAC,CAAC;yBACjB;6BAAM;4BACH,IAAI,GAAG,yBAAgB,CAAC,WAAW,CAAC,IAAI,EAAE,UAAU,CAAC,CAAC;4BACtD,IAAI,QAAQ,CAAC,UAAU,IAAI,QAAQ,CAAC,UAAU,IAAI,GAAG,IAAI,QAAQ,CAAC,UAAU,IAAI,GAAG,EAAE;gCACjF,OAAO,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;6BAC/C;iCAAM;gCACH,MAAM,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;6BAC9C;yBACJ;oBACL,CAAC,CAAC,CAAC;gBACP,CAAC,CAAC,CAAC;YACP,CAAC,CAAC,CAAC;QACP,CAAC;KAAA;IACD;;;;;;;;;;OAUG;IACU,mCAAmC,CAAE,IAAY,EAAE,SAAiB,EAAE,MAAe,EAAE,MAAe,EAAE,kBAA2B,EAAE,gBAA0B,EAAE,iBAA0B,EAAE,IAAsB,EAAE,UAA+C,EAAC,OAAO,EAAE,EAAE,EAAC;;YAC1R,MAAM,YAAY,GAAG,IAAI,CAAC,QAAQ,GAAG,yEAAyE;iBACzG,OAAO,CAAC,GAAG,GAAG,MAAM,GAAG,GAAG,EAAE,kBAAkB,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,CAAC;iBAC7D,OAAO,CAAC,GAAG,GAAG,WAAW,GAAG,GAAG,EAAE,kBAAkB,CAAC,MAAM,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC;YAC7E,IAAI,uBAAuB,GAAQ,EAAE,CAAC;YACtC,IAAI,oBAAoB,GAAc,MAAO,CAAC,MAAM,CAAC,EAAE,EAAE,IAAI,CAAC,cAAc,CAAC,CAAC;YAC9E,IAAI,kBAAkB,GAAQ,EAAE,CAAC;YAEjC,4DAA4D;YAC5D,IAAI,IAAI,KAAK,IAAI,IAAI,IAAI,KAAK,SAAS,EAAE;gBACrC,MAAM,IAAI,KAAK,CAAC,iGAAiG,CAAC,CAAC;aACtH;YAED,iEAAiE;YACjE,IAAI,SAAS,KAAK,IAAI,IAAI,SAAS,KAAK,SAAS,EAAE;gBAC/C,MAAM,IAAI,KAAK,CAAC,sGAAsG,CAAC,CAAC;aAC3H;YAED,IAAI,MAAM,KAAK,SAAS,EAAE;gBACtB,uBAAuB,CAAC,QAAQ,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;aACpF;YAED,IAAI,MAAM,KAAK,SAAS,EAAE;gBACtB,uBAAuB,CAAC,QAAQ,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;aACpF;YAED,IAAI,kBAAkB,KAAK,SAAS,EAAE;gBAClC,uBAAuB,CAAC,oBAAoB,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,kBAAkB,EAAE,QAAQ,CAAC,CAAC;aAC5G;YAED,IAAI,gBAAgB,KAAK,SAAS,EAAE;gBAChC,uBAAuB,CAAC,kBAAkB,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,gBAAgB,EAAE,SAAS,CAAC,CAAC;aACzG;YAED,IAAI,iBAAiB,KAAK,SAAS,EAAE;gBACjC,uBAAuB,CAAC,mBAAmB,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,iBAAiB,EAAE,QAAQ,CAAC,CAAC;aAC1G;YAEK,MAAO,CAAC,MAAM,CAAC,oBAAoB,EAAE,OAAO,CAAC,OAAO,CAAC,CAAC;YAE5D,IAAI,mBAAmB,GAAG,KAAK,CAAC;YAEhC,IAAI,sBAAsB,GAA4B;gBAClD,MAAM,EAAE,QAAQ;gBAChB,EAAE,EAAE,uBAAuB;gBAC3B,OAAO,EAAE,oBAAoB;gBAC7B,GAAG,EAAE,YAAY;gBACjB,cAAc,EAAE,IAAI,CAAC,eAAe;gBACpC,IAAI,EAAE,IAAI;gBACV,IAAI,EAAE,yBAAgB,CAAC,SAAS,CAAC,IAAI,EAAE,iBAAiB,CAAC;aAC5D,CAAC;YAEF,IAAI,qBAAqB,GAAG,OAAO,CAAC,OAAO,EAAE,CAAC;YAC9C,qBAAqB,GAAG,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,eAAe,CAAC,WAAW,CAAC,cAAc,CAAC,sBAAsB,CAAC,CAAC,CAAC;YAElI,qBAAqB,GAAG,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,eAAe,CAAC,OAAO,CAAC,cAAc,CAAC,sBAAsB,CAAC,CAAC,CAAC;YAC9H,OAAO,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE;gBACnC,IAAI,MAAM,CAAC,IAAI,CAAC,kBAAkB,CAAC,CAAC,MAAM,EAAE;oBACxC,IAAI,mBAAmB,EAAE;wBACf,sBAAuB,CAAC,QAAQ,GAAG,kBAAkB,CAAC;qBAC/D;yBAAM;wBACH,sBAAsB,CAAC,IAAI,GAAG,kBAAkB,CAAC;qBACpD;iBACJ;gBACD,OAAO,IAAI,OAAO,CAAuD,CAAC,OAAO,EAAE,MAAM,EAAE,EAAE;oBACzF,eAAe,CAAC,sBAAsB,EAAE,CAAC,KAAK,EAAE,QAAQ,EAAE,IAAI,EAAE,EAAE;wBAC9D,IAAI,KAAK,EAAE;4BACP,MAAM,CAAC,KAAK,CAAC,CAAC;yBACjB;6BAAM;4BACH,IAAI,GAAG,yBAAgB,CAAC,WAAW,CAAC,IAAI,EAAE,UAAU,CAAC,CAAC;4BACtD,IAAI,QAAQ,CAAC,UAAU,IAAI,QAAQ,CAAC,UAAU,IAAI,GAAG,IAAI,QAAQ,CAAC,UAAU,IAAI,GAAG,EAAE;gCACjF,OAAO,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;6BAC/C;iCAAM;gCACH,MAAM,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;6BAC9C;yBACJ;oBACL,CAAC,CAAC,CAAC;gBACP,CAAC,CAAC,CAAC;YACP,CAAC,CAAC,CAAC;QACP,CAAC;KAAA;IACD;;;;;;;;;OASG;IACU,uBAAuB,CAAE,IAAY,EAAE,MAAe,EAAE,MAAe,EAAE,kBAA2B,EAAE,gBAA0B,EAAE,iBAA0B,EAAE,IAAsB,EAAE,UAA+C,EAAC,OAAO,EAAE,EAAE,EAAC;;YAC3P,MAAM,YAAY,GAAG,IAAI,CAAC,QAAQ,GAAG,iDAAiD;iBACjF,OAAO,CAAC,GAAG,GAAG,MAAM,GAAG,GAAG,EAAE,kBAAkB,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;YACnE,IAAI,uBAAuB,GAAQ,EAAE,CAAC;YACtC,IAAI,oBAAoB,GAAc,MAAO,CAAC,MAAM,CAAC,EAAE,EAAE,IAAI,CAAC,cAAc,CAAC,CAAC;YAC9E,IAAI,kBAAkB,GAAQ,EAAE,CAAC;YAEjC,4DAA4D;YAC5D,IAAI,IAAI,KAAK,IAAI,IAAI,IAAI,KAAK,SAAS,EAAE;gBACrC,MAAM,IAAI,KAAK,CAAC,qFAAqF,CAAC,CAAC;aAC1G;YAED,IAAI,MAAM,KAAK,SAAS,EAAE;gBACtB,uBAAuB,CAAC,QAAQ,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;aACpF;YAED,IAAI,MAAM,KAAK,SAAS,EAAE;gBACtB,uBAAuB,CAAC,QAAQ,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;aACpF;YAED,IAAI,kBAAkB,KAAK,SAAS,EAAE;gBAClC,uBAAuB,CAAC,oBAAoB,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,kBAAkB,EAAE,QAAQ,CAAC,CAAC;aAC5G;YAED,IAAI,gBAAgB,KAAK,SAAS,EAAE;gBAChC,uBAAuB,CAAC,kBAAkB,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,gBAAgB,EAAE,SAAS,CAAC,CAAC;aACzG;YAED,IAAI,iBAAiB,KAAK,SAAS,EAAE;gBACjC,uBAAuB,CAAC,mBAAmB,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,iBAAiB,EAAE,QAAQ,CAAC,CAAC;aAC1G;YAEK,MAAO,CAAC,MAAM,CAAC,oBAAoB,EAAE,OAAO,CAAC,OAAO,CAAC,CAAC;YAE5D,IAAI,mBAAmB,GAAG,KAAK,CAAC;YAEhC,IAAI,sBAAsB,GAA4B;gBAClD,MAAM,EAAE,QAAQ;gBAChB,EAAE,EAAE,uBAAuB;gBAC3B,OAAO,EAAE,oBAAoB;gBAC7B,GAAG,EAAE,YAAY;gBACjB,cAAc,EAAE,IAAI,CAAC,eAAe;gBACpC,IAAI,EAAE,IAAI;gBACV,IAAI,EAAE,yBAAgB,CAAC,SAAS,CAAC,IAAI,EAAE,iBAAiB,CAAC;aAC5D,CAAC;YAEF,IAAI,qBAAqB,GAAG,OAAO,CAAC,OAAO,EAAE,CAAC;YAC9C,qBAAqB,GAAG,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,eAAe,CAAC,WAAW,CAAC,cAAc,CAAC,sBAAsB,CAAC,CAAC,CAAC;YAElI,qBAAqB,GAAG,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,eAAe,CAAC,OAAO,CAAC,cAAc,CAAC,sBAAsB,CAAC,CAAC,CAAC;YAC9H,OAAO,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE;gBACnC,IAAI,MAAM,CAAC,IAAI,CAAC,kBAAkB,CAAC,CAAC,MAAM,EAAE;oBACxC,IAAI,mBAAmB,EAAE;wBACf,sBAAuB,CAAC,QAAQ,GAAG,kBAAkB,CAAC;qBAC/D;yBAAM;wBACH,sBAAsB,CAAC,IAAI,GAAG,kBAAkB,CAAC;qBACpD;iBACJ;gBACD,OAAO,IAAI,OAAO,CAAuD,CAAC,OAAO,EAAE,MAAM,EAAE,EAAE;oBACzF,eAAe,CAAC,sBAAsB,EAAE,CAAC,KAAK,EAAE,QAAQ,EAAE,IAAI,EAAE,EAAE;wBAC9D,IAAI,KAAK,EAAE;4BACP,MAAM,CAAC,KAAK,CAAC,CAAC;yBACjB;6BAAM;4BACH,IAAI,GAAG,yBAAgB,CAAC,WAAW,CAAC,IAAI,EAAE,UAAU,CAAC,CAAC;4BACtD,IAAI,QAAQ,CAAC,UAAU,IAAI,QAAQ,CAAC,UAAU,IAAI,GAAG,IAAI,QAAQ,CAAC,UAAU,IAAI,GAAG,EAAE;gCACjF,OAAO,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;6BAC/C;iCAAM;gCACH,MAAM,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;6BAC9C;yBACJ;oBACL,CAAC,CAAC,CAAC;gBACP,CAAC,CAAC,CAAC;YACP,CAAC,CAAC,CAAC;QACP,CAAC;KAAA;IACD;;OAEG;IACU,eAAe,CAAE,UAA+C,EAAC,OAAO,EAAE,EAAE,EAAC;;YACtF,MAAM,YAAY,GAAG,IAAI,CAAC,QAAQ,GAAG,uBAAuB,CAAC;YAC7D,IAAI,uBAAuB,GAAQ,EAAE,CAAC;YACtC,IAAI,oBAAoB,GAAc,MAAO,CAAC,MAAM,CAAC,EAAE,EAAE,IAAI,CAAC,cAAc,CAAC,CAAC;YAC9E,IAAI,kBAAkB,GAAQ,EAAE,CAAC;YAE3B,MAAO,CAAC,MAAM,CAAC,oBAAoB,EAAE,OAAO,CAAC,OAAO,CAAC,CAAC;YAE5D,IAAI,mBAAmB,GAAG,KAAK,CAAC;YAEhC,IAAI,sBAAsB,GAA4B;gBAClD,MAAM,EAAE,KAAK;gBACb,EAAE,EAAE,uBAAuB;gBAC3B,OAAO,EAAE,oBAAoB;gBAC7B,GAAG,EAAE,YAAY;gBACjB,cAAc,EAAE,IAAI,CAAC,eAAe;gBACpC,IAAI,EAAE,IAAI;aACb,CAAC;YAEF,IAAI,qBAAqB,GAAG,OAAO,CAAC,OAAO,EAAE,CAAC;YAC9C,qBAAqB,GAAG,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,eAAe,CAAC,WAAW,CAAC,cAAc,CAAC,sBAAsB,CAAC,CAAC,CAAC;YAElI,qBAAqB,GAAG,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,eAAe,CAAC,OAAO,CAAC,cAAc,CAAC,sBAAsB,CAAC,CAAC,CAAC;YAC9H,OAAO,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE;gBACnC,IAAI,MAAM,CAAC,IAAI,CAAC,kBAAkB,CAAC,CAAC,MAAM,EAAE;oBACxC,IAAI,mBAAmB,EAAE;wBACf,sBAAuB,CAAC,QAAQ,GAAG,kBAAkB,CAAC;qBAC/D;yBAAM;wBACH,sBAAsB,CAAC,IAAI,GAAG,kBAAkB,CAAC;qBACpD;iBACJ;gBACD,OAAO,IAAI,OAAO,CAAgE,CAAC,OAAO,EAAE,MAAM,EAAE,EAAE;oBAClG,eAAe,CAAC,sBAAsB,EAAE,CAAC,KAAK,EAAE,QAAQ,EAAE,IAAI,EAAE,EAAE;wBAC9D,IAAI,KAAK,EAAE;4BACP,MAAM,CAAC,KAAK,CAAC,CAAC;yBACjB;6BAAM;4BACH,IAAI,GAAG,yBAAgB,CAAC,WAAW,CAAC,IAAI,EAAE,mBAAmB,CAAC,CAAC;4BAC/D,IAAI,QAAQ,CAAC,UAAU,IAAI,QAAQ,CAAC,UAAU,IAAI,GAAG,IAAI,QAAQ,CAAC,UAAU,IAAI,GAAG,EAAE;gCACjF,OAAO,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;6BAC/C;iCAAM;gCACH,MAAM,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;6BAC9C;yBACJ;oBACL,CAAC,CAAC,CAAC;gBACP,CAAC,CAAC,CAAC;YACP,CAAC,CAAC,CAAC;QACP,CAAC;KAAA;IACD;;;;;;;;;;;;OAYG;IACU,iCAAiC,CAAE,SAAiB,EAAE,MAAe,EAAE,mBAA6B,EAAE,SAAkB,EAAE,aAAsB,EAAE,aAAsB,EAAE,KAAc,EAAE,eAAwB,EAAE,cAAuB,EAAE,KAAe,EAAE,UAA+C,EAAC,OAAO,EAAE,EAAE,EAAC;;YACnU,MAAM,YAAY,GAAG,IAAI,CAAC,QAAQ,GAAG,kEAAkE;iBAClG,OAAO,CAAC,GAAG,GAAG,WAAW,GAAG,GAAG,EAAE,kBAAkB,CAAC,MAAM,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC;YAC7E,IAAI,uBAAuB,GAAQ,EAAE,CAAC;YACtC,IAAI,oBAAoB,GAAc,MAAO,CAAC,MAAM,CAAC,EAAE,EAAE,IAAI,CAAC,cAAc,CAAC,CAAC;YAC9E,IAAI,kBAAkB,GAAQ,EAAE,CAAC;YAEjC,iEAAiE;YACjE,IAAI,SAAS,KAAK,IAAI,IAAI,SAAS,KAAK,SAAS,EAAE;gBAC/C,MAAM,IAAI,KAAK,CAAC,oGAAoG,CAAC,CAAC;aACzH;YAED,IAAI,MAAM,KAAK,SAAS,EAAE;gBACtB,uBAAuB,CAAC,QAAQ,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;aACpF;YAED,IAAI,mBAAmB,KAAK,SAAS,EAAE;gBACnC,uBAAuB,CAAC,qBAAqB,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,mBAAmB,EAAE,SAAS,CAAC,CAAC;aAC/G;YAED,IAAI,SAAS,KAAK,SAAS,EAAE;gBACzB,uBAAuB,CAAC,UAAU,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,SAAS,EAAE,QAAQ,CAAC,CAAC;aACzF;YAED,IAAI,aAAa,KAAK,SAAS,EAAE;gBAC7B,uBAAuB,CAAC,eAAe,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,aAAa,EAAE,QAAQ,CAAC,CAAC;aAClG;YAED,IAAI,aAAa,KAAK,SAAS,EAAE;gBAC7B,uBAAuB,CAAC,eAAe,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,aAAa,EAAE,QAAQ,CAAC,CAAC;aAClG;YAED,IAAI,KAAK,KAAK,SAAS,EAAE;gBACrB,uBAAuB,CAAC,OAAO,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,KAAK,EAAE,QAAQ,CAAC,CAAC;aAClF;YAED,IAAI,eAAe,KAAK,SAAS,EAAE;gBAC/B,uBAAuB,CAAC,iBAAiB,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,eAAe,EAAE,QAAQ,CAAC,CAAC;aACtG;YAED,IAAI,cAAc,KAAK,SAAS,EAAE;gBAC9B,uBAAuB,CAAC,gBAAgB,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,cAAc,EAAE,QAAQ,CAAC,CAAC;aACpG;YAED,IAAI,KAAK,KAAK,SAAS,EAAE;gBACrB,uBAAuB,CAAC,OAAO,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,KAAK,EAAE,SAAS,CAAC,CAAC;aACnF;YAEK,MAAO,CAAC,MAAM,CAAC,oBAAoB,EAAE,OAAO,CAAC,OAAO,CAAC,CAAC;YAE5D,IAAI,mBAAmB,GAAG,KAAK,CAAC;YAEhC,IAAI,sBAAsB,GAA4B;gBAClD,MAAM,EAAE,KAAK;gBACb,EAAE,EAAE,uBAAuB;gBAC3B,OAAO,EAAE,oBAAoB;gBAC7B,GAAG,EAAE,YAAY;gBACjB,cAAc,EAAE,IAAI,CAAC,eAAe;gBACpC,IAAI,EAAE,IAAI;aACb,CAAC;YAEF,IAAI,qBAAqB,GAAG,OAAO,CAAC,OAAO,EAAE,CAAC;YAC9C,qBAAqB,GAAG,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,eAAe,CAAC,WAAW,CAAC,cAAc,CAAC,sBAAsB,CAAC,CAAC,CAAC;YAElI,qBAAqB,GAAG,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,eAAe,CAAC,OAAO,CAAC,cAAc,CAAC,sBAAsB,CAAC,CAAC,CAAC;YAC9H,OAAO,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE;gBACnC,IAAI,MAAM,CAAC,IAAI,CAAC,kBAAkB,CAAC,CAAC,MAAM,EAAE;oBACxC,IAAI,mBAAmB,EAAE;wBACf,sBAAuB,CAAC,QAAQ,GAAG,kBAAkB,CAAC;qBAC/D;yBAAM;wBACH,sBAAsB,CAAC,IAAI,GAAG,kBAAkB,CAAC;qBACpD;iBACJ;gBACD,OAAO,IAAI,OAAO,CAA6E,CAAC,OAAO,EAAE,MAAM,EAAE,EAAE;oBAC/G,eAAe,CAAC,sBAAsB,EAAE,CAAC,KAAK,EAAE,QAAQ,EAAE,IAAI,EAAE,EAAE;wBAC9D,IAAI,KAAK,EAAE;4BACP,MAAM,CAAC,KAAK,CAAC,CAAC;yBACjB;6BAAM;4BACH,IAAI,GAAG,yBAAgB,CAAC,WAAW,CAAC,IAAI,EAAE,gCAAgC,CAAC,CAAC;4BAC5E,IAAI,QAAQ,CAAC,UAAU,IAAI,QAAQ,CAAC,UAAU,IAAI,GAAG,IAAI,QAAQ,CAAC,UAAU,IAAI,GAAG,EAAE;gCACjF,OAAO,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;6BAC/C;iCAAM;gCACH,MAAM,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;6BAC9C;yBACJ;oBACL,CAAC,CAAC,CAAC;gBACP,CAAC,CAAC,CAAC;YACP,CAAC,CAAC,CAAC;QACP,CAAC;KAAA;IACD;;;;;;;;;;;OAWG;IACU,uCAAuC,CAAE,mBAA6B,EAAE,SAAkB,EAAE,aAAsB,EAAE,aAAsB,EAAE,KAAc,EAAE,MAAe,EAAE,eAAwB,EAAE,cAAuB,EAAE,KAAe,EAAE,UAA+C,EAAC,OAAO,EAAE,EAAE,EAAC;;YACtT,MAAM,YAAY,GAAG,IAAI,CAAC,QAAQ,GAAG,2CAA2C,CAAC;YACjF,IAAI,uBAAuB,GAAQ,EAAE,CAAC;YACtC,IAAI,oBAAoB,GAAc,MAAO,CAAC,MAAM,CAAC,EAAE,EAAE,IAAI,CAAC,cAAc,CAAC,CAAC;YAC9E,IAAI,kBAAkB,GAAQ,EAAE,CAAC;YAEjC,IAAI,mBAAmB,KAAK,SAAS,EAAE;gBACnC,uBAAuB,CAAC,qBAAqB,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,mBAAmB,EAAE,SAAS,CAAC,CAAC;aAC/G;YAED,IAAI,SAAS,KAAK,SAAS,EAAE;gBACzB,uBAAuB,CAAC,UAAU,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,SAAS,EAAE,QAAQ,CAAC,CAAC;aACzF;YAED,IAAI,aAAa,KAAK,SAAS,EAAE;gBAC7B,uBAAuB,CAAC,eAAe,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,aAAa,EAAE,QAAQ,CAAC,CAAC;aAClG;YAED,IAAI,aAAa,KAAK,SAAS,EAAE;gBAC7B,uBAAuB,CAAC,eAAe,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,aAAa,EAAE,QAAQ,CAAC,CAAC;aAClG;YAED,IAAI,KAAK,KAAK,SAAS,EAAE;gBACrB,uBAAuB,CAAC,OAAO,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,KAAK,EAAE,QAAQ,CAAC,CAAC;aAClF;YAED,IAAI,MAAM,KAAK,SAAS,EAAE;gBACtB,uBAAuB,CAAC,QAAQ,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;aACpF;YAED,IAAI,eAAe,KAAK,SAAS,EAAE;gBAC/B,uBAAuB,CAAC,iBAAiB,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,eAAe,EAAE,QAAQ,CAAC,CAAC;aACtG;YAED,IAAI,cAAc,KAAK,SAAS,EAAE;gBAC9B,uBAAuB,CAAC,gBAAgB,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,cAAc,EAAE,QAAQ,CAAC,CAAC;aACpG;YAED,IAAI,KAAK,KAAK,SAAS,EAAE;gBACrB,uBAAuB,CAAC,OAAO,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,KAAK,EAAE,SAAS,CAAC,CAAC;aACnF;YAEK,MAAO,CAAC,MAAM,CAAC,oBAAoB,EAAE,OAAO,CAAC,OAAO,CAAC,CAAC;YAE5D,IAAI,mBAAmB,GAAG,KAAK,CAAC;YAEhC,IAAI,sBAAsB,GAA4B;gBAClD,MAAM,EAAE,KAAK;gBACb,EAAE,EAAE,uBAAuB;gBAC3B,OAAO,EAAE,oBAAoB;gBAC7B,GAAG,EAAE,YAAY;gBACjB,cAAc,EAAE,IAAI,CAAC,eAAe;gBACpC,IAAI,EAAE,IAAI;aACb,CAAC;YAEF,IAAI,qBAAqB,GAAG,OAAO,CAAC,OAAO,EAAE,CAAC;YAC9C,qBAAqB,GAAG,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,eAAe,CAAC,WAAW,CAAC,cAAc,CAAC,sBAAsB,CAAC,CAAC,CAAC;YAElI,qBAAqB,GAAG,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,eAAe,CAAC,OAAO,CAAC,cAAc,CAAC,sBAAsB,CAAC,CAAC,CAAC;YAC9H,OAAO,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE;gBACnC,IAAI,MAAM,CAAC,IAAI,CAAC,kBAAkB,CAAC,CAAC,MAAM,EAAE;oBACxC,IAAI,mBAAmB,EAAE;wBACf,sBAAuB,CAAC,QAAQ,GAAG,kBAAkB,CAAC;qBAC/D;yBAAM;wBACH,sBAAsB,CAAC,IAAI,GAAG,kBAAkB,CAAC;qBACpD;iBACJ;gBACD,OAAO,IAAI,OAAO,CAA6E,CAAC,OAAO,EAAE,MAAM,EAAE,EAAE;oBAC/G,eAAe,CAAC,sBAAsB,EAAE,CAAC,KAAK,EAAE,QAAQ,EAAE,IAAI,EAAE,EAAE;wBAC9D,IAAI,KAAK,EAAE;4BACP,MAAM,CAAC,KAAK,CAAC,CAAC;yBACjB;6BAAM;4BACH,IAAI,GAAG,yBAAgB,CAAC,WAAW,CAAC,IAAI,EAAE,gCAAgC,CAAC,CAAC;4BAC5E,IAAI,QAAQ,CAAC,UAAU,IAAI,QAAQ,CAAC,UAAU,IAAI,GAAG,IAAI,QAAQ,CAAC,UAAU,IAAI,GAAG,EAAE;gCACjF,OAAO,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;6BAC/C;iCAAM;gCACH,MAAM,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;6BAC9C;yBACJ;oBACL,CAAC,CAAC,CAAC;gBACP,CAAC,CAAC,CAAC;YACP,CAAC,CAAC,CAAC;QACP,CAAC;KAAA;IACD;;;;;;;;;;;OAWG;IACU,qBAAqB,CAAE,MAAe,EAAE,mBAA6B,EAAE,SAAkB,EAAE,aAAsB,EAAE,aAAsB,EAAE,KAAc,EAAE,eAAwB,EAAE,cAAuB,EAAE,KAAe,EAAE,UAA+C,EAAC,OAAO,EAAE,EAAE,EAAC;;YACpS,MAAM,YAAY,GAAG,IAAI,CAAC,QAAQ,GAAG,0CAA0C,CAAC;YAChF,IAAI,uBAAuB,GAAQ,EAAE,CAAC;YACtC,IAAI,oBAAoB,GAAc,MAAO,CAAC,MAAM,CAAC,EAAE,EAAE,IAAI,CAAC,cAAc,CAAC,CAAC;YAC9E,IAAI,kBAAkB,GAAQ,EAAE,CAAC;YAEjC,IAAI,MAAM,KAAK,SAAS,EAAE;gBACtB,uBAAuB,CAAC,QAAQ,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;aACpF;YAED,IAAI,mBAAmB,KAAK,SAAS,EAAE;gBACnC,uBAAuB,CAAC,qBAAqB,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,mBAAmB,EAAE,SAAS,CAAC,CAAC;aAC/G;YAED,IAAI,SAAS,KAAK,SAAS,EAAE;gBACzB,uBAAuB,CAAC,UAAU,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,SAAS,EAAE,QAAQ,CAAC,CAAC;aACzF;YAED,IAAI,aAAa,KAAK,SAAS,EAAE;gBAC7B,uBAAuB,CAAC,eAAe,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,aAAa,EAAE,QAAQ,CAAC,CAAC;aAClG;YAED,IAAI,aAAa,KAAK,SAAS,EAAE;gBAC7B,uBAAuB,CAAC,eAAe,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,aAAa,EAAE,QAAQ,CAAC,CAAC;aAClG;YAED,IAAI,KAAK,KAAK,SAAS,EAAE;gBACrB,uBAAuB,CAAC,OAAO,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,KAAK,EAAE,QAAQ,CAAC,CAAC;aAClF;YAED,IAAI,eAAe,KAAK,SAAS,EAAE;gBAC/B,uBAAuB,CAAC,iBAAiB,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,eAAe,EAAE,QAAQ,CAAC,CAAC;aACtG;YAED,IAAI,cAAc,KAAK,SAAS,EAAE;gBAC9B,uBAAuB,CAAC,gBAAgB,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,cAAc,EAAE,QAAQ,CAAC,CAAC;aACpG;YAED,IAAI,KAAK,KAAK,SAAS,EAAE;gBACrB,uBAAuB,CAAC,OAAO,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,KAAK,EAAE,SAAS,CAAC,CAAC;aACnF;YAEK,MAAO,CAAC,MAAM,CAAC,oBAAoB,EAAE,OAAO,CAAC,OAAO,CAAC,CAAC;YAE5D,IAAI,mBAAmB,GAAG,KAAK,CAAC;YAEhC,IAAI,sBAAsB,GAA4B;gBAClD,MAAM,EAAE,KAAK;gBACb,EAAE,EAAE,uBAAuB;gBAC3B,OAAO,EAAE,oBAAoB;gBAC7B,GAAG,EAAE,YAAY;gBACjB,cAAc,EAAE,IAAI,CAAC,eAAe;gBACpC,IAAI,EAAE,IAAI;aACb,CAAC;YAEF,IAAI,qBAAqB,GAAG,OAAO,CAAC,OAAO,EAAE,CAAC;YAC9C,qBAAqB,GAAG,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,eAAe,CAAC,WAAW,CAAC,cAAc,CAAC,sBAAsB,CAAC,CAAC,CAAC;YAElI,qBAAqB,GAAG,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,eAAe,CAAC,OAAO,CAAC,cAAc,CAAC,sBAAsB,CAAC,CAAC,CAAC;YAC9H,OAAO,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE;gBACnC,IAAI,MAAM,CAAC,IAAI,CAAC,kBAAkB,CAAC,CAAC,MAAM,EAAE;oBACxC,IAAI,mBAAmB,EAAE;wBACf,sBAAuB,CAAC,QAAQ,GAAG,kBAAkB,CAAC;qBAC/D;yBAAM;wBACH,sBAAsB,CAAC,IAAI,GAAG,kBAAkB,CAAC;qBACpD;iBACJ;gBACD,OAAO,IAAI,OAAO,CAAiF,CAAC,OAAO,EAAE,MAAM,EAAE,EAAE;oBACnH,eAAe,CAAC,sBAAsB,EAAE,CAAC,KAAK,EAAE,QAAQ,EAAE,IAAI,EAAE,EAAE;wBAC9D,IAAI,KAAK,EAAE;4BACP,MAAM,CAAC,KAAK,CAAC,CAAC;yBACjB;6BAAM;4BACH,IAAI,GAAG,yBAAgB,CAAC,WAAW,CAAC,IAAI,EAAE,oCAAoC,CAAC,CAAC;4BAChF,IAAI,QAAQ,CAAC,UAAU,IAAI,QAAQ,CAAC,UAAU,IAAI,GAAG,IAAI,QAAQ,CAAC,UAAU,IAAI,GAAG,EAAE;gCACjF,OAAO,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;6BAC/C;iCAAM;gCACH,MAAM,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;6BAC9C;yBACJ;oBACL,CAAC,CAAC,CAAC;gBACP,CAAC,CAAC,CAAC;YACP,CAAC,CAAC,CAAC;QACP,CAAC;KAAA;IACD;;;;;;;;;OASG;IACU,kCAAkC,CAAE,IAAY,EAAE,SAAiB,EAAE,IAAY,EAAE,MAAe,EAAE,MAAe,EAAE,YAAqB,EAAE,KAAe,EAAE,UAA+C,EAAC,OAAO,EAAE,EAAE,EAAC;;YAClO,MAAM,YAAY,GAAG,IAAI,CAAC,QAAQ,GAAG,yEAAyE;iBACzG,OAAO,CAAC,GAAG,GAAG,MAAM,GAAG,GAAG,EAAE,kBAAkB,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,CAAC;iBAC7D,OAAO,CAAC,GAAG,GAAG,WAAW,GAAG,GAAG,EAAE,kBAAkB,CAAC,MAAM,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC;YAC7E,IAAI,uBAAuB,GAAQ,EAAE,CAAC;YACtC,IAAI,oBAAoB,GAAc,MAAO,CAAC,MAAM,CAAC,EAAE,EAAE,IAAI,CAAC,cAAc,CAAC,CAAC;YAC9E,IAAI,kBAAkB,GAAQ,EAAE,CAAC;YAEjC,4DAA4D;YAC5D,IAAI,IAAI,KAAK,IAAI,IAAI,IAAI,KAAK,SAAS,EAAE;gBACrC,MAAM,IAAI,KAAK,CAAC,gGAAgG,CAAC,CAAC;aACrH;YAED,iEAAiE;YACjE,IAAI,SAAS,KAAK,IAAI,IAAI,SAAS,KAAK,SAAS,EAAE;gBAC/C,MAAM,IAAI,KAAK,CAAC,qGAAqG,CAAC,CAAC;aAC1H;YAED,4DAA4D;YAC5D,IAAI,IAAI,KAAK,IAAI,IAAI,IAAI,KAAK,SAAS,EAAE;gBACrC,MAAM,IAAI,KAAK,CAAC,gGAAgG,CAAC,CAAC;aACrH;YAED,IAAI,MAAM,KAAK,SAAS,EAAE;gBACtB,uBAAuB,CAAC,QAAQ,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;aACpF;YAED,IAAI,MAAM,KAAK,SAAS,EAAE;gBACtB,uBAAuB,CAAC,QAAQ,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;aACpF;YAED,IAAI,YAAY,KAAK,SAAS,EAAE;gBAC5B,uBAAuB,CAAC,cAAc,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,YAAY,EAAE,QAAQ,CAAC,CAAC;aAChG;YAED,IAAI,KAAK,KAAK,SAAS,EAAE;gBACrB,uBAAuB,CAAC,OAAO,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,KAAK,EAAE,SAAS,CAAC,CAAC;aACnF;YAEK,MAAO,CAAC,MAAM,CAAC,oBAAoB,EAAE,OAAO,CAAC,OAAO,CAAC,CAAC;YAE5D,IAAI,mBAAmB,GAAG,KAAK,CAAC;YAEhC,IAAI,sBAAsB,GAA4B;gBAClD,MAAM,EAAE,OAAO;gBACf,EAAE,EAAE,uBAAuB;gBAC3B,OAAO,EAAE,oBAAoB;gBAC7B,GAAG,EAAE,YAAY;gBACjB,cAAc,EAAE,IAAI,CAAC,eAAe;gBACpC,IAAI,EAAE,IAAI;gBACV,IAAI,EAAE,yBAAgB,CAAC,SAAS,CAAC,IAAI,EAAE,QAAQ,CAAC;aACnD,CAAC;YAEF,IAAI,qBAAqB,GAAG,OAAO,CAAC,OAAO,EAAE,CAAC;YAC9C,qBAAqB,GAAG,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,eAAe,CAAC,WAAW,CAAC,cAAc,CAAC,sBAAsB,CAAC,CAAC,CAAC;YAElI,qBAAqB,GAAG,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,eAAe,CAAC,OAAO,CAAC,cAAc,CAAC,sBAAsB,CAAC,CAAC,CAAC;YAC9H,OAAO,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE;gBACnC,IAAI,MAAM,CAAC,IAAI,CAAC,kBAAkB,CAAC,CAAC,MAAM,EAAE;oBACxC,IAAI,mBAAmB,EAAE;wBACf,sBAAuB,CAAC,QAAQ,GAAG,kBAAkB,CAAC;qBAC/D;yBAAM;wBACH,sBAAsB,CAAC,IAAI,GAAG,kBAAkB,CAAC;qBACpD;iBACJ;gBACD,OAAO,IAAI,OAAO,CAAyE,CAAC,OAAO,EAAE,MAAM,EAAE,EAAE;oBAC3G,eAAe,CAAC,sBAAsB,EAAE,CAAC,KAAK,EAAE,QAAQ,EAAE,IAAI,EAAE,EAAE;wBAC9D,IAAI,KAAK,EAAE;4BACP,MAAM,CAAC,KAAK,CAAC,CAAC;yBACjB;6BAAM;4BACH,IAAI,GAAG,yBAAgB,CAAC,WAAW,CAAC,IAAI,EAAE,4BAA4B,CAAC,CAAC;4BACxE,IAAI,QAAQ,CAAC,UAAU,IAAI,QAAQ,CAAC,UAAU,IAAI,GAAG,IAAI,QAAQ,CAAC,UAAU,IAAI,GAAG,EAAE;gCACjF,OAAO,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;6BAC/C;iCAAM;gCACH,MAAM,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;6BAC9C;yBACJ;oBACL,CAAC,CAAC,CAAC;gBACP,CAAC,CAAC,CAAC;YACP,CAAC,CAAC,CAAC;QACP,CAAC;KAAA;IACD;;;;;;;;;OASG;IACU,wCAAwC,CAAE,IAAY,EAAE,SAAiB,EAAE,IAAY,EAAE,MAAe,EAAE,MAAe,EAAE,YAAqB,EAAE,KAAe,EAAE,UAA+C,EAAC,OAAO,EAAE,EAAE,EAAC;;YACxO,MAAM,YAAY,GAAG,IAAI,CAAC,QAAQ,GAAG,gFAAgF;iBAChH,OAAO,CAAC,GAAG,GAAG,MAAM,GAAG,GAAG,EAAE,kBAAkB,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,CAAC;iBAC7D,OAAO,CAAC,GAAG,GAAG,WAAW,GAAG,GAAG,EAAE,kBAAkB,CAAC,MAAM,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC;YAC7E,IAAI,uBAAuB,GAAQ,EAAE,CAAC;YACtC,IAAI,oBAAoB,GAAc,MAAO,CAAC,MAAM,CAAC,EAAE,EAAE,IAAI,CAAC,cAAc,CAAC,CAAC;YAC9E,IAAI,kBAAkB,GAAQ,EAAE,CAAC;YAEjC,4DAA4D;YAC5D,IAAI,IAAI,KAAK,IAAI,IAAI,IAAI,KAAK,SAAS,EAAE;gBACrC,MAAM,IAAI,KAAK,CAAC,sGAAsG,CAAC,CAAC;aAC3H;YAED,iEAAiE;YACjE,IAAI,SAAS,KAAK,IAAI,IAAI,SAAS,KAAK,SAAS,EAAE;gBAC/C,MAAM,IAAI,KAAK,CAAC,2GAA2G,CAAC,CAAC;aAChI;YAED,4DAA4D;YAC5D,IAAI,IAAI,KAAK,IAAI,IAAI,IAAI,KAAK,SAAS,EAAE;gBACrC,MAAM,IAAI,KAAK,CAAC,sGAAsG,CAAC,CAAC;aAC3H;YAED,IAAI,MAAM,KAAK,SAAS,EAAE;gBACtB,uBAAuB,CAAC,QAAQ,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;aACpF;YAED,IAAI,MAAM,KAAK,SAAS,EAAE;gBACtB,uBAAuB,CAAC,QAAQ,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;aACpF;YAED,IAAI,YAAY,KAAK,SAAS,EAAE;gBAC5B,uBAAuB,CAAC,cAAc,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,YAAY,EAAE,QAAQ,CAAC,CAAC;aAChG;YAED,IAAI,KAAK,KAAK,SAAS,EAAE;gBACrB,uBAAuB,CAAC,OAAO,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,KAAK,EAAE,SAAS,CAAC,CAAC;aACnF;YAEK,MAAO,CAAC,MAAM,CAAC,oBAAoB,EAAE,OAAO,CAAC,OAAO,CAAC,CAAC;YAE5D,IAAI,mBAAmB,GAAG,KAAK,CAAC;YAEhC,IAAI,sBAAsB,GAA4B;gBAClD,MAAM,EAAE,OAAO;gBACf,EAAE,EAAE,uBAAuB;gBAC3B,OAAO,EAAE,oBAAoB;gBAC7B,GAAG,EAAE,YAAY;gBACjB,cAAc,EAAE,IAAI,CAAC,eAAe;gBACpC,IAAI,EAAE,IAAI;gBACV,IAAI,EAAE,yBAAgB,CAAC,SAAS,CAAC,IAAI,EAAE,QAAQ,CAAC;aACnD,CAAC;YAEF,IAAI,qBAAqB,GAAG,OAAO,CAAC,OAAO,EAAE,CAAC;YAC9C,qBAAqB,GAAG,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,eAAe,CAAC,WAAW,CAAC,cAAc,CAAC,sBAAsB,CAAC,CAAC,CAAC;YAElI,qBAAqB,GAAG,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,eAAe,CAAC,OAAO,CAAC,cAAc,CAAC,sBAAsB,CAAC,CAAC,CAAC;YAC9H,OAAO,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE;gBACnC,IAAI,MAAM,CAAC,IAAI,CAAC,kBAAkB,CAAC,CAAC,MAAM,EAAE;oBACxC,IAAI,mBAAmB,EAAE;wBACf,sBAAuB,CAAC,QAAQ,GAAG,kBAAkB,CAAC;qBAC/D;yBAAM;wBACH,sBAAsB,CAAC,IAAI,GAAG,kBAAkB,CAAC;qBACpD;iBACJ;gBACD,OAAO,IAAI,OAAO,CAAyE,CAAC,OAAO,EAAE,MAAM,EAAE,EAAE;oBAC3G,eAAe,CAAC,sBAAsB,EAAE,CAAC,KAAK,EAAE,QAAQ,EAAE,IAAI,EAAE,EAAE;wBAC9D,IAAI,KAAK,EAAE;4BACP,MAAM,CAAC,KAAK,CAAC,CAAC;yBACjB;6BAAM;4BACH,IAAI,GAAG,yBAAgB,CAAC,WAAW,CAAC,IAAI,EAAE,4BAA4B,CAAC,CAAC;4BACxE,IAAI,QAAQ,CAAC,UAAU,IAAI,QAAQ,CAAC,UAAU,IAAI,GAAG,IAAI,QAAQ,CAAC,UAAU,IAAI,GAAG,EAAE;gCACjF,OAAO,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;6BAC/C;iCAAM;gCACH,MAAM,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;6BAC9C;yBACJ;oBACL,CAAC,CAAC,CAAC;gBACP,CAAC,CAAC,CAAC;YACP,CAAC,CAAC,CAAC;QACP,CAAC;KAAA;IACD;;;;;;;;OAQG;IACU,sBAAsB,CAAE,IAAY,EAAE,IAAY,EAAE,MAAe,EAAE,MAAe,EAAE,YAAqB,EAAE,KAAe,EAAE,UAA+C,EAAC,OAAO,EAAE,EAAE,EAAC;;YACnM,MAAM,YAAY,GAAG,IAAI,CAAC,QAAQ,GAAG,iDAAiD;iBACjF,OAAO,CAAC,GAAG,GAAG,MAAM,GAAG,GAAG,EAAE,kBAAkB,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;YACnE,IAAI,uBAAuB,GAAQ,EAAE,CAAC;YACtC,IAAI,oBAAoB,GAAc,MAAO,CAAC,MAAM,CAAC,EAAE,EAAE,IAAI,CAAC,cAAc,CAAC,CAAC;YAC9E,IAAI,kBAAkB,GAAQ,EAAE,CAAC;YAEjC,4DAA4D;YAC5D,IAAI,IAAI,KAAK,IAAI,IAAI,IAAI,KAAK,SAAS,EAAE;gBACrC,MAAM,IAAI,KAAK,CAAC,oFAAoF,CAAC,CAAC;aACzG;YAED,4DAA4D;YAC5D,IAAI,IAAI,KAAK,IAAI,IAAI,IAAI,KAAK,SAAS,EAAE;gBACrC,MAAM,IAAI,KAAK,CAAC,oFAAoF,CAAC,CAAC;aACzG;YAED,IAAI,MAAM,KAAK,SAAS,EAAE;gBACtB,uBAAuB,CAAC,QAAQ,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;aACpF;YAED,IAAI,MAAM,KAAK,SAAS,EAAE;gBACtB,uBAAuB,CAAC,QAAQ,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;aACpF;YAED,IAAI,YAAY,KAAK,SAAS,EAAE;gBAC5B,uBAAuB,CAAC,cAAc,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,YAAY,EAAE,QAAQ,CAAC,CAAC;aAChG;YAED,IAAI,KAAK,KAAK,SAAS,EAAE;gBACrB,uBAAuB,CAAC,OAAO,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,KAAK,EAAE,SAAS,CAAC,CAAC;aACnF;YAEK,MAAO,CAAC,MAAM,CAAC,oBAAoB,EAAE,OAAO,CAAC,OAAO,CAAC,CAAC;YAE5D,IAAI,mBAAmB,GAAG,KAAK,CAAC;YAEhC,IAAI,sBAAsB,GAA4B;gBAClD,MAAM,EAAE,OAAO;gBACf,EAAE,EAAE,uBAAuB;gBAC3B,OAAO,EAAE,oBAAoB;gBAC7B,GAAG,EAAE,YAAY;gBACjB,cAAc,EAAE,IAAI,CAAC,eAAe;gBACpC,IAAI,EAAE,IAAI;gBACV,IAAI,EAAE,yBAAgB,CAAC,SAAS,CAAC,IAAI,EAAE,QAAQ,CAAC;aACnD,CAAC;YAEF,IAAI,qBAAqB,GAAG,OAAO,CAAC,OAAO,EAAE,CAAC;YAC9C,qBAAqB,GAAG,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,eAAe,CAAC,WAAW,CAAC,cAAc,CAAC,sBAAsB,CAAC,CAAC,CAAC;YAElI,qBAAqB,GAAG,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,eAAe,CAAC,OAAO,CAAC,cAAc,CAAC,sBAAsB,CAAC,CAAC,CAAC;YAC9H,OAAO,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE;gBACnC,IAAI,MAAM,CAAC,IAAI,CAAC,kBAAkB,CAAC,CAAC,MAAM,EAAE;oBACxC,IAAI,mBAAmB,EAAE;wBACf,sBAAuB,CAAC,QAAQ,GAAG,kBAAkB,CAAC;qBAC/D;yBAAM;wBACH,sBAAsB,CAAC,IAAI,GAAG,kBAAkB,CAAC;qBACpD;iBACJ;gBACD,OAAO,IAAI,OAAO,CAA6E,CAAC,OAAO,EAAE,MAAM,EAAE,EAAE;oBAC/G,eAAe,CAAC,sBAAsB,EAAE,CAAC,KAAK,EAAE,QAAQ,EAAE,IAAI,EAAE,EAAE;wBAC9D,IAAI,KAAK,EAAE;4BACP,MAAM,CAAC,KAAK,CAAC,CAAC;yBACjB;6BAAM;4BACH,IAAI,GAAG,yBAAgB,CAAC,WAAW,CAAC,IAAI,EAAE,gCAAgC,CAAC,CAAC;4BAC5E,IAAI,QAAQ,CAAC,UAAU,IAAI,QAAQ,CAAC,UAAU,IAAI,GAAG,IAAI,QAAQ,CAAC,UAAU,IAAI,GAAG,EAAE;gCACjF,OAAO,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;6BAC/C;iCAAM;gCACH,MAAM,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;6BAC9C;yBACJ;oBACL,CAAC,CAAC,CAAC;gBACP,CAAC,CAAC,CAAC;YACP,CAAC,CAAC,CAAC;QACP,CAAC;KAAA;IACD;;;;;;;OAOG;IACU,iCAAiC,CAAE,IAAY,EAAE,SAAiB,EAAE,MAAe,EAAE,KAAe,EAAE,OAAiB,EAAE,UAA+C,EAAC,OAAO,EAAE,EAAE,EAAC;;YAC9L,MAAM,YAAY,GAAG,IAAI,CAAC,QAAQ,GAAG,yEAAyE;iBACzG,OAAO,CAAC,GAAG,GAAG,MAAM,GAAG,GAAG,EAAE,kBAAkB,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,CAAC;iBAC7D,OAAO,CAAC,GAAG,GAAG,WAAW,GAAG,GAAG,EAAE,kBAAkB,CAAC,MAAM,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC;YAC7E,IAAI,uBAAuB,GAAQ,EAAE,CAAC;YACtC,IAAI,oBAAoB,GAAc,MAAO,CAAC,MAAM,CAAC,EAAE,EAAE,IAAI,CAAC,cAAc,CAAC,CAAC;YAC9E,IAAI,kBAAkB,GAAQ,EAAE,CAAC;YAEjC,4DAA4D;YAC5D,IAAI,IAAI,KAAK,IAAI,IAAI,IAAI,KAAK,SAAS,EAAE;gBACrC,MAAM,IAAI,KAAK,CAAC,+FAA+F,CAAC,CAAC;aACpH;YAED,iEAAiE;YACjE,IAAI,SAAS,KAAK,IAAI,IAAI,SAAS,KAAK,SAAS,EAAE;gBAC/C,MAAM,IAAI,KAAK,CAAC,oGAAoG,CAAC,CAAC;aACzH;YAED,IAAI,MAAM,KAAK,SAAS,EAAE;gBACtB,uBAAuB,CAAC,QAAQ,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;aACpF;YAED,IAAI,KAAK,KAAK,SAAS,EAAE;gBACrB,uBAAuB,CAAC,OAAO,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,KAAK,EAAE,SAAS,CAAC,CAAC;aACnF;YAED,IAAI,OAAO,KAAK,SAAS,EAAE;gBACvB,uBAAuB,CAAC,QAAQ,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,OAAO,EAAE,SAAS,CAAC,CAAC;aACtF;YAEK,MAAO,CAAC,MAAM,CAAC,oBAAoB,EAAE,OAAO,CAAC,OAAO,CAAC,CAAC;YAE5D,IAAI,mBAAmB,GAAG,KAAK,CAAC;YAEhC,IAAI,sBAAsB,GAA4B;gBAClD,MAAM,EAAE,KAAK;gBACb,EAAE,EAAE,uBAAuB;gBAC3B,OAAO,EAAE,oBAAoB;gBAC7B,GAAG,EAAE,YAAY;gBACjB,cAAc,EAAE,IAAI,CAAC,eAAe;gBACpC,IAAI,EAAE,IAAI;aACb,CAAC;YAEF,IAAI,qBAAqB,GAAG,OAAO,CAAC,OAAO,EAAE,CAAC;YAC9C,qBAAqB,GAAG,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,eAAe,CAAC,WAAW,CAAC,cAAc,CAAC,sBAAsB,CAAC,CAAC,CAAC;YAElI,qBAAqB,GAAG,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,eAAe,CAAC,OAAO,CAAC,cAAc,CAAC,sBAAsB,CAAC,CAAC,CAAC;YAC9H,OAAO,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE;gBACnC,IAAI,MAAM,CAAC,IAAI,CAAC,kBAAkB,CAAC,CAAC,MAAM,EAAE;oBACxC,IAAI,mBAAmB,EAAE;wBACf,sBAAuB,CAAC,QAAQ,GAAG,kBAAkB,CAAC;qBAC/D;yBAAM;wBACH,sBAAsB,CAAC,IAAI,GAAG,kBAAkB,CAAC;qBACpD;iBACJ;gBACD,OAAO,IAAI,OAAO,CAAyE,CAAC,OAAO,EAAE,MAAM,EAAE,EAAE;oBAC3G,eAAe,CAAC,sBAAsB,EAAE,CAAC,KAAK,EAAE,QAAQ,EAAE,IAAI,EAAE,EAAE;wBAC9D,IAAI,KAAK,EAAE;4BACP,MAAM,CAAC,KAAK,CAAC,CAAC;yBACjB;6BAAM;4BACH,IAAI,GAAG,yBAAgB,CAAC,WAAW,CAAC,IAAI,EAAE,4BAA4B,CAAC,CAAC;4BACxE,IAAI,QAAQ,CAAC,UAAU,IAAI,QAAQ,CAAC,UAAU,IAAI,GAAG,IAAI,QAAQ,CAAC,UAAU,IAAI,GAAG,EAAE;gCACjF,OAAO,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;6BAC/C;iCAAM;gCACH,MAAM,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;6BAC9C;yBACJ;oBACL,CAAC,CAAC,CAAC;gBACP,CAAC,CAAC,CAAC;YACP,CAAC,CAAC,CAAC;QACP,CAAC;KAAA;IACD;;;;;OAKG;IACU,uCAAuC,CAAE,IAAY,EAAE,SAAiB,EAAE,MAAe,EAAE,UAA+C,EAAC,OAAO,EAAE,EAAE,EAAC;;YAChK,MAAM,YAAY,GAAG,IAAI,CAAC,QAAQ,GAAG,gFAAgF;iBAChH,OAAO,CAAC,GAAG,GAAG,MAAM,GAAG,GAAG,EAAE,kBAAkB,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,CAAC;iBAC7D,OAAO,CAAC,GAAG,GAAG,WAAW,GAAG,GAAG,EAAE,kBAAkB,CAAC,MAAM,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC;YAC7E,IAAI,uBAAuB,GAAQ,EAAE,CAAC;YACtC,IAAI,oBAAoB,GAAc,MAAO,CAAC,MAAM,CAAC,EAAE,EAAE,IAAI,CAAC,cAAc,CAAC,CAAC;YAC9E,IAAI,kBAAkB,GAAQ,EAAE,CAAC;YAEjC,4DAA4D;YAC5D,IAAI,IAAI,KAAK,IAAI,IAAI,IAAI,KAAK,SAAS,EAAE;gBACrC,MAAM,IAAI,KAAK,CAAC,qGAAqG,CAAC,CAAC;aAC1H;YAED,iEAAiE;YACjE,IAAI,SAAS,KAAK,IAAI,IAAI,SAAS,KAAK,SAAS,EAAE;gBAC/C,MAAM,IAAI,KAAK,CAAC,0GAA0G,CAAC,CAAC;aAC/H;YAED,IAAI,MAAM,KAAK,SAAS,EAAE;gBACtB,uBAAuB,CAAC,QAAQ,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;aACpF;YAEK,MAAO,CAAC,MAAM,CAAC,oBAAoB,EAAE,OAAO,CAAC,OAAO,CAAC,CAAC;YAE5D,IAAI,mBAAmB,GAAG,KAAK,CAAC;YAEhC,IAAI,sBAAsB,GAA4B;gBAClD,MAAM,EAAE,KAAK;gBACb,EAAE,EAAE,uBAAuB;gBAC3B,OAAO,EAAE,oBAAoB;gBAC7B,GAAG,EAAE,YAAY;gBACjB,cAAc,EAAE,IAAI,CAAC,eAAe;gBACpC,IAAI,EAAE,IAAI;aACb,CAAC;YAEF,IAAI,qBAAqB,GAAG,OAAO,CAAC,OAAO,EAAE,CAAC;YAC9C,qBAAqB,GAAG,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,eAAe,CAAC,WAAW,CAAC,cAAc,CAAC,sBAAsB,CAAC,CAAC,CAAC;YAElI,qBAAqB,GAAG,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,eAAe,CAAC,OAAO,CAAC,cAAc,CAAC,sBAAsB,CAAC,CAAC,CAAC;YAC9H,OAAO,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE;gBACnC,IAAI,MAAM,CAAC,IAAI,CAAC,kBAAkB,CAAC,CAAC,MAAM,EAAE;oBACxC,IAAI,mBAAmB,EAAE;wBACf,sBAAuB,CAAC,QAAQ,GAAG,kBAAkB,CAAC;qBAC/D;yBAAM;wBACH,sBAAsB,CAAC,IAAI,GAAG,kBAAkB,CAAC;qBACpD;iBACJ;gBACD,OAAO,IAAI,OAAO,CAAyE,CAAC,OAAO,EAAE,MAAM,EAAE,EAAE;oBAC3G,eAAe,CAAC,sBAAsB,EAAE,CAAC,KAAK,EAAE,QAAQ,EAAE,IAAI,EAAE,EAAE;wBAC9D,IAAI,KAAK,EAAE;4BACP,MAAM,CAAC,KAAK,CAAC,CAAC;yBACjB;6BAAM;4BACH,IAAI,GAAG,yBAAgB,CAAC,WAAW,CAAC,IAAI,EAAE,4BAA4B,CAAC,CAAC;4BACxE,IAAI,QAAQ,CAAC,UAAU,IAAI,QAAQ,CAAC,UAAU,IAAI,GAAG,IAAI,QAAQ,CAAC,UAAU,IAAI,GAAG,EAAE;gCACjF,OAAO,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;6BAC/C;iCAAM;gCACH,MAAM,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;6BAC9C;yBACJ;oBACL,CAAC,CAAC,CAAC;gBACP,CAAC,CAAC,CAAC;YACP,CAAC,CAAC,CAAC;QACP,CAAC;KAAA;IACD;;;;;;OAMG;IACU,qBAAqB,CAAE,IAAY,EAAE,MAAe,EAAE,KAAe,EAAE,OAAiB,EAAE,UAA+C,EAAC,OAAO,EAAE,EAAE,EAAC;;YAC/J,MAAM,YAAY,GAAG,IAAI,CAAC,QAAQ,GAAG,iDAAiD;iBACjF,OAAO,CAAC,GAAG,GAAG,MAAM,GAAG,GAAG,EAAE,kBAAkB,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;YACnE,IAAI,uBAAuB,GAAQ,EAAE,CAAC;YACtC,IAAI,oBAAoB,GAAc,MAAO,CAAC,MAAM,CAAC,EAAE,EAAE,IAAI,CAAC,cAAc,CAAC,CAAC;YAC9E,IAAI,kBAAkB,GAAQ,EAAE,CAAC;YAEjC,4DAA4D;YAC5D,IAAI,IAAI,KAAK,IAAI,IAAI,IAAI,KAAK,SAAS,EAAE;gBACrC,MAAM,IAAI,KAAK,CAAC,mFAAmF,CAAC,CAAC;aACxG;YAED,IAAI,MAAM,KAAK,SAAS,EAAE;gBACtB,uBAAuB,CAAC,QAAQ,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;aACpF;YAED,IAAI,KAAK,KAAK,SAAS,EAAE;gBACrB,uBAAuB,CAAC,OAAO,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,KAAK,EAAE,SAAS,CAAC,CAAC;aACnF;YAED,IAAI,OAAO,KAAK,SAAS,EAAE;gBACvB,uBAAuB,CAAC,QAAQ,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,OAAO,EAAE,SAAS,CAAC,CAAC;aACtF;YAEK,MAAO,CAAC,MAAM,CAAC,oBAAoB,EAAE,OAAO,CAAC,OAAO,CAAC,CAAC;YAE5D,IAAI,mBAAmB,GAAG,KAAK,CAAC;YAEhC,IAAI,sBAAsB,GAA4B;gBAClD,MAAM,EAAE,KAAK;gBACb,EAAE,EAAE,uBAAuB;gBAC3B,OAAO,EAAE,oBAAoB;gBAC7B,GAAG,EAAE,YAAY;gBACjB,cAAc,EAAE,IAAI,CAAC,eAAe;gBACpC,IAAI,EAAE,IAAI;aACb,CAAC;YAEF,IAAI,qBAAqB,GAAG,OAAO,CAAC,OAAO,EAAE,CAAC;YAC9C,qBAAqB,GAAG,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,eAAe,CAAC,WAAW,CAAC,cAAc,CAAC,sBAAsB,CAAC,CAAC,CAAC;YAElI,qBAAqB,GAAG,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,eAAe,CAAC,OAAO,CAAC,cAAc,CAAC,sBAAsB,CAAC,CAAC,CAAC;YAC9H,OAAO,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE;gBACnC,IAAI,MAAM,CAAC,IAAI,CAAC,kBAAkB,CAAC,CAAC,MAAM,EAAE;oBACxC,IAAI,mBAAmB,EAAE;wBACf,sBAAuB,CAAC,QAAQ,GAAG,kBAAkB,CAAC;qBAC/D;yBAAM;wBACH,sBAAsB,CAAC,IAAI,GAAG,kBAAkB,CAAC;qBACpD;iBACJ;gBACD,OAAO,IAAI,OAAO,CAA6E,CAAC,OAAO,EAAE,MAAM,EAAE,EAAE;oBAC/G,eAAe,CAAC,sBAAsB,EAAE,CAAC,KAAK,EAAE,QAAQ,EAAE,IAAI,EAAE,EAAE;wBAC9D,IAAI,KAAK,EAAE;4BACP,MAAM,CAAC,KAAK,CAAC,CAAC;yBACjB;6BAAM;4BACH,IAAI,GAAG,yBAAgB,CAAC,WAAW,CAAC,IAAI,EAAE,gCAAgC,CAAC,CAAC;4BAC5E,IAAI,QAAQ,CAAC,UAAU,IAAI,QAAQ,CAAC,UAAU,IAAI,GAAG,IAAI,QAAQ,CAAC,UAAU,IAAI,GAAG,EAAE;gCACjF,OAAO,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;6BAC/C;iCAAM;gCACH,MAAM,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;6BAC9C;yBACJ;oBACL,CAAC,CAAC,CAAC;gBACP,CAAC,CAAC,CAAC;YACP,CAAC,CAAC,CAAC;QACP,CAAC;KAAA;IACD;;;;;;;;OAQG;IACU,oCAAoC,CAAE,IAAY,EAAE,SAAiB,EAAE,IAAgC,EAAE,MAAe,EAAE,MAAe,EAAE,YAAqB,EAAE,UAA+C,EAAC,OAAO,EAAE,EAAE,EAAC;;YACvO,MAAM,YAAY,GAAG,IAAI,CAAC,QAAQ,GAAG,yEAAyE;iBACzG,OAAO,CAAC,GAAG,GAAG,MAAM,GAAG,GAAG,EAAE,kBAAkB,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,CAAC;iBAC7D,OAAO,CAAC,GAAG,GAAG,WAAW,GAAG,GAAG,EAAE,kBAAkB,CAAC,MAAM,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC;YAC7E,IAAI,uBAAuB,GAAQ,EAAE,CAAC;YACtC,IAAI,oBAAoB,GAAc,MAAO,CAAC,MAAM,CAAC,EAAE,EAAE,IAAI,CAAC,cAAc,CAAC,CAAC;YAC9E,IAAI,kBAAkB,GAAQ,EAAE,CAAC;YAEjC,4DAA4D;YAC5D,IAAI,IAAI,KAAK,IAAI,IAAI,IAAI,KAAK,SAAS,EAAE;gBACrC,MAAM,IAAI,KAAK,CAAC,kGAAkG,CAAC,CAAC;aACvH;YAED,iEAAiE;YACjE,IAAI,SAAS,KAAK,IAAI,IAAI,SAAS,KAAK,SAAS,EAAE;gBAC/C,MAAM,IAAI,KAAK,CAAC,uGAAuG,CAAC,CAAC;aAC5H;YAED,4DAA4D;YAC5D,IAAI,IAAI,KAAK,IAAI,IAAI,IAAI,KAAK,SAAS,EAAE;gBACrC,MAAM,IAAI,KAAK,CAAC,kGAAkG,CAAC,CAAC;aACvH;YAED,IAAI,MAAM,KAAK,SAAS,EAAE;gBACtB,uBAAuB,CAAC,QAAQ,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;aACpF;YAED,IAAI,MAAM,KAAK,SAAS,EAAE;gBACtB,uBAAuB,CAAC,QAAQ,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;aACpF;YAED,IAAI,YAAY,KAAK,SAAS,EAAE;gBAC5B,uBAAuB,CAAC,cAAc,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,YAAY,EAAE,QAAQ,CAAC,CAAC;aAChG;YAEK,MAAO,CAAC,MAAM,CAAC,oBAAoB,EAAE,OAAO,CAAC,OAAO,CAAC,CAAC;YAE5D,IAAI,mBAAmB,GAAG,KAAK,CAAC;YAEhC,IAAI,sBAAsB,GAA4B;gBAClD,MAAM,EAAE,KAAK;gBACb,EAAE,EAAE,uBAAuB;gBAC3B,OAAO,EAAE,oBAAoB;gBAC7B,GAAG,EAAE,YAAY;gBACjB,cAAc,EAAE,IAAI,CAAC,eAAe;gBACpC,IAAI,EAAE,IAAI;gBACV,IAAI,EAAE,yBAAgB,CAAC,SAAS,CAAC,IAAI,EAAE,4BAA4B,CAAC;aACvE,CAAC;YAEF,IAAI,qBAAqB,GAAG,OAAO,CAAC,OAAO,EAAE,CAAC;YAC9C,qBAAqB,GAAG,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,eAAe,CAAC,WAAW,CAAC,cAAc,CAAC,sBAAsB,CAAC,CAAC,CAAC;YAElI,qBAAqB,GAAG,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,eAAe,CAAC,OAAO,CAAC,cAAc,CAAC,sBAAsB,CAAC,CAAC,CAAC;YAC9H,OAAO,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE;gBACnC,IAAI,MAAM,CAAC,IAAI,CAAC,kBAAkB,CAAC,CAAC,MAAM,EAAE;oBACxC,IAAI,mBAAmB,EAAE;wBACf,sBAAuB,CAAC,QAAQ,GAAG,kBAAkB,CAAC;qBAC/D;yBAAM;wBACH,sBAAsB,CAAC,IAAI,GAAG,kBAAkB,CAAC;qBACpD;iBACJ;gBACD,OAAO,IAAI,OAAO,CAAyE,CAAC,OAAO,EAAE,MAAM,EAAE,EAAE;oBAC3G,eAAe,CAAC,sBAAsB,EAAE,CAAC,KAAK,EAAE,QAAQ,EAAE,IAAI,EAAE,EAAE;wBAC9D,IAAI,KAAK,EAAE;4BACP,MAAM,CAAC,KAAK,CAAC,CAAC;yBACjB;6BAAM;4BACH,IAAI,GAAG,yBAAgB,CAAC,WAAW,CAAC,IAAI,EAAE,4BAA4B,CAAC,CAAC;4BACxE,IAAI,QAAQ,CAAC,UAAU,IAAI,QAAQ,CAAC,UAAU,IAAI,GAAG,IAAI,QAAQ,CAAC,UAAU,IAAI,GAAG,EAAE;gCACjF,OAAO,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;6BAC/C;iCAAM;gCACH,MAAM,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;6BAC9C;yBACJ;oBACL,CAAC,CAAC,CAAC;gBACP,CAAC,CAAC,CAAC;YACP,CAAC,CAAC,CAAC;QACP,CAAC;KAAA;IACD;;;;;;;;OAQG;IACU,0CAA0C,CAAE,IAAY,EAAE,SAAiB,EAAE,IAAgC,EAAE,MAAe,EAAE,MAAe,EAAE,YAAqB,EAAE,UAA+C,EAAC,OAAO,EAAE,EAAE,EAAC;;YAC7O,MAAM,YAAY,GAAG,IAAI,CAAC,QAAQ,GAAG,gFAAgF;iBAChH,OAAO,CAAC,GAAG,GAAG,MAAM,GAAG,GAAG,EAAE,kBAAkB,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,CAAC;iBAC7D,OAAO,CAAC,GAAG,GAAG,WAAW,GAAG,GAAG,EAAE,kBAAkB,CAAC,MAAM,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC;YAC7E,IAAI,uBAAuB,GAAQ,EAAE,CAAC;YACtC,IAAI,oBAAoB,GAAc,MAAO,CAAC,MAAM,CAAC,EAAE,EAAE,IAAI,CAAC,cAAc,CAAC,CAAC;YAC9E,IAAI,kBAAkB,GAAQ,EAAE,CAAC;YAEjC,4DAA4D;YAC5D,IAAI,IAAI,KAAK,IAAI,IAAI,IAAI,KAAK,SAAS,EAAE;gBACrC,MAAM,IAAI,KAAK,CAAC,wGAAwG,CAAC,CAAC;aAC7H;YAED,iEAAiE;YACjE,IAAI,SAAS,KAAK,IAAI,IAAI,SAAS,KAAK,SAAS,EAAE;gBAC/C,MAAM,IAAI,KAAK,CAAC,6GAA6G,CAAC,CAAC;aAClI;YAED,4DAA4D;YAC5D,IAAI,IAAI,KAAK,IAAI,IAAI,IAAI,KAAK,SAAS,EAAE;gBACrC,MAAM,IAAI,KAAK,CAAC,wGAAwG,CAAC,CAAC;aAC7H;YAED,IAAI,MAAM,KAAK,SAAS,EAAE;gBACtB,uBAAuB,CAAC,QAAQ,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;aACpF;YAED,IAAI,MAAM,KAAK,SAAS,EAAE;gBACtB,uBAAuB,CAAC,QAAQ,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;aACpF;YAED,IAAI,YAAY,KAAK,SAAS,EAAE;gBAC5B,uBAAuB,CAAC,cAAc,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,YAAY,EAAE,QAAQ,CAAC,CAAC;aAChG;YAEK,MAAO,CAAC,MAAM,CAAC,oBAAoB,EAAE,OAAO,CAAC,OAAO,CAAC,CAAC;YAE5D,IAAI,mBAAmB,GAAG,KAAK,CAAC;YAEhC,IAAI,sBAAsB,GAA4B;gBAClD,MAAM,EAAE,KAAK;gBACb,EAAE,EAAE,uBAAuB;gBAC3B,OAAO,EAAE,oBAAoB;gBAC7B,GAAG,EAAE,YAAY;gBACjB,cAAc,EAAE,IAAI,CAAC,eAAe;gBACpC,IAAI,EAAE,IAAI;gBACV,IAAI,EAAE,yBAAgB,CAAC,SAAS,CAAC,IAAI,EAAE,4BAA4B,CAAC;aACvE,CAAC;YAEF,IAAI,qBAAqB,GAAG,OAAO,CAAC,OAAO,EAAE,CAAC;YAC9C,qBAAqB,GAAG,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,eAAe,CAAC,WAAW,CAAC,cAAc,CAAC,sBAAsB,CAAC,CAAC,CAAC;YAElI,qBAAqB,GAAG,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,eAAe,CAAC,OAAO,CAAC,cAAc,CAAC,sBAAsB,CAAC,CAAC,CAAC;YAC9H,OAAO,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE;gBACnC,IAAI,MAAM,CAAC,IAAI,CAAC,kBAAkB,CAAC,CAAC,MAAM,EAAE;oBACxC,IAAI,mBAAmB,EAAE;wBACf,sBAAuB,CAAC,QAAQ,GAAG,kBAAkB,CAAC;qBAC/D;yBAAM;wBACH,sBAAsB,CAAC,IAAI,GAAG,kBAAkB,CAAC;qBACpD;iBACJ;gBACD,OAAO,IAAI,OAAO,CAAyE,CAAC,OAAO,EAAE,MAAM,EAAE,EAAE;oBAC3G,eAAe,CAAC,sBAAsB,EAAE,CAAC,KAAK,EAAE,QAAQ,EAAE,IAAI,EAAE,EAAE;wBAC9D,IAAI,KAAK,EAAE;4BACP,MAAM,CAAC,KAAK,CAAC,CAAC;yBACjB;6BAAM;4BACH,IAAI,GAAG,yBAAgB,CAAC,WAAW,CAAC,IAAI,EAAE,4BAA4B,CAAC,CAAC;4BACxE,IAAI,QAAQ,CAAC,UAAU,IAAI,QAAQ,CAAC,UAAU,IAAI,GAAG,IAAI,QAAQ,CAAC,UAAU,IAAI,GAAG,EAAE;gCACjF,OAAO,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;6BAC/C;iCAAM;gCACH,MAAM,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;6BAC9C;yBACJ;oBACL,CAAC,CAAC,CAAC;gBACP,CAAC,CAAC,CAAC;YACP,CAAC,CAAC,CAAC;QACP,CAAC;KAAA;IACD;;;;;;;OAOG;IACU,wBAAwB,CAAE,IAAY,EAAE,IAAoC,EAAE,MAAe,EAAE,MAAe,EAAE,YAAqB,EAAE,UAA+C,EAAC,OAAO,EAAE,EAAE,EAAC;;YAC5M,MAAM,YAAY,GAAG,IAAI,CAAC,QAAQ,GAAG,iDAAiD;iBACjF,OAAO,CAAC,GAAG,GAAG,MAAM,GAAG,GAAG,EAAE,kBAAkB,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;YACnE,IAAI,uBAAuB,GAAQ,EAAE,CAAC;YACtC,IAAI,oBAAoB,GAAc,MAAO,CAAC,MAAM,CAAC,EAAE,EAAE,IAAI,CAAC,cAAc,CAAC,CAAC;YAC9E,IAAI,kBAAkB,GAAQ,EAAE,CAAC;YAEjC,4DAA4D;YAC5D,IAAI,IAAI,KAAK,IAAI,IAAI,IAAI,KAAK,SAAS,EAAE;gBACrC,MAAM,IAAI,KAAK,CAAC,sFAAsF,CAAC,CAAC;aAC3G;YAED,4DAA4D;YAC5D,IAAI,IAAI,KAAK,IAAI,IAAI,IAAI,KAAK,SAAS,EAAE;gBACrC,MAAM,IAAI,KAAK,CAAC,sFAAsF,CAAC,CAAC;aAC3G;YAED,IAAI,MAAM,KAAK,SAAS,EAAE;gBACtB,uBAAuB,CAAC,QAAQ,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;aACpF;YAED,IAAI,MAAM,KAAK,SAAS,EAAE;gBACtB,uBAAuB,CAAC,QAAQ,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;aACpF;YAED,IAAI,YAAY,KAAK,SAAS,EAAE;gBAC5B,uBAAuB,CAAC,cAAc,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,YAAY,EAAE,QAAQ,CAAC,CAAC;aAChG;YAEK,MAAO,CAAC,MAAM,CAAC,oBAAoB,EAAE,OAAO,CAAC,OAAO,CAAC,CAAC;YAE5D,IAAI,mBAAmB,GAAG,KAAK,CAAC;YAEhC,IAAI,sBAAsB,GAA4B;gBAClD,MAAM,EAAE,KAAK;gBACb,EAAE,EAAE,uBAAuB;gBAC3B,OAAO,EAAE,oBAAoB;gBAC7B,GAAG,EAAE,YAAY;gBACjB,cAAc,EAAE,IAAI,CAAC,eAAe;gBACpC,IAAI,EAAE,IAAI;gBACV,IAAI,EAAE,yBAAgB,CAAC,SAAS,CAAC,IAAI,EAAE,gCAAgC,CAAC;aAC3E,CAAC;YAEF,IAAI,qBAAqB,GAAG,OAAO,CAAC,OAAO,EAAE,CAAC;YAC9C,qBAAqB,GAAG,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,eAAe,CAAC,WAAW,CAAC,cAAc,CAAC,sBAAsB,CAAC,CAAC,CAAC;YAElI,qBAAqB,GAAG,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,eAAe,CAAC,OAAO,CAAC,cAAc,CAAC,sBAAsB,CAAC,CAAC,CAAC;YAC9H,OAAO,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE;gBACnC,IAAI,MAAM,CAAC,IAAI,CAAC,kBAAkB,CAAC,CAAC,MAAM,EAAE;oBACxC,IAAI,mBAAmB,EAAE;wBACf,sBAAuB,CAAC,QAAQ,GAAG,kBAAkB,CAAC;qBAC/D;yBAAM;wBACH,sBAAsB,CAAC,IAAI,GAAG,kBAAkB,CAAC;qBACpD;iBACJ;gBACD,OAAO,IAAI,OAAO,CAA6E,CAAC,OAAO,EAAE,MAAM,EAAE,EAAE;oBAC/G,eAAe,CAAC,sBAAsB,EAAE,CAAC,KAAK,EAAE,QAAQ,EAAE,IAAI,EAAE,EAAE;wBAC9D,IAAI,KAAK,EAAE;4BACP,MAAM,CAAC,KAAK,CAAC,CAAC;yBACjB;6BAAM;4BACH,IAAI,GAAG,yBAAgB,CAAC,WAAW,CAAC,IAAI,EAAE,gCAAgC,CAAC,CAAC;4BAC5E,IAAI,QAAQ,CAAC,UAAU,IAAI,QAAQ,CAAC,UAAU,IAAI,GAAG,IAAI,QAAQ,CAAC,UAAU,IAAI,GAAG,EAAE;gCACjF,OAAO,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;6BAC/C;iCAAM;gCACH,MAAM,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;6BAC9C;yBACJ;oBACL,CAAC,CAAC,CAAC;gBACP,CAAC,CAAC,CAAC;YACP,CAAC,CAAC,CAAC;QACP,CAAC;KAAA;CACJ;AAzpDD,4CAypDC"}
\ No newline at end of file
diff --git a/dist/gen/api/rbacAuthorizationApi.d.ts b/dist/gen/api/rbacAuthorizationApi.d.ts
new file mode 100644
index 0000000000..85a25f848c
--- /dev/null
+++ b/dist/gen/api/rbacAuthorizationApi.d.ts
@@ -0,0 +1,44 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+///
+import http = require('http');
+import { V1APIGroup } from '../model/v1APIGroup';
+import { Authentication } from '../model/models';
+import { ApiKeyAuth } from '../model/models';
+export declare enum RbacAuthorizationApiApiKeys {
+ BearerToken = 0
+}
+export declare class RbacAuthorizationApi {
+ protected _basePath: string;
+ protected defaultHeaders: any;
+ protected _useQuerystring: boolean;
+ protected authentications: {
+ 'default': Authentication;
+ 'BearerToken': ApiKeyAuth;
+ };
+ constructor(basePath?: string);
+ useQuerystring: boolean;
+ basePath: string;
+ setDefaultAuthentication(auth: Authentication): void;
+ setApiKey(key: RbacAuthorizationApiApiKeys, value: string): void;
+ /**
+ * get information of a group
+ */
+ getAPIGroup(options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1APIGroup;
+ }>;
+}
diff --git a/dist/gen/api/rbacAuthorizationApi.js b/dist/gen/api/rbacAuthorizationApi.js
new file mode 100644
index 0000000000..8b2bb3672a
--- /dev/null
+++ b/dist/gen/api/rbacAuthorizationApi.js
@@ -0,0 +1,113 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+const tslib_1 = require("tslib");
+const localVarRequest = require("request");
+const models_1 = require("../model/models");
+const models_2 = require("../model/models");
+let defaultBasePath = 'http://localhost/';
+// ===============================================
+// This file is autogenerated - Please do not edit
+// ===============================================
+var RbacAuthorizationApiApiKeys;
+(function (RbacAuthorizationApiApiKeys) {
+ RbacAuthorizationApiApiKeys[RbacAuthorizationApiApiKeys["BearerToken"] = 0] = "BearerToken";
+})(RbacAuthorizationApiApiKeys = exports.RbacAuthorizationApiApiKeys || (exports.RbacAuthorizationApiApiKeys = {}));
+class RbacAuthorizationApi {
+ constructor(basePathOrUsername, password, basePath) {
+ this._basePath = defaultBasePath;
+ this.defaultHeaders = {};
+ this._useQuerystring = false;
+ this.authentications = {
+ 'default': new models_1.VoidAuth(),
+ 'BearerToken': new models_2.ApiKeyAuth('header', 'authorization'),
+ };
+ if (password) {
+ if (basePath) {
+ this.basePath = basePath;
+ }
+ }
+ else {
+ if (basePathOrUsername) {
+ this.basePath = basePathOrUsername;
+ }
+ }
+ }
+ set useQuerystring(value) {
+ this._useQuerystring = value;
+ }
+ set basePath(basePath) {
+ this._basePath = basePath;
+ }
+ get basePath() {
+ return this._basePath;
+ }
+ setDefaultAuthentication(auth) {
+ this.authentications.default = auth;
+ }
+ setApiKey(key, value) {
+ this.authentications[RbacAuthorizationApiApiKeys[key]].apiKey = value;
+ }
+ /**
+ * get information of a group
+ */
+ getAPIGroup(options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/rbac.authorization.k8s.io/';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1APIGroup");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+}
+exports.RbacAuthorizationApi = RbacAuthorizationApi;
+//# sourceMappingURL=rbacAuthorizationApi.js.map
\ No newline at end of file
diff --git a/dist/gen/api/rbacAuthorizationApi.js.map b/dist/gen/api/rbacAuthorizationApi.js.map
new file mode 100644
index 0000000000..9491aa9a17
--- /dev/null
+++ b/dist/gen/api/rbacAuthorizationApi.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"rbacAuthorizationApi.js","sourceRoot":"","sources":["../../../src/gen/api/rbacAuthorizationApi.ts"],"names":[],"mappings":"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"}
\ No newline at end of file
diff --git a/dist/gen/api/rbacAuthorizationV1Api.d.ts b/dist/gen/api/rbacAuthorizationV1Api.d.ts
new file mode 100644
index 0000000000..5b2eca91a1
--- /dev/null
+++ b/dist/gen/api/rbacAuthorizationV1Api.d.ts
@@ -0,0 +1,604 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+///
+import http = require('http');
+import { V1APIResourceList } from '../model/v1APIResourceList';
+import { V1ClusterRole } from '../model/v1ClusterRole';
+import { V1ClusterRoleBinding } from '../model/v1ClusterRoleBinding';
+import { V1ClusterRoleBindingList } from '../model/v1ClusterRoleBindingList';
+import { V1ClusterRoleList } from '../model/v1ClusterRoleList';
+import { V1DeleteOptions } from '../model/v1DeleteOptions';
+import { V1Role } from '../model/v1Role';
+import { V1RoleBinding } from '../model/v1RoleBinding';
+import { V1RoleBindingList } from '../model/v1RoleBindingList';
+import { V1RoleList } from '../model/v1RoleList';
+import { V1Status } from '../model/v1Status';
+import { Authentication } from '../model/models';
+import { ApiKeyAuth } from '../model/models';
+export declare enum RbacAuthorizationV1ApiApiKeys {
+ BearerToken = 0
+}
+export declare class RbacAuthorizationV1Api {
+ protected _basePath: string;
+ protected defaultHeaders: any;
+ protected _useQuerystring: boolean;
+ protected authentications: {
+ 'default': Authentication;
+ 'BearerToken': ApiKeyAuth;
+ };
+ constructor(basePath?: string);
+ useQuerystring: boolean;
+ basePath: string;
+ setDefaultAuthentication(auth: Authentication): void;
+ setApiKey(key: RbacAuthorizationV1ApiApiKeys, value: string): void;
+ /**
+ * create a ClusterRole
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createClusterRole(body: V1ClusterRole, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1ClusterRole;
+ }>;
+ /**
+ * create a ClusterRoleBinding
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createClusterRoleBinding(body: V1ClusterRoleBinding, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1ClusterRoleBinding;
+ }>;
+ /**
+ * create a Role
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createNamespacedRole(namespace: string, body: V1Role, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Role;
+ }>;
+ /**
+ * create a RoleBinding
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createNamespacedRoleBinding(namespace: string, body: V1RoleBinding, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1RoleBinding;
+ }>;
+ /**
+ * delete a ClusterRole
+ * @param name name of the ClusterRole
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteClusterRole(name: string, pretty?: string, dryRun?: string, gracePeriodSeconds?: number, orphanDependents?: boolean, propagationPolicy?: string, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete a ClusterRoleBinding
+ * @param name name of the ClusterRoleBinding
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteClusterRoleBinding(name: string, pretty?: string, dryRun?: string, gracePeriodSeconds?: number, orphanDependents?: boolean, propagationPolicy?: string, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete collection of ClusterRole
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionClusterRole(pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, dryRun?: string, fieldSelector?: string, gracePeriodSeconds?: number, labelSelector?: string, limit?: number, orphanDependents?: boolean, propagationPolicy?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete collection of ClusterRoleBinding
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionClusterRoleBinding(pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, dryRun?: string, fieldSelector?: string, gracePeriodSeconds?: number, labelSelector?: string, limit?: number, orphanDependents?: boolean, propagationPolicy?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete collection of Role
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionNamespacedRole(namespace: string, pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, dryRun?: string, fieldSelector?: string, gracePeriodSeconds?: number, labelSelector?: string, limit?: number, orphanDependents?: boolean, propagationPolicy?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete collection of RoleBinding
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionNamespacedRoleBinding(namespace: string, pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, dryRun?: string, fieldSelector?: string, gracePeriodSeconds?: number, labelSelector?: string, limit?: number, orphanDependents?: boolean, propagationPolicy?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete a Role
+ * @param name name of the Role
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteNamespacedRole(name: string, namespace: string, pretty?: string, dryRun?: string, gracePeriodSeconds?: number, orphanDependents?: boolean, propagationPolicy?: string, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete a RoleBinding
+ * @param name name of the RoleBinding
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteNamespacedRoleBinding(name: string, namespace: string, pretty?: string, dryRun?: string, gracePeriodSeconds?: number, orphanDependents?: boolean, propagationPolicy?: string, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * get available resources
+ */
+ getAPIResources(options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1APIResourceList;
+ }>;
+ /**
+ * list or watch objects of kind ClusterRole
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listClusterRole(pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1ClusterRoleList;
+ }>;
+ /**
+ * list or watch objects of kind ClusterRoleBinding
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listClusterRoleBinding(pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1ClusterRoleBindingList;
+ }>;
+ /**
+ * list or watch objects of kind Role
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listNamespacedRole(namespace: string, pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1RoleList;
+ }>;
+ /**
+ * list or watch objects of kind RoleBinding
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listNamespacedRoleBinding(namespace: string, pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1RoleBindingList;
+ }>;
+ /**
+ * list or watch objects of kind RoleBinding
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listRoleBindingForAllNamespaces(allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, pretty?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1RoleBindingList;
+ }>;
+ /**
+ * list or watch objects of kind Role
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listRoleForAllNamespaces(allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, pretty?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1RoleList;
+ }>;
+ /**
+ * partially update the specified ClusterRole
+ * @param name name of the ClusterRole
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchClusterRole(name: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1ClusterRole;
+ }>;
+ /**
+ * partially update the specified ClusterRoleBinding
+ * @param name name of the ClusterRoleBinding
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchClusterRoleBinding(name: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1ClusterRoleBinding;
+ }>;
+ /**
+ * partially update the specified Role
+ * @param name name of the Role
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedRole(name: string, namespace: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Role;
+ }>;
+ /**
+ * partially update the specified RoleBinding
+ * @param name name of the RoleBinding
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedRoleBinding(name: string, namespace: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1RoleBinding;
+ }>;
+ /**
+ * read the specified ClusterRole
+ * @param name name of the ClusterRole
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readClusterRole(name: string, pretty?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1ClusterRole;
+ }>;
+ /**
+ * read the specified ClusterRoleBinding
+ * @param name name of the ClusterRoleBinding
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readClusterRoleBinding(name: string, pretty?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1ClusterRoleBinding;
+ }>;
+ /**
+ * read the specified Role
+ * @param name name of the Role
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readNamespacedRole(name: string, namespace: string, pretty?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Role;
+ }>;
+ /**
+ * read the specified RoleBinding
+ * @param name name of the RoleBinding
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readNamespacedRoleBinding(name: string, namespace: string, pretty?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1RoleBinding;
+ }>;
+ /**
+ * replace the specified ClusterRole
+ * @param name name of the ClusterRole
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceClusterRole(name: string, body: V1ClusterRole, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1ClusterRole;
+ }>;
+ /**
+ * replace the specified ClusterRoleBinding
+ * @param name name of the ClusterRoleBinding
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceClusterRoleBinding(name: string, body: V1ClusterRoleBinding, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1ClusterRoleBinding;
+ }>;
+ /**
+ * replace the specified Role
+ * @param name name of the Role
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedRole(name: string, namespace: string, body: V1Role, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Role;
+ }>;
+ /**
+ * replace the specified RoleBinding
+ * @param name name of the RoleBinding
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedRoleBinding(name: string, namespace: string, body: V1RoleBinding, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1RoleBinding;
+ }>;
+}
diff --git a/dist/gen/api/rbacAuthorizationV1Api.js b/dist/gen/api/rbacAuthorizationV1Api.js
new file mode 100644
index 0000000000..13e9f276d1
--- /dev/null
+++ b/dist/gen/api/rbacAuthorizationV1Api.js
@@ -0,0 +1,2561 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+const tslib_1 = require("tslib");
+const localVarRequest = require("request");
+const models_1 = require("../model/models");
+const models_2 = require("../model/models");
+let defaultBasePath = 'http://localhost/';
+// ===============================================
+// This file is autogenerated - Please do not edit
+// ===============================================
+var RbacAuthorizationV1ApiApiKeys;
+(function (RbacAuthorizationV1ApiApiKeys) {
+ RbacAuthorizationV1ApiApiKeys[RbacAuthorizationV1ApiApiKeys["BearerToken"] = 0] = "BearerToken";
+})(RbacAuthorizationV1ApiApiKeys = exports.RbacAuthorizationV1ApiApiKeys || (exports.RbacAuthorizationV1ApiApiKeys = {}));
+class RbacAuthorizationV1Api {
+ constructor(basePathOrUsername, password, basePath) {
+ this._basePath = defaultBasePath;
+ this.defaultHeaders = {};
+ this._useQuerystring = false;
+ this.authentications = {
+ 'default': new models_1.VoidAuth(),
+ 'BearerToken': new models_2.ApiKeyAuth('header', 'authorization'),
+ };
+ if (password) {
+ if (basePath) {
+ this.basePath = basePath;
+ }
+ }
+ else {
+ if (basePathOrUsername) {
+ this.basePath = basePathOrUsername;
+ }
+ }
+ }
+ set useQuerystring(value) {
+ this._useQuerystring = value;
+ }
+ set basePath(basePath) {
+ this._basePath = basePath;
+ }
+ get basePath() {
+ return this._basePath;
+ }
+ setDefaultAuthentication(auth) {
+ this.authentications.default = auth;
+ }
+ setApiKey(key, value) {
+ this.authentications[RbacAuthorizationV1ApiApiKeys[key]].apiKey = value;
+ }
+ /**
+ * create a ClusterRole
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createClusterRole(body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/rbac.authorization.k8s.io/v1/clusterroles';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling createClusterRole.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'POST',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1ClusterRole")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1ClusterRole");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * create a ClusterRoleBinding
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createClusterRoleBinding(body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/rbac.authorization.k8s.io/v1/clusterrolebindings';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling createClusterRoleBinding.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'POST',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1ClusterRoleBinding")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1ClusterRoleBinding");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * create a Role
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createNamespacedRole(namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/rbac.authorization.k8s.io/v1/namespaces/{namespace}/roles'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling createNamespacedRole.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling createNamespacedRole.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'POST',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1Role")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Role");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * create a RoleBinding
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createNamespacedRoleBinding(namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/rbac.authorization.k8s.io/v1/namespaces/{namespace}/rolebindings'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling createNamespacedRoleBinding.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling createNamespacedRoleBinding.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'POST',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1RoleBinding")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1RoleBinding");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete a ClusterRole
+ * @param name name of the ClusterRole
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteClusterRole(name, pretty, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/rbac.authorization.k8s.io/v1/clusterroles/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling deleteClusterRole.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete a ClusterRoleBinding
+ * @param name name of the ClusterRoleBinding
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteClusterRoleBinding(name, pretty, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/rbac.authorization.k8s.io/v1/clusterrolebindings/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling deleteClusterRoleBinding.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete collection of ClusterRole
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionClusterRole(pretty, allowWatchBookmarks, _continue, dryRun, fieldSelector, gracePeriodSeconds, labelSelector, limit, orphanDependents, propagationPolicy, resourceVersion, timeoutSeconds, watch, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/rbac.authorization.k8s.io/v1/clusterroles';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete collection of ClusterRoleBinding
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionClusterRoleBinding(pretty, allowWatchBookmarks, _continue, dryRun, fieldSelector, gracePeriodSeconds, labelSelector, limit, orphanDependents, propagationPolicy, resourceVersion, timeoutSeconds, watch, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/rbac.authorization.k8s.io/v1/clusterrolebindings';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete collection of Role
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionNamespacedRole(namespace, pretty, allowWatchBookmarks, _continue, dryRun, fieldSelector, gracePeriodSeconds, labelSelector, limit, orphanDependents, propagationPolicy, resourceVersion, timeoutSeconds, watch, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/rbac.authorization.k8s.io/v1/namespaces/{namespace}/roles'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling deleteCollectionNamespacedRole.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete collection of RoleBinding
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionNamespacedRoleBinding(namespace, pretty, allowWatchBookmarks, _continue, dryRun, fieldSelector, gracePeriodSeconds, labelSelector, limit, orphanDependents, propagationPolicy, resourceVersion, timeoutSeconds, watch, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/rbac.authorization.k8s.io/v1/namespaces/{namespace}/rolebindings'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling deleteCollectionNamespacedRoleBinding.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete a Role
+ * @param name name of the Role
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteNamespacedRole(name, namespace, pretty, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/rbac.authorization.k8s.io/v1/namespaces/{namespace}/roles/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling deleteNamespacedRole.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling deleteNamespacedRole.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete a RoleBinding
+ * @param name name of the RoleBinding
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteNamespacedRoleBinding(name, namespace, pretty, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/rbac.authorization.k8s.io/v1/namespaces/{namespace}/rolebindings/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling deleteNamespacedRoleBinding.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling deleteNamespacedRoleBinding.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * get available resources
+ */
+ getAPIResources(options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/rbac.authorization.k8s.io/v1/';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1APIResourceList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind ClusterRole
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listClusterRole(pretty, allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/rbac.authorization.k8s.io/v1/clusterroles';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1ClusterRoleList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind ClusterRoleBinding
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listClusterRoleBinding(pretty, allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/rbac.authorization.k8s.io/v1/clusterrolebindings';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1ClusterRoleBindingList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind Role
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listNamespacedRole(namespace, pretty, allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/rbac.authorization.k8s.io/v1/namespaces/{namespace}/roles'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling listNamespacedRole.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1RoleList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind RoleBinding
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listNamespacedRoleBinding(namespace, pretty, allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/rbac.authorization.k8s.io/v1/namespaces/{namespace}/rolebindings'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling listNamespacedRoleBinding.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1RoleBindingList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind RoleBinding
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listRoleBindingForAllNamespaces(allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, pretty, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/rbac.authorization.k8s.io/v1/rolebindings';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1RoleBindingList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind Role
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listRoleForAllNamespaces(allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, pretty, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/rbac.authorization.k8s.io/v1/roles';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1RoleList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update the specified ClusterRole
+ * @param name name of the ClusterRole
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchClusterRole(name, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/rbac.authorization.k8s.io/v1/clusterroles/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchClusterRole.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchClusterRole.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1ClusterRole");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update the specified ClusterRoleBinding
+ * @param name name of the ClusterRoleBinding
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchClusterRoleBinding(name, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/rbac.authorization.k8s.io/v1/clusterrolebindings/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchClusterRoleBinding.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchClusterRoleBinding.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1ClusterRoleBinding");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update the specified Role
+ * @param name name of the Role
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedRole(name, namespace, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/rbac.authorization.k8s.io/v1/namespaces/{namespace}/roles/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchNamespacedRole.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling patchNamespacedRole.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchNamespacedRole.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Role");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update the specified RoleBinding
+ * @param name name of the RoleBinding
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedRoleBinding(name, namespace, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/rbac.authorization.k8s.io/v1/namespaces/{namespace}/rolebindings/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchNamespacedRoleBinding.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling patchNamespacedRoleBinding.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchNamespacedRoleBinding.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1RoleBinding");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read the specified ClusterRole
+ * @param name name of the ClusterRole
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readClusterRole(name, pretty, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/rbac.authorization.k8s.io/v1/clusterroles/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readClusterRole.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1ClusterRole");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read the specified ClusterRoleBinding
+ * @param name name of the ClusterRoleBinding
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readClusterRoleBinding(name, pretty, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/rbac.authorization.k8s.io/v1/clusterrolebindings/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readClusterRoleBinding.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1ClusterRoleBinding");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read the specified Role
+ * @param name name of the Role
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readNamespacedRole(name, namespace, pretty, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/rbac.authorization.k8s.io/v1/namespaces/{namespace}/roles/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readNamespacedRole.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling readNamespacedRole.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Role");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read the specified RoleBinding
+ * @param name name of the RoleBinding
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readNamespacedRoleBinding(name, namespace, pretty, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/rbac.authorization.k8s.io/v1/namespaces/{namespace}/rolebindings/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readNamespacedRoleBinding.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling readNamespacedRoleBinding.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1RoleBinding");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace the specified ClusterRole
+ * @param name name of the ClusterRole
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceClusterRole(name, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/rbac.authorization.k8s.io/v1/clusterroles/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceClusterRole.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceClusterRole.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1ClusterRole")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1ClusterRole");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace the specified ClusterRoleBinding
+ * @param name name of the ClusterRoleBinding
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceClusterRoleBinding(name, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/rbac.authorization.k8s.io/v1/clusterrolebindings/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceClusterRoleBinding.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceClusterRoleBinding.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1ClusterRoleBinding")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1ClusterRoleBinding");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace the specified Role
+ * @param name name of the Role
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedRole(name, namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/rbac.authorization.k8s.io/v1/namespaces/{namespace}/roles/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceNamespacedRole.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling replaceNamespacedRole.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceNamespacedRole.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1Role")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Role");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace the specified RoleBinding
+ * @param name name of the RoleBinding
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedRoleBinding(name, namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/rbac.authorization.k8s.io/v1/namespaces/{namespace}/rolebindings/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceNamespacedRoleBinding.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling replaceNamespacedRoleBinding.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceNamespacedRoleBinding.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1RoleBinding")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1RoleBinding");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+}
+exports.RbacAuthorizationV1Api = RbacAuthorizationV1Api;
+//# sourceMappingURL=rbacAuthorizationV1Api.js.map
\ No newline at end of file
diff --git a/dist/gen/api/rbacAuthorizationV1Api.js.map b/dist/gen/api/rbacAuthorizationV1Api.js.map
new file mode 100644
index 0000000000..8b48d11bda
--- /dev/null
+++ b/dist/gen/api/rbacAuthorizationV1Api.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"rbacAuthorizationV1Api.js","sourceRoot":"","sources":["../../../src/gen/api/rbacAuthorizationV1Api.ts"],"names":[],"mappings":"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"}
\ No newline at end of file
diff --git a/dist/gen/api/rbacAuthorizationV1alpha1Api.d.ts b/dist/gen/api/rbacAuthorizationV1alpha1Api.d.ts
new file mode 100644
index 0000000000..befd6a9da9
--- /dev/null
+++ b/dist/gen/api/rbacAuthorizationV1alpha1Api.d.ts
@@ -0,0 +1,604 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+///
+import http = require('http');
+import { V1APIResourceList } from '../model/v1APIResourceList';
+import { V1DeleteOptions } from '../model/v1DeleteOptions';
+import { V1Status } from '../model/v1Status';
+import { V1alpha1ClusterRole } from '../model/v1alpha1ClusterRole';
+import { V1alpha1ClusterRoleBinding } from '../model/v1alpha1ClusterRoleBinding';
+import { V1alpha1ClusterRoleBindingList } from '../model/v1alpha1ClusterRoleBindingList';
+import { V1alpha1ClusterRoleList } from '../model/v1alpha1ClusterRoleList';
+import { V1alpha1Role } from '../model/v1alpha1Role';
+import { V1alpha1RoleBinding } from '../model/v1alpha1RoleBinding';
+import { V1alpha1RoleBindingList } from '../model/v1alpha1RoleBindingList';
+import { V1alpha1RoleList } from '../model/v1alpha1RoleList';
+import { Authentication } from '../model/models';
+import { ApiKeyAuth } from '../model/models';
+export declare enum RbacAuthorizationV1alpha1ApiApiKeys {
+ BearerToken = 0
+}
+export declare class RbacAuthorizationV1alpha1Api {
+ protected _basePath: string;
+ protected defaultHeaders: any;
+ protected _useQuerystring: boolean;
+ protected authentications: {
+ 'default': Authentication;
+ 'BearerToken': ApiKeyAuth;
+ };
+ constructor(basePath?: string);
+ useQuerystring: boolean;
+ basePath: string;
+ setDefaultAuthentication(auth: Authentication): void;
+ setApiKey(key: RbacAuthorizationV1alpha1ApiApiKeys, value: string): void;
+ /**
+ * create a ClusterRole
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createClusterRole(body: V1alpha1ClusterRole, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1alpha1ClusterRole;
+ }>;
+ /**
+ * create a ClusterRoleBinding
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createClusterRoleBinding(body: V1alpha1ClusterRoleBinding, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1alpha1ClusterRoleBinding;
+ }>;
+ /**
+ * create a Role
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createNamespacedRole(namespace: string, body: V1alpha1Role, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1alpha1Role;
+ }>;
+ /**
+ * create a RoleBinding
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createNamespacedRoleBinding(namespace: string, body: V1alpha1RoleBinding, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1alpha1RoleBinding;
+ }>;
+ /**
+ * delete a ClusterRole
+ * @param name name of the ClusterRole
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteClusterRole(name: string, pretty?: string, dryRun?: string, gracePeriodSeconds?: number, orphanDependents?: boolean, propagationPolicy?: string, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete a ClusterRoleBinding
+ * @param name name of the ClusterRoleBinding
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteClusterRoleBinding(name: string, pretty?: string, dryRun?: string, gracePeriodSeconds?: number, orphanDependents?: boolean, propagationPolicy?: string, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete collection of ClusterRole
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionClusterRole(pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, dryRun?: string, fieldSelector?: string, gracePeriodSeconds?: number, labelSelector?: string, limit?: number, orphanDependents?: boolean, propagationPolicy?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete collection of ClusterRoleBinding
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionClusterRoleBinding(pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, dryRun?: string, fieldSelector?: string, gracePeriodSeconds?: number, labelSelector?: string, limit?: number, orphanDependents?: boolean, propagationPolicy?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete collection of Role
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionNamespacedRole(namespace: string, pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, dryRun?: string, fieldSelector?: string, gracePeriodSeconds?: number, labelSelector?: string, limit?: number, orphanDependents?: boolean, propagationPolicy?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete collection of RoleBinding
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionNamespacedRoleBinding(namespace: string, pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, dryRun?: string, fieldSelector?: string, gracePeriodSeconds?: number, labelSelector?: string, limit?: number, orphanDependents?: boolean, propagationPolicy?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete a Role
+ * @param name name of the Role
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteNamespacedRole(name: string, namespace: string, pretty?: string, dryRun?: string, gracePeriodSeconds?: number, orphanDependents?: boolean, propagationPolicy?: string, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete a RoleBinding
+ * @param name name of the RoleBinding
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteNamespacedRoleBinding(name: string, namespace: string, pretty?: string, dryRun?: string, gracePeriodSeconds?: number, orphanDependents?: boolean, propagationPolicy?: string, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * get available resources
+ */
+ getAPIResources(options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1APIResourceList;
+ }>;
+ /**
+ * list or watch objects of kind ClusterRole
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listClusterRole(pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1alpha1ClusterRoleList;
+ }>;
+ /**
+ * list or watch objects of kind ClusterRoleBinding
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listClusterRoleBinding(pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1alpha1ClusterRoleBindingList;
+ }>;
+ /**
+ * list or watch objects of kind Role
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listNamespacedRole(namespace: string, pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1alpha1RoleList;
+ }>;
+ /**
+ * list or watch objects of kind RoleBinding
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listNamespacedRoleBinding(namespace: string, pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1alpha1RoleBindingList;
+ }>;
+ /**
+ * list or watch objects of kind RoleBinding
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listRoleBindingForAllNamespaces(allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, pretty?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1alpha1RoleBindingList;
+ }>;
+ /**
+ * list or watch objects of kind Role
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listRoleForAllNamespaces(allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, pretty?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1alpha1RoleList;
+ }>;
+ /**
+ * partially update the specified ClusterRole
+ * @param name name of the ClusterRole
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchClusterRole(name: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1alpha1ClusterRole;
+ }>;
+ /**
+ * partially update the specified ClusterRoleBinding
+ * @param name name of the ClusterRoleBinding
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchClusterRoleBinding(name: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1alpha1ClusterRoleBinding;
+ }>;
+ /**
+ * partially update the specified Role
+ * @param name name of the Role
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedRole(name: string, namespace: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1alpha1Role;
+ }>;
+ /**
+ * partially update the specified RoleBinding
+ * @param name name of the RoleBinding
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedRoleBinding(name: string, namespace: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1alpha1RoleBinding;
+ }>;
+ /**
+ * read the specified ClusterRole
+ * @param name name of the ClusterRole
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readClusterRole(name: string, pretty?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1alpha1ClusterRole;
+ }>;
+ /**
+ * read the specified ClusterRoleBinding
+ * @param name name of the ClusterRoleBinding
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readClusterRoleBinding(name: string, pretty?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1alpha1ClusterRoleBinding;
+ }>;
+ /**
+ * read the specified Role
+ * @param name name of the Role
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readNamespacedRole(name: string, namespace: string, pretty?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1alpha1Role;
+ }>;
+ /**
+ * read the specified RoleBinding
+ * @param name name of the RoleBinding
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readNamespacedRoleBinding(name: string, namespace: string, pretty?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1alpha1RoleBinding;
+ }>;
+ /**
+ * replace the specified ClusterRole
+ * @param name name of the ClusterRole
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceClusterRole(name: string, body: V1alpha1ClusterRole, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1alpha1ClusterRole;
+ }>;
+ /**
+ * replace the specified ClusterRoleBinding
+ * @param name name of the ClusterRoleBinding
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceClusterRoleBinding(name: string, body: V1alpha1ClusterRoleBinding, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1alpha1ClusterRoleBinding;
+ }>;
+ /**
+ * replace the specified Role
+ * @param name name of the Role
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedRole(name: string, namespace: string, body: V1alpha1Role, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1alpha1Role;
+ }>;
+ /**
+ * replace the specified RoleBinding
+ * @param name name of the RoleBinding
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedRoleBinding(name: string, namespace: string, body: V1alpha1RoleBinding, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1alpha1RoleBinding;
+ }>;
+}
diff --git a/dist/gen/api/rbacAuthorizationV1alpha1Api.js b/dist/gen/api/rbacAuthorizationV1alpha1Api.js
new file mode 100644
index 0000000000..b0dc2c58dd
--- /dev/null
+++ b/dist/gen/api/rbacAuthorizationV1alpha1Api.js
@@ -0,0 +1,2561 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+const tslib_1 = require("tslib");
+const localVarRequest = require("request");
+const models_1 = require("../model/models");
+const models_2 = require("../model/models");
+let defaultBasePath = 'http://localhost/';
+// ===============================================
+// This file is autogenerated - Please do not edit
+// ===============================================
+var RbacAuthorizationV1alpha1ApiApiKeys;
+(function (RbacAuthorizationV1alpha1ApiApiKeys) {
+ RbacAuthorizationV1alpha1ApiApiKeys[RbacAuthorizationV1alpha1ApiApiKeys["BearerToken"] = 0] = "BearerToken";
+})(RbacAuthorizationV1alpha1ApiApiKeys = exports.RbacAuthorizationV1alpha1ApiApiKeys || (exports.RbacAuthorizationV1alpha1ApiApiKeys = {}));
+class RbacAuthorizationV1alpha1Api {
+ constructor(basePathOrUsername, password, basePath) {
+ this._basePath = defaultBasePath;
+ this.defaultHeaders = {};
+ this._useQuerystring = false;
+ this.authentications = {
+ 'default': new models_1.VoidAuth(),
+ 'BearerToken': new models_2.ApiKeyAuth('header', 'authorization'),
+ };
+ if (password) {
+ if (basePath) {
+ this.basePath = basePath;
+ }
+ }
+ else {
+ if (basePathOrUsername) {
+ this.basePath = basePathOrUsername;
+ }
+ }
+ }
+ set useQuerystring(value) {
+ this._useQuerystring = value;
+ }
+ set basePath(basePath) {
+ this._basePath = basePath;
+ }
+ get basePath() {
+ return this._basePath;
+ }
+ setDefaultAuthentication(auth) {
+ this.authentications.default = auth;
+ }
+ setApiKey(key, value) {
+ this.authentications[RbacAuthorizationV1alpha1ApiApiKeys[key]].apiKey = value;
+ }
+ /**
+ * create a ClusterRole
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createClusterRole(body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/rbac.authorization.k8s.io/v1alpha1/clusterroles';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling createClusterRole.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'POST',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1alpha1ClusterRole")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1alpha1ClusterRole");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * create a ClusterRoleBinding
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createClusterRoleBinding(body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/rbac.authorization.k8s.io/v1alpha1/clusterrolebindings';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling createClusterRoleBinding.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'POST',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1alpha1ClusterRoleBinding")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1alpha1ClusterRoleBinding");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * create a Role
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createNamespacedRole(namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/roles'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling createNamespacedRole.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling createNamespacedRole.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'POST',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1alpha1Role")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1alpha1Role");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * create a RoleBinding
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createNamespacedRoleBinding(namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/rolebindings'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling createNamespacedRoleBinding.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling createNamespacedRoleBinding.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'POST',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1alpha1RoleBinding")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1alpha1RoleBinding");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete a ClusterRole
+ * @param name name of the ClusterRole
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteClusterRole(name, pretty, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/rbac.authorization.k8s.io/v1alpha1/clusterroles/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling deleteClusterRole.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete a ClusterRoleBinding
+ * @param name name of the ClusterRoleBinding
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteClusterRoleBinding(name, pretty, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/rbac.authorization.k8s.io/v1alpha1/clusterrolebindings/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling deleteClusterRoleBinding.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete collection of ClusterRole
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionClusterRole(pretty, allowWatchBookmarks, _continue, dryRun, fieldSelector, gracePeriodSeconds, labelSelector, limit, orphanDependents, propagationPolicy, resourceVersion, timeoutSeconds, watch, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/rbac.authorization.k8s.io/v1alpha1/clusterroles';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete collection of ClusterRoleBinding
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionClusterRoleBinding(pretty, allowWatchBookmarks, _continue, dryRun, fieldSelector, gracePeriodSeconds, labelSelector, limit, orphanDependents, propagationPolicy, resourceVersion, timeoutSeconds, watch, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/rbac.authorization.k8s.io/v1alpha1/clusterrolebindings';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete collection of Role
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionNamespacedRole(namespace, pretty, allowWatchBookmarks, _continue, dryRun, fieldSelector, gracePeriodSeconds, labelSelector, limit, orphanDependents, propagationPolicy, resourceVersion, timeoutSeconds, watch, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/roles'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling deleteCollectionNamespacedRole.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete collection of RoleBinding
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionNamespacedRoleBinding(namespace, pretty, allowWatchBookmarks, _continue, dryRun, fieldSelector, gracePeriodSeconds, labelSelector, limit, orphanDependents, propagationPolicy, resourceVersion, timeoutSeconds, watch, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/rolebindings'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling deleteCollectionNamespacedRoleBinding.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete a Role
+ * @param name name of the Role
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteNamespacedRole(name, namespace, pretty, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/roles/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling deleteNamespacedRole.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling deleteNamespacedRole.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete a RoleBinding
+ * @param name name of the RoleBinding
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteNamespacedRoleBinding(name, namespace, pretty, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/rolebindings/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling deleteNamespacedRoleBinding.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling deleteNamespacedRoleBinding.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * get available resources
+ */
+ getAPIResources(options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/rbac.authorization.k8s.io/v1alpha1/';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1APIResourceList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind ClusterRole
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listClusterRole(pretty, allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/rbac.authorization.k8s.io/v1alpha1/clusterroles';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1alpha1ClusterRoleList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind ClusterRoleBinding
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listClusterRoleBinding(pretty, allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/rbac.authorization.k8s.io/v1alpha1/clusterrolebindings';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1alpha1ClusterRoleBindingList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind Role
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listNamespacedRole(namespace, pretty, allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/roles'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling listNamespacedRole.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1alpha1RoleList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind RoleBinding
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listNamespacedRoleBinding(namespace, pretty, allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/rolebindings'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling listNamespacedRoleBinding.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1alpha1RoleBindingList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind RoleBinding
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listRoleBindingForAllNamespaces(allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, pretty, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/rbac.authorization.k8s.io/v1alpha1/rolebindings';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1alpha1RoleBindingList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind Role
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listRoleForAllNamespaces(allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, pretty, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/rbac.authorization.k8s.io/v1alpha1/roles';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1alpha1RoleList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update the specified ClusterRole
+ * @param name name of the ClusterRole
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchClusterRole(name, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/rbac.authorization.k8s.io/v1alpha1/clusterroles/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchClusterRole.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchClusterRole.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1alpha1ClusterRole");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update the specified ClusterRoleBinding
+ * @param name name of the ClusterRoleBinding
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchClusterRoleBinding(name, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/rbac.authorization.k8s.io/v1alpha1/clusterrolebindings/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchClusterRoleBinding.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchClusterRoleBinding.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1alpha1ClusterRoleBinding");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update the specified Role
+ * @param name name of the Role
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedRole(name, namespace, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/roles/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchNamespacedRole.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling patchNamespacedRole.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchNamespacedRole.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1alpha1Role");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update the specified RoleBinding
+ * @param name name of the RoleBinding
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedRoleBinding(name, namespace, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/rolebindings/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchNamespacedRoleBinding.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling patchNamespacedRoleBinding.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchNamespacedRoleBinding.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1alpha1RoleBinding");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read the specified ClusterRole
+ * @param name name of the ClusterRole
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readClusterRole(name, pretty, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/rbac.authorization.k8s.io/v1alpha1/clusterroles/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readClusterRole.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1alpha1ClusterRole");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read the specified ClusterRoleBinding
+ * @param name name of the ClusterRoleBinding
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readClusterRoleBinding(name, pretty, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/rbac.authorization.k8s.io/v1alpha1/clusterrolebindings/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readClusterRoleBinding.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1alpha1ClusterRoleBinding");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read the specified Role
+ * @param name name of the Role
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readNamespacedRole(name, namespace, pretty, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/roles/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readNamespacedRole.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling readNamespacedRole.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1alpha1Role");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read the specified RoleBinding
+ * @param name name of the RoleBinding
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readNamespacedRoleBinding(name, namespace, pretty, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/rolebindings/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readNamespacedRoleBinding.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling readNamespacedRoleBinding.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1alpha1RoleBinding");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace the specified ClusterRole
+ * @param name name of the ClusterRole
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceClusterRole(name, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/rbac.authorization.k8s.io/v1alpha1/clusterroles/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceClusterRole.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceClusterRole.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1alpha1ClusterRole")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1alpha1ClusterRole");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace the specified ClusterRoleBinding
+ * @param name name of the ClusterRoleBinding
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceClusterRoleBinding(name, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/rbac.authorization.k8s.io/v1alpha1/clusterrolebindings/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceClusterRoleBinding.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceClusterRoleBinding.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1alpha1ClusterRoleBinding")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1alpha1ClusterRoleBinding");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace the specified Role
+ * @param name name of the Role
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedRole(name, namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/roles/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceNamespacedRole.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling replaceNamespacedRole.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceNamespacedRole.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1alpha1Role")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1alpha1Role");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace the specified RoleBinding
+ * @param name name of the RoleBinding
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedRoleBinding(name, namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/rolebindings/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceNamespacedRoleBinding.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling replaceNamespacedRoleBinding.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceNamespacedRoleBinding.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1alpha1RoleBinding")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1alpha1RoleBinding");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+}
+exports.RbacAuthorizationV1alpha1Api = RbacAuthorizationV1alpha1Api;
+//# sourceMappingURL=rbacAuthorizationV1alpha1Api.js.map
\ No newline at end of file
diff --git a/dist/gen/api/rbacAuthorizationV1alpha1Api.js.map b/dist/gen/api/rbacAuthorizationV1alpha1Api.js.map
new file mode 100644
index 0000000000..64f93a91dd
--- /dev/null
+++ b/dist/gen/api/rbacAuthorizationV1alpha1Api.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"rbacAuthorizationV1alpha1Api.js","sourceRoot":"","sources":["../../../src/gen/api/rbacAuthorizationV1alpha1Api.ts"],"names":[],"mappings":"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"}
\ No newline at end of file
diff --git a/dist/gen/api/rbacAuthorizationV1beta1Api.d.ts b/dist/gen/api/rbacAuthorizationV1beta1Api.d.ts
new file mode 100644
index 0000000000..c8b9b4f188
--- /dev/null
+++ b/dist/gen/api/rbacAuthorizationV1beta1Api.d.ts
@@ -0,0 +1,604 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+///
+import http = require('http');
+import { V1APIResourceList } from '../model/v1APIResourceList';
+import { V1DeleteOptions } from '../model/v1DeleteOptions';
+import { V1Status } from '../model/v1Status';
+import { V1beta1ClusterRole } from '../model/v1beta1ClusterRole';
+import { V1beta1ClusterRoleBinding } from '../model/v1beta1ClusterRoleBinding';
+import { V1beta1ClusterRoleBindingList } from '../model/v1beta1ClusterRoleBindingList';
+import { V1beta1ClusterRoleList } from '../model/v1beta1ClusterRoleList';
+import { V1beta1Role } from '../model/v1beta1Role';
+import { V1beta1RoleBinding } from '../model/v1beta1RoleBinding';
+import { V1beta1RoleBindingList } from '../model/v1beta1RoleBindingList';
+import { V1beta1RoleList } from '../model/v1beta1RoleList';
+import { Authentication } from '../model/models';
+import { ApiKeyAuth } from '../model/models';
+export declare enum RbacAuthorizationV1beta1ApiApiKeys {
+ BearerToken = 0
+}
+export declare class RbacAuthorizationV1beta1Api {
+ protected _basePath: string;
+ protected defaultHeaders: any;
+ protected _useQuerystring: boolean;
+ protected authentications: {
+ 'default': Authentication;
+ 'BearerToken': ApiKeyAuth;
+ };
+ constructor(basePath?: string);
+ useQuerystring: boolean;
+ basePath: string;
+ setDefaultAuthentication(auth: Authentication): void;
+ setApiKey(key: RbacAuthorizationV1beta1ApiApiKeys, value: string): void;
+ /**
+ * create a ClusterRole
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createClusterRole(body: V1beta1ClusterRole, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1ClusterRole;
+ }>;
+ /**
+ * create a ClusterRoleBinding
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createClusterRoleBinding(body: V1beta1ClusterRoleBinding, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1ClusterRoleBinding;
+ }>;
+ /**
+ * create a Role
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createNamespacedRole(namespace: string, body: V1beta1Role, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1Role;
+ }>;
+ /**
+ * create a RoleBinding
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createNamespacedRoleBinding(namespace: string, body: V1beta1RoleBinding, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1RoleBinding;
+ }>;
+ /**
+ * delete a ClusterRole
+ * @param name name of the ClusterRole
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteClusterRole(name: string, pretty?: string, dryRun?: string, gracePeriodSeconds?: number, orphanDependents?: boolean, propagationPolicy?: string, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete a ClusterRoleBinding
+ * @param name name of the ClusterRoleBinding
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteClusterRoleBinding(name: string, pretty?: string, dryRun?: string, gracePeriodSeconds?: number, orphanDependents?: boolean, propagationPolicy?: string, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete collection of ClusterRole
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionClusterRole(pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, dryRun?: string, fieldSelector?: string, gracePeriodSeconds?: number, labelSelector?: string, limit?: number, orphanDependents?: boolean, propagationPolicy?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete collection of ClusterRoleBinding
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionClusterRoleBinding(pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, dryRun?: string, fieldSelector?: string, gracePeriodSeconds?: number, labelSelector?: string, limit?: number, orphanDependents?: boolean, propagationPolicy?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete collection of Role
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionNamespacedRole(namespace: string, pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, dryRun?: string, fieldSelector?: string, gracePeriodSeconds?: number, labelSelector?: string, limit?: number, orphanDependents?: boolean, propagationPolicy?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete collection of RoleBinding
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionNamespacedRoleBinding(namespace: string, pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, dryRun?: string, fieldSelector?: string, gracePeriodSeconds?: number, labelSelector?: string, limit?: number, orphanDependents?: boolean, propagationPolicy?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete a Role
+ * @param name name of the Role
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteNamespacedRole(name: string, namespace: string, pretty?: string, dryRun?: string, gracePeriodSeconds?: number, orphanDependents?: boolean, propagationPolicy?: string, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete a RoleBinding
+ * @param name name of the RoleBinding
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteNamespacedRoleBinding(name: string, namespace: string, pretty?: string, dryRun?: string, gracePeriodSeconds?: number, orphanDependents?: boolean, propagationPolicy?: string, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * get available resources
+ */
+ getAPIResources(options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1APIResourceList;
+ }>;
+ /**
+ * list or watch objects of kind ClusterRole
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listClusterRole(pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1ClusterRoleList;
+ }>;
+ /**
+ * list or watch objects of kind ClusterRoleBinding
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listClusterRoleBinding(pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1ClusterRoleBindingList;
+ }>;
+ /**
+ * list or watch objects of kind Role
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listNamespacedRole(namespace: string, pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1RoleList;
+ }>;
+ /**
+ * list or watch objects of kind RoleBinding
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listNamespacedRoleBinding(namespace: string, pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1RoleBindingList;
+ }>;
+ /**
+ * list or watch objects of kind RoleBinding
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listRoleBindingForAllNamespaces(allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, pretty?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1RoleBindingList;
+ }>;
+ /**
+ * list or watch objects of kind Role
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listRoleForAllNamespaces(allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, pretty?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1RoleList;
+ }>;
+ /**
+ * partially update the specified ClusterRole
+ * @param name name of the ClusterRole
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchClusterRole(name: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1ClusterRole;
+ }>;
+ /**
+ * partially update the specified ClusterRoleBinding
+ * @param name name of the ClusterRoleBinding
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchClusterRoleBinding(name: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1ClusterRoleBinding;
+ }>;
+ /**
+ * partially update the specified Role
+ * @param name name of the Role
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedRole(name: string, namespace: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1Role;
+ }>;
+ /**
+ * partially update the specified RoleBinding
+ * @param name name of the RoleBinding
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedRoleBinding(name: string, namespace: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1RoleBinding;
+ }>;
+ /**
+ * read the specified ClusterRole
+ * @param name name of the ClusterRole
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readClusterRole(name: string, pretty?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1ClusterRole;
+ }>;
+ /**
+ * read the specified ClusterRoleBinding
+ * @param name name of the ClusterRoleBinding
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readClusterRoleBinding(name: string, pretty?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1ClusterRoleBinding;
+ }>;
+ /**
+ * read the specified Role
+ * @param name name of the Role
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readNamespacedRole(name: string, namespace: string, pretty?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1Role;
+ }>;
+ /**
+ * read the specified RoleBinding
+ * @param name name of the RoleBinding
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readNamespacedRoleBinding(name: string, namespace: string, pretty?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1RoleBinding;
+ }>;
+ /**
+ * replace the specified ClusterRole
+ * @param name name of the ClusterRole
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceClusterRole(name: string, body: V1beta1ClusterRole, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1ClusterRole;
+ }>;
+ /**
+ * replace the specified ClusterRoleBinding
+ * @param name name of the ClusterRoleBinding
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceClusterRoleBinding(name: string, body: V1beta1ClusterRoleBinding, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1ClusterRoleBinding;
+ }>;
+ /**
+ * replace the specified Role
+ * @param name name of the Role
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedRole(name: string, namespace: string, body: V1beta1Role, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1Role;
+ }>;
+ /**
+ * replace the specified RoleBinding
+ * @param name name of the RoleBinding
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedRoleBinding(name: string, namespace: string, body: V1beta1RoleBinding, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1RoleBinding;
+ }>;
+}
diff --git a/dist/gen/api/rbacAuthorizationV1beta1Api.js b/dist/gen/api/rbacAuthorizationV1beta1Api.js
new file mode 100644
index 0000000000..6b213e708d
--- /dev/null
+++ b/dist/gen/api/rbacAuthorizationV1beta1Api.js
@@ -0,0 +1,2561 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+const tslib_1 = require("tslib");
+const localVarRequest = require("request");
+const models_1 = require("../model/models");
+const models_2 = require("../model/models");
+let defaultBasePath = 'http://localhost/';
+// ===============================================
+// This file is autogenerated - Please do not edit
+// ===============================================
+var RbacAuthorizationV1beta1ApiApiKeys;
+(function (RbacAuthorizationV1beta1ApiApiKeys) {
+ RbacAuthorizationV1beta1ApiApiKeys[RbacAuthorizationV1beta1ApiApiKeys["BearerToken"] = 0] = "BearerToken";
+})(RbacAuthorizationV1beta1ApiApiKeys = exports.RbacAuthorizationV1beta1ApiApiKeys || (exports.RbacAuthorizationV1beta1ApiApiKeys = {}));
+class RbacAuthorizationV1beta1Api {
+ constructor(basePathOrUsername, password, basePath) {
+ this._basePath = defaultBasePath;
+ this.defaultHeaders = {};
+ this._useQuerystring = false;
+ this.authentications = {
+ 'default': new models_1.VoidAuth(),
+ 'BearerToken': new models_2.ApiKeyAuth('header', 'authorization'),
+ };
+ if (password) {
+ if (basePath) {
+ this.basePath = basePath;
+ }
+ }
+ else {
+ if (basePathOrUsername) {
+ this.basePath = basePathOrUsername;
+ }
+ }
+ }
+ set useQuerystring(value) {
+ this._useQuerystring = value;
+ }
+ set basePath(basePath) {
+ this._basePath = basePath;
+ }
+ get basePath() {
+ return this._basePath;
+ }
+ setDefaultAuthentication(auth) {
+ this.authentications.default = auth;
+ }
+ setApiKey(key, value) {
+ this.authentications[RbacAuthorizationV1beta1ApiApiKeys[key]].apiKey = value;
+ }
+ /**
+ * create a ClusterRole
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createClusterRole(body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/rbac.authorization.k8s.io/v1beta1/clusterroles';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling createClusterRole.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'POST',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1beta1ClusterRole")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1ClusterRole");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * create a ClusterRoleBinding
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createClusterRoleBinding(body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/rbac.authorization.k8s.io/v1beta1/clusterrolebindings';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling createClusterRoleBinding.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'POST',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1beta1ClusterRoleBinding")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1ClusterRoleBinding");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * create a Role
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createNamespacedRole(namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/rbac.authorization.k8s.io/v1beta1/namespaces/{namespace}/roles'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling createNamespacedRole.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling createNamespacedRole.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'POST',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1beta1Role")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1Role");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * create a RoleBinding
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createNamespacedRoleBinding(namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/rbac.authorization.k8s.io/v1beta1/namespaces/{namespace}/rolebindings'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling createNamespacedRoleBinding.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling createNamespacedRoleBinding.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'POST',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1beta1RoleBinding")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1RoleBinding");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete a ClusterRole
+ * @param name name of the ClusterRole
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteClusterRole(name, pretty, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/rbac.authorization.k8s.io/v1beta1/clusterroles/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling deleteClusterRole.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete a ClusterRoleBinding
+ * @param name name of the ClusterRoleBinding
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteClusterRoleBinding(name, pretty, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/rbac.authorization.k8s.io/v1beta1/clusterrolebindings/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling deleteClusterRoleBinding.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete collection of ClusterRole
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionClusterRole(pretty, allowWatchBookmarks, _continue, dryRun, fieldSelector, gracePeriodSeconds, labelSelector, limit, orphanDependents, propagationPolicy, resourceVersion, timeoutSeconds, watch, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/rbac.authorization.k8s.io/v1beta1/clusterroles';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete collection of ClusterRoleBinding
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionClusterRoleBinding(pretty, allowWatchBookmarks, _continue, dryRun, fieldSelector, gracePeriodSeconds, labelSelector, limit, orphanDependents, propagationPolicy, resourceVersion, timeoutSeconds, watch, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/rbac.authorization.k8s.io/v1beta1/clusterrolebindings';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete collection of Role
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionNamespacedRole(namespace, pretty, allowWatchBookmarks, _continue, dryRun, fieldSelector, gracePeriodSeconds, labelSelector, limit, orphanDependents, propagationPolicy, resourceVersion, timeoutSeconds, watch, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/rbac.authorization.k8s.io/v1beta1/namespaces/{namespace}/roles'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling deleteCollectionNamespacedRole.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete collection of RoleBinding
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionNamespacedRoleBinding(namespace, pretty, allowWatchBookmarks, _continue, dryRun, fieldSelector, gracePeriodSeconds, labelSelector, limit, orphanDependents, propagationPolicy, resourceVersion, timeoutSeconds, watch, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/rbac.authorization.k8s.io/v1beta1/namespaces/{namespace}/rolebindings'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling deleteCollectionNamespacedRoleBinding.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete a Role
+ * @param name name of the Role
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteNamespacedRole(name, namespace, pretty, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/rbac.authorization.k8s.io/v1beta1/namespaces/{namespace}/roles/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling deleteNamespacedRole.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling deleteNamespacedRole.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete a RoleBinding
+ * @param name name of the RoleBinding
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteNamespacedRoleBinding(name, namespace, pretty, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/rbac.authorization.k8s.io/v1beta1/namespaces/{namespace}/rolebindings/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling deleteNamespacedRoleBinding.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling deleteNamespacedRoleBinding.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * get available resources
+ */
+ getAPIResources(options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/rbac.authorization.k8s.io/v1beta1/';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1APIResourceList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind ClusterRole
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listClusterRole(pretty, allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/rbac.authorization.k8s.io/v1beta1/clusterroles';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1ClusterRoleList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind ClusterRoleBinding
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listClusterRoleBinding(pretty, allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/rbac.authorization.k8s.io/v1beta1/clusterrolebindings';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1ClusterRoleBindingList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind Role
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listNamespacedRole(namespace, pretty, allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/rbac.authorization.k8s.io/v1beta1/namespaces/{namespace}/roles'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling listNamespacedRole.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1RoleList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind RoleBinding
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listNamespacedRoleBinding(namespace, pretty, allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/rbac.authorization.k8s.io/v1beta1/namespaces/{namespace}/rolebindings'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling listNamespacedRoleBinding.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1RoleBindingList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind RoleBinding
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listRoleBindingForAllNamespaces(allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, pretty, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/rbac.authorization.k8s.io/v1beta1/rolebindings';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1RoleBindingList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind Role
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listRoleForAllNamespaces(allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, pretty, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/rbac.authorization.k8s.io/v1beta1/roles';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1RoleList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update the specified ClusterRole
+ * @param name name of the ClusterRole
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchClusterRole(name, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/rbac.authorization.k8s.io/v1beta1/clusterroles/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchClusterRole.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchClusterRole.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1ClusterRole");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update the specified ClusterRoleBinding
+ * @param name name of the ClusterRoleBinding
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchClusterRoleBinding(name, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/rbac.authorization.k8s.io/v1beta1/clusterrolebindings/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchClusterRoleBinding.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchClusterRoleBinding.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1ClusterRoleBinding");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update the specified Role
+ * @param name name of the Role
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedRole(name, namespace, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/rbac.authorization.k8s.io/v1beta1/namespaces/{namespace}/roles/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchNamespacedRole.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling patchNamespacedRole.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchNamespacedRole.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1Role");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update the specified RoleBinding
+ * @param name name of the RoleBinding
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedRoleBinding(name, namespace, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/rbac.authorization.k8s.io/v1beta1/namespaces/{namespace}/rolebindings/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchNamespacedRoleBinding.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling patchNamespacedRoleBinding.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchNamespacedRoleBinding.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1RoleBinding");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read the specified ClusterRole
+ * @param name name of the ClusterRole
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readClusterRole(name, pretty, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/rbac.authorization.k8s.io/v1beta1/clusterroles/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readClusterRole.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1ClusterRole");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read the specified ClusterRoleBinding
+ * @param name name of the ClusterRoleBinding
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readClusterRoleBinding(name, pretty, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/rbac.authorization.k8s.io/v1beta1/clusterrolebindings/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readClusterRoleBinding.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1ClusterRoleBinding");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read the specified Role
+ * @param name name of the Role
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readNamespacedRole(name, namespace, pretty, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/rbac.authorization.k8s.io/v1beta1/namespaces/{namespace}/roles/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readNamespacedRole.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling readNamespacedRole.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1Role");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read the specified RoleBinding
+ * @param name name of the RoleBinding
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readNamespacedRoleBinding(name, namespace, pretty, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/rbac.authorization.k8s.io/v1beta1/namespaces/{namespace}/rolebindings/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readNamespacedRoleBinding.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling readNamespacedRoleBinding.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1RoleBinding");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace the specified ClusterRole
+ * @param name name of the ClusterRole
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceClusterRole(name, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/rbac.authorization.k8s.io/v1beta1/clusterroles/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceClusterRole.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceClusterRole.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1beta1ClusterRole")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1ClusterRole");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace the specified ClusterRoleBinding
+ * @param name name of the ClusterRoleBinding
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceClusterRoleBinding(name, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/rbac.authorization.k8s.io/v1beta1/clusterrolebindings/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceClusterRoleBinding.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceClusterRoleBinding.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1beta1ClusterRoleBinding")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1ClusterRoleBinding");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace the specified Role
+ * @param name name of the Role
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedRole(name, namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/rbac.authorization.k8s.io/v1beta1/namespaces/{namespace}/roles/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceNamespacedRole.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling replaceNamespacedRole.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceNamespacedRole.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1beta1Role")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1Role");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace the specified RoleBinding
+ * @param name name of the RoleBinding
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedRoleBinding(name, namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/rbac.authorization.k8s.io/v1beta1/namespaces/{namespace}/rolebindings/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceNamespacedRoleBinding.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling replaceNamespacedRoleBinding.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceNamespacedRoleBinding.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1beta1RoleBinding")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1RoleBinding");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+}
+exports.RbacAuthorizationV1beta1Api = RbacAuthorizationV1beta1Api;
+//# sourceMappingURL=rbacAuthorizationV1beta1Api.js.map
\ No newline at end of file
diff --git a/dist/gen/api/rbacAuthorizationV1beta1Api.js.map b/dist/gen/api/rbacAuthorizationV1beta1Api.js.map
new file mode 100644
index 0000000000..a65e2dba84
--- /dev/null
+++ b/dist/gen/api/rbacAuthorizationV1beta1Api.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"rbacAuthorizationV1beta1Api.js","sourceRoot":"","sources":["../../../src/gen/api/rbacAuthorizationV1beta1Api.ts"],"names":[],"mappings":"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"}
\ No newline at end of file
diff --git a/dist/gen/api/schedulingApi.d.ts b/dist/gen/api/schedulingApi.d.ts
new file mode 100644
index 0000000000..89f26c50b8
--- /dev/null
+++ b/dist/gen/api/schedulingApi.d.ts
@@ -0,0 +1,44 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+///
+import http = require('http');
+import { V1APIGroup } from '../model/v1APIGroup';
+import { Authentication } from '../model/models';
+import { ApiKeyAuth } from '../model/models';
+export declare enum SchedulingApiApiKeys {
+ BearerToken = 0
+}
+export declare class SchedulingApi {
+ protected _basePath: string;
+ protected defaultHeaders: any;
+ protected _useQuerystring: boolean;
+ protected authentications: {
+ 'default': Authentication;
+ 'BearerToken': ApiKeyAuth;
+ };
+ constructor(basePath?: string);
+ useQuerystring: boolean;
+ basePath: string;
+ setDefaultAuthentication(auth: Authentication): void;
+ setApiKey(key: SchedulingApiApiKeys, value: string): void;
+ /**
+ * get information of a group
+ */
+ getAPIGroup(options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1APIGroup;
+ }>;
+}
diff --git a/dist/gen/api/schedulingApi.js b/dist/gen/api/schedulingApi.js
new file mode 100644
index 0000000000..cd6c889805
--- /dev/null
+++ b/dist/gen/api/schedulingApi.js
@@ -0,0 +1,113 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+const tslib_1 = require("tslib");
+const localVarRequest = require("request");
+const models_1 = require("../model/models");
+const models_2 = require("../model/models");
+let defaultBasePath = 'http://localhost/';
+// ===============================================
+// This file is autogenerated - Please do not edit
+// ===============================================
+var SchedulingApiApiKeys;
+(function (SchedulingApiApiKeys) {
+ SchedulingApiApiKeys[SchedulingApiApiKeys["BearerToken"] = 0] = "BearerToken";
+})(SchedulingApiApiKeys = exports.SchedulingApiApiKeys || (exports.SchedulingApiApiKeys = {}));
+class SchedulingApi {
+ constructor(basePathOrUsername, password, basePath) {
+ this._basePath = defaultBasePath;
+ this.defaultHeaders = {};
+ this._useQuerystring = false;
+ this.authentications = {
+ 'default': new models_1.VoidAuth(),
+ 'BearerToken': new models_2.ApiKeyAuth('header', 'authorization'),
+ };
+ if (password) {
+ if (basePath) {
+ this.basePath = basePath;
+ }
+ }
+ else {
+ if (basePathOrUsername) {
+ this.basePath = basePathOrUsername;
+ }
+ }
+ }
+ set useQuerystring(value) {
+ this._useQuerystring = value;
+ }
+ set basePath(basePath) {
+ this._basePath = basePath;
+ }
+ get basePath() {
+ return this._basePath;
+ }
+ setDefaultAuthentication(auth) {
+ this.authentications.default = auth;
+ }
+ setApiKey(key, value) {
+ this.authentications[SchedulingApiApiKeys[key]].apiKey = value;
+ }
+ /**
+ * get information of a group
+ */
+ getAPIGroup(options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/scheduling.k8s.io/';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1APIGroup");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+}
+exports.SchedulingApi = SchedulingApi;
+//# sourceMappingURL=schedulingApi.js.map
\ No newline at end of file
diff --git a/dist/gen/api/schedulingApi.js.map b/dist/gen/api/schedulingApi.js.map
new file mode 100644
index 0000000000..6dc71a217b
--- /dev/null
+++ b/dist/gen/api/schedulingApi.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"schedulingApi.js","sourceRoot":"","sources":["../../../src/gen/api/schedulingApi.ts"],"names":[],"mappings":"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"}
\ No newline at end of file
diff --git a/dist/gen/api/schedulingV1Api.d.ts b/dist/gen/api/schedulingV1Api.d.ts
new file mode 100644
index 0000000000..a5e03fa008
--- /dev/null
+++ b/dist/gen/api/schedulingV1Api.d.ts
@@ -0,0 +1,174 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+///
+import http = require('http');
+import { V1APIResourceList } from '../model/v1APIResourceList';
+import { V1DeleteOptions } from '../model/v1DeleteOptions';
+import { V1PriorityClass } from '../model/v1PriorityClass';
+import { V1PriorityClassList } from '../model/v1PriorityClassList';
+import { V1Status } from '../model/v1Status';
+import { Authentication } from '../model/models';
+import { ApiKeyAuth } from '../model/models';
+export declare enum SchedulingV1ApiApiKeys {
+ BearerToken = 0
+}
+export declare class SchedulingV1Api {
+ protected _basePath: string;
+ protected defaultHeaders: any;
+ protected _useQuerystring: boolean;
+ protected authentications: {
+ 'default': Authentication;
+ 'BearerToken': ApiKeyAuth;
+ };
+ constructor(basePath?: string);
+ useQuerystring: boolean;
+ basePath: string;
+ setDefaultAuthentication(auth: Authentication): void;
+ setApiKey(key: SchedulingV1ApiApiKeys, value: string): void;
+ /**
+ * create a PriorityClass
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createPriorityClass(body: V1PriorityClass, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1PriorityClass;
+ }>;
+ /**
+ * delete collection of PriorityClass
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionPriorityClass(pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, dryRun?: string, fieldSelector?: string, gracePeriodSeconds?: number, labelSelector?: string, limit?: number, orphanDependents?: boolean, propagationPolicy?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete a PriorityClass
+ * @param name name of the PriorityClass
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deletePriorityClass(name: string, pretty?: string, dryRun?: string, gracePeriodSeconds?: number, orphanDependents?: boolean, propagationPolicy?: string, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * get available resources
+ */
+ getAPIResources(options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1APIResourceList;
+ }>;
+ /**
+ * list or watch objects of kind PriorityClass
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listPriorityClass(pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1PriorityClassList;
+ }>;
+ /**
+ * partially update the specified PriorityClass
+ * @param name name of the PriorityClass
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchPriorityClass(name: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1PriorityClass;
+ }>;
+ /**
+ * read the specified PriorityClass
+ * @param name name of the PriorityClass
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readPriorityClass(name: string, pretty?: string, exact?: boolean, _export?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1PriorityClass;
+ }>;
+ /**
+ * replace the specified PriorityClass
+ * @param name name of the PriorityClass
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replacePriorityClass(name: string, body: V1PriorityClass, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1PriorityClass;
+ }>;
+}
diff --git a/dist/gen/api/schedulingV1Api.js b/dist/gen/api/schedulingV1Api.js
new file mode 100644
index 0000000000..a964821d5f
--- /dev/null
+++ b/dist/gen/api/schedulingV1Api.js
@@ -0,0 +1,669 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+const tslib_1 = require("tslib");
+const localVarRequest = require("request");
+const models_1 = require("../model/models");
+const models_2 = require("../model/models");
+let defaultBasePath = 'http://localhost/';
+// ===============================================
+// This file is autogenerated - Please do not edit
+// ===============================================
+var SchedulingV1ApiApiKeys;
+(function (SchedulingV1ApiApiKeys) {
+ SchedulingV1ApiApiKeys[SchedulingV1ApiApiKeys["BearerToken"] = 0] = "BearerToken";
+})(SchedulingV1ApiApiKeys = exports.SchedulingV1ApiApiKeys || (exports.SchedulingV1ApiApiKeys = {}));
+class SchedulingV1Api {
+ constructor(basePathOrUsername, password, basePath) {
+ this._basePath = defaultBasePath;
+ this.defaultHeaders = {};
+ this._useQuerystring = false;
+ this.authentications = {
+ 'default': new models_1.VoidAuth(),
+ 'BearerToken': new models_2.ApiKeyAuth('header', 'authorization'),
+ };
+ if (password) {
+ if (basePath) {
+ this.basePath = basePath;
+ }
+ }
+ else {
+ if (basePathOrUsername) {
+ this.basePath = basePathOrUsername;
+ }
+ }
+ }
+ set useQuerystring(value) {
+ this._useQuerystring = value;
+ }
+ set basePath(basePath) {
+ this._basePath = basePath;
+ }
+ get basePath() {
+ return this._basePath;
+ }
+ setDefaultAuthentication(auth) {
+ this.authentications.default = auth;
+ }
+ setApiKey(key, value) {
+ this.authentications[SchedulingV1ApiApiKeys[key]].apiKey = value;
+ }
+ /**
+ * create a PriorityClass
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createPriorityClass(body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/scheduling.k8s.io/v1/priorityclasses';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling createPriorityClass.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'POST',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1PriorityClass")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1PriorityClass");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete collection of PriorityClass
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionPriorityClass(pretty, allowWatchBookmarks, _continue, dryRun, fieldSelector, gracePeriodSeconds, labelSelector, limit, orphanDependents, propagationPolicy, resourceVersion, timeoutSeconds, watch, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/scheduling.k8s.io/v1/priorityclasses';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete a PriorityClass
+ * @param name name of the PriorityClass
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deletePriorityClass(name, pretty, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/scheduling.k8s.io/v1/priorityclasses/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling deletePriorityClass.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * get available resources
+ */
+ getAPIResources(options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/scheduling.k8s.io/v1/';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1APIResourceList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind PriorityClass
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listPriorityClass(pretty, allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/scheduling.k8s.io/v1/priorityclasses';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1PriorityClassList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update the specified PriorityClass
+ * @param name name of the PriorityClass
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchPriorityClass(name, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/scheduling.k8s.io/v1/priorityclasses/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchPriorityClass.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchPriorityClass.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1PriorityClass");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read the specified PriorityClass
+ * @param name name of the PriorityClass
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readPriorityClass(name, pretty, exact, _export, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/scheduling.k8s.io/v1/priorityclasses/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readPriorityClass.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (exact !== undefined) {
+ localVarQueryParameters['exact'] = models_1.ObjectSerializer.serialize(exact, "boolean");
+ }
+ if (_export !== undefined) {
+ localVarQueryParameters['export'] = models_1.ObjectSerializer.serialize(_export, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1PriorityClass");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace the specified PriorityClass
+ * @param name name of the PriorityClass
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replacePriorityClass(name, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/scheduling.k8s.io/v1/priorityclasses/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replacePriorityClass.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replacePriorityClass.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1PriorityClass")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1PriorityClass");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+}
+exports.SchedulingV1Api = SchedulingV1Api;
+//# sourceMappingURL=schedulingV1Api.js.map
\ No newline at end of file
diff --git a/dist/gen/api/schedulingV1Api.js.map b/dist/gen/api/schedulingV1Api.js.map
new file mode 100644
index 0000000000..6aaa8c4020
--- /dev/null
+++ b/dist/gen/api/schedulingV1Api.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"schedulingV1Api.js","sourceRoot":"","sources":["../../../src/gen/api/schedulingV1Api.ts"],"names":[],"mappings":"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"}
\ No newline at end of file
diff --git a/dist/gen/api/schedulingV1alpha1Api.d.ts b/dist/gen/api/schedulingV1alpha1Api.d.ts
new file mode 100644
index 0000000000..ad4737c78b
--- /dev/null
+++ b/dist/gen/api/schedulingV1alpha1Api.d.ts
@@ -0,0 +1,174 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+///
+import http = require('http');
+import { V1APIResourceList } from '../model/v1APIResourceList';
+import { V1DeleteOptions } from '../model/v1DeleteOptions';
+import { V1Status } from '../model/v1Status';
+import { V1alpha1PriorityClass } from '../model/v1alpha1PriorityClass';
+import { V1alpha1PriorityClassList } from '../model/v1alpha1PriorityClassList';
+import { Authentication } from '../model/models';
+import { ApiKeyAuth } from '../model/models';
+export declare enum SchedulingV1alpha1ApiApiKeys {
+ BearerToken = 0
+}
+export declare class SchedulingV1alpha1Api {
+ protected _basePath: string;
+ protected defaultHeaders: any;
+ protected _useQuerystring: boolean;
+ protected authentications: {
+ 'default': Authentication;
+ 'BearerToken': ApiKeyAuth;
+ };
+ constructor(basePath?: string);
+ useQuerystring: boolean;
+ basePath: string;
+ setDefaultAuthentication(auth: Authentication): void;
+ setApiKey(key: SchedulingV1alpha1ApiApiKeys, value: string): void;
+ /**
+ * create a PriorityClass
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createPriorityClass(body: V1alpha1PriorityClass, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1alpha1PriorityClass;
+ }>;
+ /**
+ * delete collection of PriorityClass
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionPriorityClass(pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, dryRun?: string, fieldSelector?: string, gracePeriodSeconds?: number, labelSelector?: string, limit?: number, orphanDependents?: boolean, propagationPolicy?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete a PriorityClass
+ * @param name name of the PriorityClass
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deletePriorityClass(name: string, pretty?: string, dryRun?: string, gracePeriodSeconds?: number, orphanDependents?: boolean, propagationPolicy?: string, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * get available resources
+ */
+ getAPIResources(options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1APIResourceList;
+ }>;
+ /**
+ * list or watch objects of kind PriorityClass
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listPriorityClass(pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1alpha1PriorityClassList;
+ }>;
+ /**
+ * partially update the specified PriorityClass
+ * @param name name of the PriorityClass
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchPriorityClass(name: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1alpha1PriorityClass;
+ }>;
+ /**
+ * read the specified PriorityClass
+ * @param name name of the PriorityClass
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readPriorityClass(name: string, pretty?: string, exact?: boolean, _export?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1alpha1PriorityClass;
+ }>;
+ /**
+ * replace the specified PriorityClass
+ * @param name name of the PriorityClass
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replacePriorityClass(name: string, body: V1alpha1PriorityClass, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1alpha1PriorityClass;
+ }>;
+}
diff --git a/dist/gen/api/schedulingV1alpha1Api.js b/dist/gen/api/schedulingV1alpha1Api.js
new file mode 100644
index 0000000000..9b79089a09
--- /dev/null
+++ b/dist/gen/api/schedulingV1alpha1Api.js
@@ -0,0 +1,669 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+const tslib_1 = require("tslib");
+const localVarRequest = require("request");
+const models_1 = require("../model/models");
+const models_2 = require("../model/models");
+let defaultBasePath = 'http://localhost/';
+// ===============================================
+// This file is autogenerated - Please do not edit
+// ===============================================
+var SchedulingV1alpha1ApiApiKeys;
+(function (SchedulingV1alpha1ApiApiKeys) {
+ SchedulingV1alpha1ApiApiKeys[SchedulingV1alpha1ApiApiKeys["BearerToken"] = 0] = "BearerToken";
+})(SchedulingV1alpha1ApiApiKeys = exports.SchedulingV1alpha1ApiApiKeys || (exports.SchedulingV1alpha1ApiApiKeys = {}));
+class SchedulingV1alpha1Api {
+ constructor(basePathOrUsername, password, basePath) {
+ this._basePath = defaultBasePath;
+ this.defaultHeaders = {};
+ this._useQuerystring = false;
+ this.authentications = {
+ 'default': new models_1.VoidAuth(),
+ 'BearerToken': new models_2.ApiKeyAuth('header', 'authorization'),
+ };
+ if (password) {
+ if (basePath) {
+ this.basePath = basePath;
+ }
+ }
+ else {
+ if (basePathOrUsername) {
+ this.basePath = basePathOrUsername;
+ }
+ }
+ }
+ set useQuerystring(value) {
+ this._useQuerystring = value;
+ }
+ set basePath(basePath) {
+ this._basePath = basePath;
+ }
+ get basePath() {
+ return this._basePath;
+ }
+ setDefaultAuthentication(auth) {
+ this.authentications.default = auth;
+ }
+ setApiKey(key, value) {
+ this.authentications[SchedulingV1alpha1ApiApiKeys[key]].apiKey = value;
+ }
+ /**
+ * create a PriorityClass
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createPriorityClass(body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/scheduling.k8s.io/v1alpha1/priorityclasses';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling createPriorityClass.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'POST',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1alpha1PriorityClass")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1alpha1PriorityClass");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete collection of PriorityClass
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionPriorityClass(pretty, allowWatchBookmarks, _continue, dryRun, fieldSelector, gracePeriodSeconds, labelSelector, limit, orphanDependents, propagationPolicy, resourceVersion, timeoutSeconds, watch, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/scheduling.k8s.io/v1alpha1/priorityclasses';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete a PriorityClass
+ * @param name name of the PriorityClass
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deletePriorityClass(name, pretty, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/scheduling.k8s.io/v1alpha1/priorityclasses/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling deletePriorityClass.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * get available resources
+ */
+ getAPIResources(options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/scheduling.k8s.io/v1alpha1/';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1APIResourceList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind PriorityClass
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listPriorityClass(pretty, allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/scheduling.k8s.io/v1alpha1/priorityclasses';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1alpha1PriorityClassList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update the specified PriorityClass
+ * @param name name of the PriorityClass
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchPriorityClass(name, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/scheduling.k8s.io/v1alpha1/priorityclasses/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchPriorityClass.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchPriorityClass.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1alpha1PriorityClass");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read the specified PriorityClass
+ * @param name name of the PriorityClass
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readPriorityClass(name, pretty, exact, _export, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/scheduling.k8s.io/v1alpha1/priorityclasses/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readPriorityClass.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (exact !== undefined) {
+ localVarQueryParameters['exact'] = models_1.ObjectSerializer.serialize(exact, "boolean");
+ }
+ if (_export !== undefined) {
+ localVarQueryParameters['export'] = models_1.ObjectSerializer.serialize(_export, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1alpha1PriorityClass");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace the specified PriorityClass
+ * @param name name of the PriorityClass
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replacePriorityClass(name, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/scheduling.k8s.io/v1alpha1/priorityclasses/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replacePriorityClass.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replacePriorityClass.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1alpha1PriorityClass")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1alpha1PriorityClass");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+}
+exports.SchedulingV1alpha1Api = SchedulingV1alpha1Api;
+//# sourceMappingURL=schedulingV1alpha1Api.js.map
\ No newline at end of file
diff --git a/dist/gen/api/schedulingV1alpha1Api.js.map b/dist/gen/api/schedulingV1alpha1Api.js.map
new file mode 100644
index 0000000000..a7dfc64085
--- /dev/null
+++ b/dist/gen/api/schedulingV1alpha1Api.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"schedulingV1alpha1Api.js","sourceRoot":"","sources":["../../../src/gen/api/schedulingV1alpha1Api.ts"],"names":[],"mappings":"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"}
\ No newline at end of file
diff --git a/dist/gen/api/schedulingV1beta1Api.d.ts b/dist/gen/api/schedulingV1beta1Api.d.ts
new file mode 100644
index 0000000000..114a0c9f78
--- /dev/null
+++ b/dist/gen/api/schedulingV1beta1Api.d.ts
@@ -0,0 +1,174 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+///
+import http = require('http');
+import { V1APIResourceList } from '../model/v1APIResourceList';
+import { V1DeleteOptions } from '../model/v1DeleteOptions';
+import { V1Status } from '../model/v1Status';
+import { V1beta1PriorityClass } from '../model/v1beta1PriorityClass';
+import { V1beta1PriorityClassList } from '../model/v1beta1PriorityClassList';
+import { Authentication } from '../model/models';
+import { ApiKeyAuth } from '../model/models';
+export declare enum SchedulingV1beta1ApiApiKeys {
+ BearerToken = 0
+}
+export declare class SchedulingV1beta1Api {
+ protected _basePath: string;
+ protected defaultHeaders: any;
+ protected _useQuerystring: boolean;
+ protected authentications: {
+ 'default': Authentication;
+ 'BearerToken': ApiKeyAuth;
+ };
+ constructor(basePath?: string);
+ useQuerystring: boolean;
+ basePath: string;
+ setDefaultAuthentication(auth: Authentication): void;
+ setApiKey(key: SchedulingV1beta1ApiApiKeys, value: string): void;
+ /**
+ * create a PriorityClass
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createPriorityClass(body: V1beta1PriorityClass, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1PriorityClass;
+ }>;
+ /**
+ * delete collection of PriorityClass
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionPriorityClass(pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, dryRun?: string, fieldSelector?: string, gracePeriodSeconds?: number, labelSelector?: string, limit?: number, orphanDependents?: boolean, propagationPolicy?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete a PriorityClass
+ * @param name name of the PriorityClass
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deletePriorityClass(name: string, pretty?: string, dryRun?: string, gracePeriodSeconds?: number, orphanDependents?: boolean, propagationPolicy?: string, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * get available resources
+ */
+ getAPIResources(options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1APIResourceList;
+ }>;
+ /**
+ * list or watch objects of kind PriorityClass
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listPriorityClass(pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1PriorityClassList;
+ }>;
+ /**
+ * partially update the specified PriorityClass
+ * @param name name of the PriorityClass
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchPriorityClass(name: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1PriorityClass;
+ }>;
+ /**
+ * read the specified PriorityClass
+ * @param name name of the PriorityClass
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readPriorityClass(name: string, pretty?: string, exact?: boolean, _export?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1PriorityClass;
+ }>;
+ /**
+ * replace the specified PriorityClass
+ * @param name name of the PriorityClass
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replacePriorityClass(name: string, body: V1beta1PriorityClass, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1PriorityClass;
+ }>;
+}
diff --git a/dist/gen/api/schedulingV1beta1Api.js b/dist/gen/api/schedulingV1beta1Api.js
new file mode 100644
index 0000000000..04c79318e0
--- /dev/null
+++ b/dist/gen/api/schedulingV1beta1Api.js
@@ -0,0 +1,669 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+const tslib_1 = require("tslib");
+const localVarRequest = require("request");
+const models_1 = require("../model/models");
+const models_2 = require("../model/models");
+let defaultBasePath = 'http://localhost/';
+// ===============================================
+// This file is autogenerated - Please do not edit
+// ===============================================
+var SchedulingV1beta1ApiApiKeys;
+(function (SchedulingV1beta1ApiApiKeys) {
+ SchedulingV1beta1ApiApiKeys[SchedulingV1beta1ApiApiKeys["BearerToken"] = 0] = "BearerToken";
+})(SchedulingV1beta1ApiApiKeys = exports.SchedulingV1beta1ApiApiKeys || (exports.SchedulingV1beta1ApiApiKeys = {}));
+class SchedulingV1beta1Api {
+ constructor(basePathOrUsername, password, basePath) {
+ this._basePath = defaultBasePath;
+ this.defaultHeaders = {};
+ this._useQuerystring = false;
+ this.authentications = {
+ 'default': new models_1.VoidAuth(),
+ 'BearerToken': new models_2.ApiKeyAuth('header', 'authorization'),
+ };
+ if (password) {
+ if (basePath) {
+ this.basePath = basePath;
+ }
+ }
+ else {
+ if (basePathOrUsername) {
+ this.basePath = basePathOrUsername;
+ }
+ }
+ }
+ set useQuerystring(value) {
+ this._useQuerystring = value;
+ }
+ set basePath(basePath) {
+ this._basePath = basePath;
+ }
+ get basePath() {
+ return this._basePath;
+ }
+ setDefaultAuthentication(auth) {
+ this.authentications.default = auth;
+ }
+ setApiKey(key, value) {
+ this.authentications[SchedulingV1beta1ApiApiKeys[key]].apiKey = value;
+ }
+ /**
+ * create a PriorityClass
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createPriorityClass(body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/scheduling.k8s.io/v1beta1/priorityclasses';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling createPriorityClass.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'POST',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1beta1PriorityClass")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1PriorityClass");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete collection of PriorityClass
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionPriorityClass(pretty, allowWatchBookmarks, _continue, dryRun, fieldSelector, gracePeriodSeconds, labelSelector, limit, orphanDependents, propagationPolicy, resourceVersion, timeoutSeconds, watch, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/scheduling.k8s.io/v1beta1/priorityclasses';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete a PriorityClass
+ * @param name name of the PriorityClass
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deletePriorityClass(name, pretty, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/scheduling.k8s.io/v1beta1/priorityclasses/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling deletePriorityClass.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * get available resources
+ */
+ getAPIResources(options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/scheduling.k8s.io/v1beta1/';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1APIResourceList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind PriorityClass
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listPriorityClass(pretty, allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/scheduling.k8s.io/v1beta1/priorityclasses';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1PriorityClassList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update the specified PriorityClass
+ * @param name name of the PriorityClass
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchPriorityClass(name, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/scheduling.k8s.io/v1beta1/priorityclasses/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchPriorityClass.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchPriorityClass.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1PriorityClass");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read the specified PriorityClass
+ * @param name name of the PriorityClass
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readPriorityClass(name, pretty, exact, _export, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/scheduling.k8s.io/v1beta1/priorityclasses/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readPriorityClass.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (exact !== undefined) {
+ localVarQueryParameters['exact'] = models_1.ObjectSerializer.serialize(exact, "boolean");
+ }
+ if (_export !== undefined) {
+ localVarQueryParameters['export'] = models_1.ObjectSerializer.serialize(_export, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1PriorityClass");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace the specified PriorityClass
+ * @param name name of the PriorityClass
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replacePriorityClass(name, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/scheduling.k8s.io/v1beta1/priorityclasses/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replacePriorityClass.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replacePriorityClass.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1beta1PriorityClass")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1PriorityClass");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+}
+exports.SchedulingV1beta1Api = SchedulingV1beta1Api;
+//# sourceMappingURL=schedulingV1beta1Api.js.map
\ No newline at end of file
diff --git a/dist/gen/api/schedulingV1beta1Api.js.map b/dist/gen/api/schedulingV1beta1Api.js.map
new file mode 100644
index 0000000000..6f99bd8837
--- /dev/null
+++ b/dist/gen/api/schedulingV1beta1Api.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"schedulingV1beta1Api.js","sourceRoot":"","sources":["../../../src/gen/api/schedulingV1beta1Api.ts"],"names":[],"mappings":"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"}
\ No newline at end of file
diff --git a/dist/gen/api/settingsApi.d.ts b/dist/gen/api/settingsApi.d.ts
new file mode 100644
index 0000000000..f43793e723
--- /dev/null
+++ b/dist/gen/api/settingsApi.d.ts
@@ -0,0 +1,44 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+///
+import http = require('http');
+import { V1APIGroup } from '../model/v1APIGroup';
+import { Authentication } from '../model/models';
+import { ApiKeyAuth } from '../model/models';
+export declare enum SettingsApiApiKeys {
+ BearerToken = 0
+}
+export declare class SettingsApi {
+ protected _basePath: string;
+ protected defaultHeaders: any;
+ protected _useQuerystring: boolean;
+ protected authentications: {
+ 'default': Authentication;
+ 'BearerToken': ApiKeyAuth;
+ };
+ constructor(basePath?: string);
+ useQuerystring: boolean;
+ basePath: string;
+ setDefaultAuthentication(auth: Authentication): void;
+ setApiKey(key: SettingsApiApiKeys, value: string): void;
+ /**
+ * get information of a group
+ */
+ getAPIGroup(options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1APIGroup;
+ }>;
+}
diff --git a/dist/gen/api/settingsApi.js b/dist/gen/api/settingsApi.js
new file mode 100644
index 0000000000..ec986b1309
--- /dev/null
+++ b/dist/gen/api/settingsApi.js
@@ -0,0 +1,113 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+const tslib_1 = require("tslib");
+const localVarRequest = require("request");
+const models_1 = require("../model/models");
+const models_2 = require("../model/models");
+let defaultBasePath = 'http://localhost/';
+// ===============================================
+// This file is autogenerated - Please do not edit
+// ===============================================
+var SettingsApiApiKeys;
+(function (SettingsApiApiKeys) {
+ SettingsApiApiKeys[SettingsApiApiKeys["BearerToken"] = 0] = "BearerToken";
+})(SettingsApiApiKeys = exports.SettingsApiApiKeys || (exports.SettingsApiApiKeys = {}));
+class SettingsApi {
+ constructor(basePathOrUsername, password, basePath) {
+ this._basePath = defaultBasePath;
+ this.defaultHeaders = {};
+ this._useQuerystring = false;
+ this.authentications = {
+ 'default': new models_1.VoidAuth(),
+ 'BearerToken': new models_2.ApiKeyAuth('header', 'authorization'),
+ };
+ if (password) {
+ if (basePath) {
+ this.basePath = basePath;
+ }
+ }
+ else {
+ if (basePathOrUsername) {
+ this.basePath = basePathOrUsername;
+ }
+ }
+ }
+ set useQuerystring(value) {
+ this._useQuerystring = value;
+ }
+ set basePath(basePath) {
+ this._basePath = basePath;
+ }
+ get basePath() {
+ return this._basePath;
+ }
+ setDefaultAuthentication(auth) {
+ this.authentications.default = auth;
+ }
+ setApiKey(key, value) {
+ this.authentications[SettingsApiApiKeys[key]].apiKey = value;
+ }
+ /**
+ * get information of a group
+ */
+ getAPIGroup(options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/settings.k8s.io/';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1APIGroup");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+}
+exports.SettingsApi = SettingsApi;
+//# sourceMappingURL=settingsApi.js.map
\ No newline at end of file
diff --git a/dist/gen/api/settingsApi.js.map b/dist/gen/api/settingsApi.js.map
new file mode 100644
index 0000000000..c9739be61f
--- /dev/null
+++ b/dist/gen/api/settingsApi.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"settingsApi.js","sourceRoot":"","sources":["../../../src/gen/api/settingsApi.ts"],"names":[],"mappings":"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"}
\ No newline at end of file
diff --git a/dist/gen/api/settingsV1alpha1Api.d.ts b/dist/gen/api/settingsV1alpha1Api.d.ts
new file mode 100644
index 0000000000..2569f650d6
--- /dev/null
+++ b/dist/gen/api/settingsV1alpha1Api.d.ts
@@ -0,0 +1,201 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+///
+import http = require('http');
+import { V1APIResourceList } from '../model/v1APIResourceList';
+import { V1DeleteOptions } from '../model/v1DeleteOptions';
+import { V1Status } from '../model/v1Status';
+import { V1alpha1PodPreset } from '../model/v1alpha1PodPreset';
+import { V1alpha1PodPresetList } from '../model/v1alpha1PodPresetList';
+import { Authentication } from '../model/models';
+import { ApiKeyAuth } from '../model/models';
+export declare enum SettingsV1alpha1ApiApiKeys {
+ BearerToken = 0
+}
+export declare class SettingsV1alpha1Api {
+ protected _basePath: string;
+ protected defaultHeaders: any;
+ protected _useQuerystring: boolean;
+ protected authentications: {
+ 'default': Authentication;
+ 'BearerToken': ApiKeyAuth;
+ };
+ constructor(basePath?: string);
+ useQuerystring: boolean;
+ basePath: string;
+ setDefaultAuthentication(auth: Authentication): void;
+ setApiKey(key: SettingsV1alpha1ApiApiKeys, value: string): void;
+ /**
+ * create a PodPreset
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createNamespacedPodPreset(namespace: string, body: V1alpha1PodPreset, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1alpha1PodPreset;
+ }>;
+ /**
+ * delete collection of PodPreset
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionNamespacedPodPreset(namespace: string, pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, dryRun?: string, fieldSelector?: string, gracePeriodSeconds?: number, labelSelector?: string, limit?: number, orphanDependents?: boolean, propagationPolicy?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete a PodPreset
+ * @param name name of the PodPreset
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteNamespacedPodPreset(name: string, namespace: string, pretty?: string, dryRun?: string, gracePeriodSeconds?: number, orphanDependents?: boolean, propagationPolicy?: string, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * get available resources
+ */
+ getAPIResources(options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1APIResourceList;
+ }>;
+ /**
+ * list or watch objects of kind PodPreset
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listNamespacedPodPreset(namespace: string, pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1alpha1PodPresetList;
+ }>;
+ /**
+ * list or watch objects of kind PodPreset
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listPodPresetForAllNamespaces(allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, pretty?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1alpha1PodPresetList;
+ }>;
+ /**
+ * partially update the specified PodPreset
+ * @param name name of the PodPreset
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedPodPreset(name: string, namespace: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1alpha1PodPreset;
+ }>;
+ /**
+ * read the specified PodPreset
+ * @param name name of the PodPreset
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readNamespacedPodPreset(name: string, namespace: string, pretty?: string, exact?: boolean, _export?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1alpha1PodPreset;
+ }>;
+ /**
+ * replace the specified PodPreset
+ * @param name name of the PodPreset
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedPodPreset(name: string, namespace: string, body: V1alpha1PodPreset, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1alpha1PodPreset;
+ }>;
+}
diff --git a/dist/gen/api/settingsV1alpha1Api.js b/dist/gen/api/settingsV1alpha1Api.js
new file mode 100644
index 0000000000..3c3fe9a2eb
--- /dev/null
+++ b/dist/gen/api/settingsV1alpha1Api.js
@@ -0,0 +1,797 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+const tslib_1 = require("tslib");
+const localVarRequest = require("request");
+const models_1 = require("../model/models");
+const models_2 = require("../model/models");
+let defaultBasePath = 'http://localhost/';
+// ===============================================
+// This file is autogenerated - Please do not edit
+// ===============================================
+var SettingsV1alpha1ApiApiKeys;
+(function (SettingsV1alpha1ApiApiKeys) {
+ SettingsV1alpha1ApiApiKeys[SettingsV1alpha1ApiApiKeys["BearerToken"] = 0] = "BearerToken";
+})(SettingsV1alpha1ApiApiKeys = exports.SettingsV1alpha1ApiApiKeys || (exports.SettingsV1alpha1ApiApiKeys = {}));
+class SettingsV1alpha1Api {
+ constructor(basePathOrUsername, password, basePath) {
+ this._basePath = defaultBasePath;
+ this.defaultHeaders = {};
+ this._useQuerystring = false;
+ this.authentications = {
+ 'default': new models_1.VoidAuth(),
+ 'BearerToken': new models_2.ApiKeyAuth('header', 'authorization'),
+ };
+ if (password) {
+ if (basePath) {
+ this.basePath = basePath;
+ }
+ }
+ else {
+ if (basePathOrUsername) {
+ this.basePath = basePathOrUsername;
+ }
+ }
+ }
+ set useQuerystring(value) {
+ this._useQuerystring = value;
+ }
+ set basePath(basePath) {
+ this._basePath = basePath;
+ }
+ get basePath() {
+ return this._basePath;
+ }
+ setDefaultAuthentication(auth) {
+ this.authentications.default = auth;
+ }
+ setApiKey(key, value) {
+ this.authentications[SettingsV1alpha1ApiApiKeys[key]].apiKey = value;
+ }
+ /**
+ * create a PodPreset
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createNamespacedPodPreset(namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/settings.k8s.io/v1alpha1/namespaces/{namespace}/podpresets'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling createNamespacedPodPreset.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling createNamespacedPodPreset.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'POST',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1alpha1PodPreset")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1alpha1PodPreset");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete collection of PodPreset
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionNamespacedPodPreset(namespace, pretty, allowWatchBookmarks, _continue, dryRun, fieldSelector, gracePeriodSeconds, labelSelector, limit, orphanDependents, propagationPolicy, resourceVersion, timeoutSeconds, watch, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/settings.k8s.io/v1alpha1/namespaces/{namespace}/podpresets'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling deleteCollectionNamespacedPodPreset.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete a PodPreset
+ * @param name name of the PodPreset
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteNamespacedPodPreset(name, namespace, pretty, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/settings.k8s.io/v1alpha1/namespaces/{namespace}/podpresets/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling deleteNamespacedPodPreset.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling deleteNamespacedPodPreset.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * get available resources
+ */
+ getAPIResources(options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/settings.k8s.io/v1alpha1/';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1APIResourceList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind PodPreset
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listNamespacedPodPreset(namespace, pretty, allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/settings.k8s.io/v1alpha1/namespaces/{namespace}/podpresets'
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling listNamespacedPodPreset.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1alpha1PodPresetList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind PodPreset
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listPodPresetForAllNamespaces(allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, pretty, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/settings.k8s.io/v1alpha1/podpresets';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1alpha1PodPresetList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update the specified PodPreset
+ * @param name name of the PodPreset
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchNamespacedPodPreset(name, namespace, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/settings.k8s.io/v1alpha1/namespaces/{namespace}/podpresets/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchNamespacedPodPreset.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling patchNamespacedPodPreset.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchNamespacedPodPreset.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1alpha1PodPreset");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read the specified PodPreset
+ * @param name name of the PodPreset
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readNamespacedPodPreset(name, namespace, pretty, exact, _export, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/settings.k8s.io/v1alpha1/namespaces/{namespace}/podpresets/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readNamespacedPodPreset.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling readNamespacedPodPreset.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (exact !== undefined) {
+ localVarQueryParameters['exact'] = models_1.ObjectSerializer.serialize(exact, "boolean");
+ }
+ if (_export !== undefined) {
+ localVarQueryParameters['export'] = models_1.ObjectSerializer.serialize(_export, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1alpha1PodPreset");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace the specified PodPreset
+ * @param name name of the PodPreset
+ * @param namespace object name and auth scope, such as for teams and projects
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceNamespacedPodPreset(name, namespace, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/settings.k8s.io/v1alpha1/namespaces/{namespace}/podpresets/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)))
+ .replace('{' + 'namespace' + '}', encodeURIComponent(String(namespace)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceNamespacedPodPreset.');
+ }
+ // verify required parameter 'namespace' is not null or undefined
+ if (namespace === null || namespace === undefined) {
+ throw new Error('Required parameter namespace was null or undefined when calling replaceNamespacedPodPreset.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceNamespacedPodPreset.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1alpha1PodPreset")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1alpha1PodPreset");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+}
+exports.SettingsV1alpha1Api = SettingsV1alpha1Api;
+//# sourceMappingURL=settingsV1alpha1Api.js.map
\ No newline at end of file
diff --git a/dist/gen/api/settingsV1alpha1Api.js.map b/dist/gen/api/settingsV1alpha1Api.js.map
new file mode 100644
index 0000000000..40a59a2273
--- /dev/null
+++ b/dist/gen/api/settingsV1alpha1Api.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"settingsV1alpha1Api.js","sourceRoot":"","sources":["../../../src/gen/api/settingsV1alpha1Api.ts"],"names":[],"mappings":"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"}
\ No newline at end of file
diff --git a/dist/gen/api/storageApi.d.ts b/dist/gen/api/storageApi.d.ts
new file mode 100644
index 0000000000..c7da3c3d3b
--- /dev/null
+++ b/dist/gen/api/storageApi.d.ts
@@ -0,0 +1,44 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+///
+import http = require('http');
+import { V1APIGroup } from '../model/v1APIGroup';
+import { Authentication } from '../model/models';
+import { ApiKeyAuth } from '../model/models';
+export declare enum StorageApiApiKeys {
+ BearerToken = 0
+}
+export declare class StorageApi {
+ protected _basePath: string;
+ protected defaultHeaders: any;
+ protected _useQuerystring: boolean;
+ protected authentications: {
+ 'default': Authentication;
+ 'BearerToken': ApiKeyAuth;
+ };
+ constructor(basePath?: string);
+ useQuerystring: boolean;
+ basePath: string;
+ setDefaultAuthentication(auth: Authentication): void;
+ setApiKey(key: StorageApiApiKeys, value: string): void;
+ /**
+ * get information of a group
+ */
+ getAPIGroup(options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1APIGroup;
+ }>;
+}
diff --git a/dist/gen/api/storageApi.js b/dist/gen/api/storageApi.js
new file mode 100644
index 0000000000..c46b4eb336
--- /dev/null
+++ b/dist/gen/api/storageApi.js
@@ -0,0 +1,113 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+const tslib_1 = require("tslib");
+const localVarRequest = require("request");
+const models_1 = require("../model/models");
+const models_2 = require("../model/models");
+let defaultBasePath = 'http://localhost/';
+// ===============================================
+// This file is autogenerated - Please do not edit
+// ===============================================
+var StorageApiApiKeys;
+(function (StorageApiApiKeys) {
+ StorageApiApiKeys[StorageApiApiKeys["BearerToken"] = 0] = "BearerToken";
+})(StorageApiApiKeys = exports.StorageApiApiKeys || (exports.StorageApiApiKeys = {}));
+class StorageApi {
+ constructor(basePathOrUsername, password, basePath) {
+ this._basePath = defaultBasePath;
+ this.defaultHeaders = {};
+ this._useQuerystring = false;
+ this.authentications = {
+ 'default': new models_1.VoidAuth(),
+ 'BearerToken': new models_2.ApiKeyAuth('header', 'authorization'),
+ };
+ if (password) {
+ if (basePath) {
+ this.basePath = basePath;
+ }
+ }
+ else {
+ if (basePathOrUsername) {
+ this.basePath = basePathOrUsername;
+ }
+ }
+ }
+ set useQuerystring(value) {
+ this._useQuerystring = value;
+ }
+ set basePath(basePath) {
+ this._basePath = basePath;
+ }
+ get basePath() {
+ return this._basePath;
+ }
+ setDefaultAuthentication(auth) {
+ this.authentications.default = auth;
+ }
+ setApiKey(key, value) {
+ this.authentications[StorageApiApiKeys[key]].apiKey = value;
+ }
+ /**
+ * get information of a group
+ */
+ getAPIGroup(options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/storage.k8s.io/';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1APIGroup");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+}
+exports.StorageApi = StorageApi;
+//# sourceMappingURL=storageApi.js.map
\ No newline at end of file
diff --git a/dist/gen/api/storageApi.js.map b/dist/gen/api/storageApi.js.map
new file mode 100644
index 0000000000..9d2f659d1b
--- /dev/null
+++ b/dist/gen/api/storageApi.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"storageApi.js","sourceRoot":"","sources":["../../../src/gen/api/storageApi.ts"],"names":[],"mappings":"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"}
\ No newline at end of file
diff --git a/dist/gen/api/storageV1Api.d.ts b/dist/gen/api/storageV1Api.d.ts
new file mode 100644
index 0000000000..2d80c66a3c
--- /dev/null
+++ b/dist/gen/api/storageV1Api.d.ts
@@ -0,0 +1,348 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+///
+import http = require('http');
+import { V1APIResourceList } from '../model/v1APIResourceList';
+import { V1DeleteOptions } from '../model/v1DeleteOptions';
+import { V1Status } from '../model/v1Status';
+import { V1StorageClass } from '../model/v1StorageClass';
+import { V1StorageClassList } from '../model/v1StorageClassList';
+import { V1VolumeAttachment } from '../model/v1VolumeAttachment';
+import { V1VolumeAttachmentList } from '../model/v1VolumeAttachmentList';
+import { Authentication } from '../model/models';
+import { ApiKeyAuth } from '../model/models';
+export declare enum StorageV1ApiApiKeys {
+ BearerToken = 0
+}
+export declare class StorageV1Api {
+ protected _basePath: string;
+ protected defaultHeaders: any;
+ protected _useQuerystring: boolean;
+ protected authentications: {
+ 'default': Authentication;
+ 'BearerToken': ApiKeyAuth;
+ };
+ constructor(basePath?: string);
+ useQuerystring: boolean;
+ basePath: string;
+ setDefaultAuthentication(auth: Authentication): void;
+ setApiKey(key: StorageV1ApiApiKeys, value: string): void;
+ /**
+ * create a StorageClass
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createStorageClass(body: V1StorageClass, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1StorageClass;
+ }>;
+ /**
+ * create a VolumeAttachment
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createVolumeAttachment(body: V1VolumeAttachment, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1VolumeAttachment;
+ }>;
+ /**
+ * delete collection of StorageClass
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionStorageClass(pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, dryRun?: string, fieldSelector?: string, gracePeriodSeconds?: number, labelSelector?: string, limit?: number, orphanDependents?: boolean, propagationPolicy?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete collection of VolumeAttachment
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionVolumeAttachment(pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, dryRun?: string, fieldSelector?: string, gracePeriodSeconds?: number, labelSelector?: string, limit?: number, orphanDependents?: boolean, propagationPolicy?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete a StorageClass
+ * @param name name of the StorageClass
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteStorageClass(name: string, pretty?: string, dryRun?: string, gracePeriodSeconds?: number, orphanDependents?: boolean, propagationPolicy?: string, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete a VolumeAttachment
+ * @param name name of the VolumeAttachment
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteVolumeAttachment(name: string, pretty?: string, dryRun?: string, gracePeriodSeconds?: number, orphanDependents?: boolean, propagationPolicy?: string, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * get available resources
+ */
+ getAPIResources(options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1APIResourceList;
+ }>;
+ /**
+ * list or watch objects of kind StorageClass
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listStorageClass(pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1StorageClassList;
+ }>;
+ /**
+ * list or watch objects of kind VolumeAttachment
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listVolumeAttachment(pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1VolumeAttachmentList;
+ }>;
+ /**
+ * partially update the specified StorageClass
+ * @param name name of the StorageClass
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchStorageClass(name: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1StorageClass;
+ }>;
+ /**
+ * partially update the specified VolumeAttachment
+ * @param name name of the VolumeAttachment
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchVolumeAttachment(name: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1VolumeAttachment;
+ }>;
+ /**
+ * partially update status of the specified VolumeAttachment
+ * @param name name of the VolumeAttachment
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchVolumeAttachmentStatus(name: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1VolumeAttachment;
+ }>;
+ /**
+ * read the specified StorageClass
+ * @param name name of the StorageClass
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readStorageClass(name: string, pretty?: string, exact?: boolean, _export?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1StorageClass;
+ }>;
+ /**
+ * read the specified VolumeAttachment
+ * @param name name of the VolumeAttachment
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readVolumeAttachment(name: string, pretty?: string, exact?: boolean, _export?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1VolumeAttachment;
+ }>;
+ /**
+ * read status of the specified VolumeAttachment
+ * @param name name of the VolumeAttachment
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readVolumeAttachmentStatus(name: string, pretty?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1VolumeAttachment;
+ }>;
+ /**
+ * replace the specified StorageClass
+ * @param name name of the StorageClass
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceStorageClass(name: string, body: V1StorageClass, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1StorageClass;
+ }>;
+ /**
+ * replace the specified VolumeAttachment
+ * @param name name of the VolumeAttachment
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceVolumeAttachment(name: string, body: V1VolumeAttachment, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1VolumeAttachment;
+ }>;
+ /**
+ * replace status of the specified VolumeAttachment
+ * @param name name of the VolumeAttachment
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceVolumeAttachmentStatus(name: string, body: V1VolumeAttachment, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1VolumeAttachment;
+ }>;
+}
diff --git a/dist/gen/api/storageV1Api.js b/dist/gen/api/storageV1Api.js
new file mode 100644
index 0000000000..2a6ecafed5
--- /dev/null
+++ b/dist/gen/api/storageV1Api.js
@@ -0,0 +1,1437 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+const tslib_1 = require("tslib");
+const localVarRequest = require("request");
+const models_1 = require("../model/models");
+const models_2 = require("../model/models");
+let defaultBasePath = 'http://localhost/';
+// ===============================================
+// This file is autogenerated - Please do not edit
+// ===============================================
+var StorageV1ApiApiKeys;
+(function (StorageV1ApiApiKeys) {
+ StorageV1ApiApiKeys[StorageV1ApiApiKeys["BearerToken"] = 0] = "BearerToken";
+})(StorageV1ApiApiKeys = exports.StorageV1ApiApiKeys || (exports.StorageV1ApiApiKeys = {}));
+class StorageV1Api {
+ constructor(basePathOrUsername, password, basePath) {
+ this._basePath = defaultBasePath;
+ this.defaultHeaders = {};
+ this._useQuerystring = false;
+ this.authentications = {
+ 'default': new models_1.VoidAuth(),
+ 'BearerToken': new models_2.ApiKeyAuth('header', 'authorization'),
+ };
+ if (password) {
+ if (basePath) {
+ this.basePath = basePath;
+ }
+ }
+ else {
+ if (basePathOrUsername) {
+ this.basePath = basePathOrUsername;
+ }
+ }
+ }
+ set useQuerystring(value) {
+ this._useQuerystring = value;
+ }
+ set basePath(basePath) {
+ this._basePath = basePath;
+ }
+ get basePath() {
+ return this._basePath;
+ }
+ setDefaultAuthentication(auth) {
+ this.authentications.default = auth;
+ }
+ setApiKey(key, value) {
+ this.authentications[StorageV1ApiApiKeys[key]].apiKey = value;
+ }
+ /**
+ * create a StorageClass
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createStorageClass(body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/storage.k8s.io/v1/storageclasses';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling createStorageClass.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'POST',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1StorageClass")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1StorageClass");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * create a VolumeAttachment
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createVolumeAttachment(body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/storage.k8s.io/v1/volumeattachments';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling createVolumeAttachment.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'POST',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1VolumeAttachment")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1VolumeAttachment");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete collection of StorageClass
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionStorageClass(pretty, allowWatchBookmarks, _continue, dryRun, fieldSelector, gracePeriodSeconds, labelSelector, limit, orphanDependents, propagationPolicy, resourceVersion, timeoutSeconds, watch, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/storage.k8s.io/v1/storageclasses';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete collection of VolumeAttachment
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionVolumeAttachment(pretty, allowWatchBookmarks, _continue, dryRun, fieldSelector, gracePeriodSeconds, labelSelector, limit, orphanDependents, propagationPolicy, resourceVersion, timeoutSeconds, watch, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/storage.k8s.io/v1/volumeattachments';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete a StorageClass
+ * @param name name of the StorageClass
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteStorageClass(name, pretty, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/storage.k8s.io/v1/storageclasses/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling deleteStorageClass.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete a VolumeAttachment
+ * @param name name of the VolumeAttachment
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteVolumeAttachment(name, pretty, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/storage.k8s.io/v1/volumeattachments/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling deleteVolumeAttachment.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * get available resources
+ */
+ getAPIResources(options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/storage.k8s.io/v1/';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1APIResourceList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind StorageClass
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listStorageClass(pretty, allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/storage.k8s.io/v1/storageclasses';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1StorageClassList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind VolumeAttachment
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listVolumeAttachment(pretty, allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/storage.k8s.io/v1/volumeattachments';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1VolumeAttachmentList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update the specified StorageClass
+ * @param name name of the StorageClass
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchStorageClass(name, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/storage.k8s.io/v1/storageclasses/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchStorageClass.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchStorageClass.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1StorageClass");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update the specified VolumeAttachment
+ * @param name name of the VolumeAttachment
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchVolumeAttachment(name, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/storage.k8s.io/v1/volumeattachments/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchVolumeAttachment.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchVolumeAttachment.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1VolumeAttachment");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update status of the specified VolumeAttachment
+ * @param name name of the VolumeAttachment
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchVolumeAttachmentStatus(name, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/storage.k8s.io/v1/volumeattachments/{name}/status'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchVolumeAttachmentStatus.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchVolumeAttachmentStatus.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1VolumeAttachment");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read the specified StorageClass
+ * @param name name of the StorageClass
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readStorageClass(name, pretty, exact, _export, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/storage.k8s.io/v1/storageclasses/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readStorageClass.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (exact !== undefined) {
+ localVarQueryParameters['exact'] = models_1.ObjectSerializer.serialize(exact, "boolean");
+ }
+ if (_export !== undefined) {
+ localVarQueryParameters['export'] = models_1.ObjectSerializer.serialize(_export, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1StorageClass");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read the specified VolumeAttachment
+ * @param name name of the VolumeAttachment
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readVolumeAttachment(name, pretty, exact, _export, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/storage.k8s.io/v1/volumeattachments/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readVolumeAttachment.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (exact !== undefined) {
+ localVarQueryParameters['exact'] = models_1.ObjectSerializer.serialize(exact, "boolean");
+ }
+ if (_export !== undefined) {
+ localVarQueryParameters['export'] = models_1.ObjectSerializer.serialize(_export, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1VolumeAttachment");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read status of the specified VolumeAttachment
+ * @param name name of the VolumeAttachment
+ * @param pretty If \'true\', then the output is pretty printed.
+ */
+ readVolumeAttachmentStatus(name, pretty, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/storage.k8s.io/v1/volumeattachments/{name}/status'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readVolumeAttachmentStatus.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1VolumeAttachment");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace the specified StorageClass
+ * @param name name of the StorageClass
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceStorageClass(name, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/storage.k8s.io/v1/storageclasses/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceStorageClass.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceStorageClass.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1StorageClass")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1StorageClass");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace the specified VolumeAttachment
+ * @param name name of the VolumeAttachment
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceVolumeAttachment(name, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/storage.k8s.io/v1/volumeattachments/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceVolumeAttachment.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceVolumeAttachment.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1VolumeAttachment")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1VolumeAttachment");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace status of the specified VolumeAttachment
+ * @param name name of the VolumeAttachment
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceVolumeAttachmentStatus(name, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/storage.k8s.io/v1/volumeattachments/{name}/status'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceVolumeAttachmentStatus.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceVolumeAttachmentStatus.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1VolumeAttachment")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1VolumeAttachment");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+}
+exports.StorageV1Api = StorageV1Api;
+//# sourceMappingURL=storageV1Api.js.map
\ No newline at end of file
diff --git a/dist/gen/api/storageV1Api.js.map b/dist/gen/api/storageV1Api.js.map
new file mode 100644
index 0000000000..46d4094bc6
--- /dev/null
+++ b/dist/gen/api/storageV1Api.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"storageV1Api.js","sourceRoot":"","sources":["../../../src/gen/api/storageV1Api.ts"],"names":[],"mappings":"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"}
\ No newline at end of file
diff --git a/dist/gen/api/storageV1alpha1Api.d.ts b/dist/gen/api/storageV1alpha1Api.d.ts
new file mode 100644
index 0000000000..37378e8736
--- /dev/null
+++ b/dist/gen/api/storageV1alpha1Api.d.ts
@@ -0,0 +1,174 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+///
+import http = require('http');
+import { V1APIResourceList } from '../model/v1APIResourceList';
+import { V1DeleteOptions } from '../model/v1DeleteOptions';
+import { V1Status } from '../model/v1Status';
+import { V1alpha1VolumeAttachment } from '../model/v1alpha1VolumeAttachment';
+import { V1alpha1VolumeAttachmentList } from '../model/v1alpha1VolumeAttachmentList';
+import { Authentication } from '../model/models';
+import { ApiKeyAuth } from '../model/models';
+export declare enum StorageV1alpha1ApiApiKeys {
+ BearerToken = 0
+}
+export declare class StorageV1alpha1Api {
+ protected _basePath: string;
+ protected defaultHeaders: any;
+ protected _useQuerystring: boolean;
+ protected authentications: {
+ 'default': Authentication;
+ 'BearerToken': ApiKeyAuth;
+ };
+ constructor(basePath?: string);
+ useQuerystring: boolean;
+ basePath: string;
+ setDefaultAuthentication(auth: Authentication): void;
+ setApiKey(key: StorageV1alpha1ApiApiKeys, value: string): void;
+ /**
+ * create a VolumeAttachment
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createVolumeAttachment(body: V1alpha1VolumeAttachment, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1alpha1VolumeAttachment;
+ }>;
+ /**
+ * delete collection of VolumeAttachment
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionVolumeAttachment(pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, dryRun?: string, fieldSelector?: string, gracePeriodSeconds?: number, labelSelector?: string, limit?: number, orphanDependents?: boolean, propagationPolicy?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete a VolumeAttachment
+ * @param name name of the VolumeAttachment
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteVolumeAttachment(name: string, pretty?: string, dryRun?: string, gracePeriodSeconds?: number, orphanDependents?: boolean, propagationPolicy?: string, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * get available resources
+ */
+ getAPIResources(options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1APIResourceList;
+ }>;
+ /**
+ * list or watch objects of kind VolumeAttachment
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listVolumeAttachment(pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1alpha1VolumeAttachmentList;
+ }>;
+ /**
+ * partially update the specified VolumeAttachment
+ * @param name name of the VolumeAttachment
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchVolumeAttachment(name: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1alpha1VolumeAttachment;
+ }>;
+ /**
+ * read the specified VolumeAttachment
+ * @param name name of the VolumeAttachment
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readVolumeAttachment(name: string, pretty?: string, exact?: boolean, _export?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1alpha1VolumeAttachment;
+ }>;
+ /**
+ * replace the specified VolumeAttachment
+ * @param name name of the VolumeAttachment
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceVolumeAttachment(name: string, body: V1alpha1VolumeAttachment, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1alpha1VolumeAttachment;
+ }>;
+}
diff --git a/dist/gen/api/storageV1alpha1Api.js b/dist/gen/api/storageV1alpha1Api.js
new file mode 100644
index 0000000000..96b2e11ac1
--- /dev/null
+++ b/dist/gen/api/storageV1alpha1Api.js
@@ -0,0 +1,669 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+const tslib_1 = require("tslib");
+const localVarRequest = require("request");
+const models_1 = require("../model/models");
+const models_2 = require("../model/models");
+let defaultBasePath = 'http://localhost/';
+// ===============================================
+// This file is autogenerated - Please do not edit
+// ===============================================
+var StorageV1alpha1ApiApiKeys;
+(function (StorageV1alpha1ApiApiKeys) {
+ StorageV1alpha1ApiApiKeys[StorageV1alpha1ApiApiKeys["BearerToken"] = 0] = "BearerToken";
+})(StorageV1alpha1ApiApiKeys = exports.StorageV1alpha1ApiApiKeys || (exports.StorageV1alpha1ApiApiKeys = {}));
+class StorageV1alpha1Api {
+ constructor(basePathOrUsername, password, basePath) {
+ this._basePath = defaultBasePath;
+ this.defaultHeaders = {};
+ this._useQuerystring = false;
+ this.authentications = {
+ 'default': new models_1.VoidAuth(),
+ 'BearerToken': new models_2.ApiKeyAuth('header', 'authorization'),
+ };
+ if (password) {
+ if (basePath) {
+ this.basePath = basePath;
+ }
+ }
+ else {
+ if (basePathOrUsername) {
+ this.basePath = basePathOrUsername;
+ }
+ }
+ }
+ set useQuerystring(value) {
+ this._useQuerystring = value;
+ }
+ set basePath(basePath) {
+ this._basePath = basePath;
+ }
+ get basePath() {
+ return this._basePath;
+ }
+ setDefaultAuthentication(auth) {
+ this.authentications.default = auth;
+ }
+ setApiKey(key, value) {
+ this.authentications[StorageV1alpha1ApiApiKeys[key]].apiKey = value;
+ }
+ /**
+ * create a VolumeAttachment
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createVolumeAttachment(body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/storage.k8s.io/v1alpha1/volumeattachments';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling createVolumeAttachment.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'POST',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1alpha1VolumeAttachment")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1alpha1VolumeAttachment");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete collection of VolumeAttachment
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionVolumeAttachment(pretty, allowWatchBookmarks, _continue, dryRun, fieldSelector, gracePeriodSeconds, labelSelector, limit, orphanDependents, propagationPolicy, resourceVersion, timeoutSeconds, watch, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/storage.k8s.io/v1alpha1/volumeattachments';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete a VolumeAttachment
+ * @param name name of the VolumeAttachment
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteVolumeAttachment(name, pretty, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/storage.k8s.io/v1alpha1/volumeattachments/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling deleteVolumeAttachment.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * get available resources
+ */
+ getAPIResources(options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/storage.k8s.io/v1alpha1/';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1APIResourceList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind VolumeAttachment
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listVolumeAttachment(pretty, allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/storage.k8s.io/v1alpha1/volumeattachments';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1alpha1VolumeAttachmentList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update the specified VolumeAttachment
+ * @param name name of the VolumeAttachment
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchVolumeAttachment(name, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/storage.k8s.io/v1alpha1/volumeattachments/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchVolumeAttachment.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchVolumeAttachment.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1alpha1VolumeAttachment");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read the specified VolumeAttachment
+ * @param name name of the VolumeAttachment
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readVolumeAttachment(name, pretty, exact, _export, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/storage.k8s.io/v1alpha1/volumeattachments/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readVolumeAttachment.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (exact !== undefined) {
+ localVarQueryParameters['exact'] = models_1.ObjectSerializer.serialize(exact, "boolean");
+ }
+ if (_export !== undefined) {
+ localVarQueryParameters['export'] = models_1.ObjectSerializer.serialize(_export, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1alpha1VolumeAttachment");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace the specified VolumeAttachment
+ * @param name name of the VolumeAttachment
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceVolumeAttachment(name, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/storage.k8s.io/v1alpha1/volumeattachments/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceVolumeAttachment.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceVolumeAttachment.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1alpha1VolumeAttachment")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1alpha1VolumeAttachment");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+}
+exports.StorageV1alpha1Api = StorageV1alpha1Api;
+//# sourceMappingURL=storageV1alpha1Api.js.map
\ No newline at end of file
diff --git a/dist/gen/api/storageV1alpha1Api.js.map b/dist/gen/api/storageV1alpha1Api.js.map
new file mode 100644
index 0000000000..a8988af7b4
--- /dev/null
+++ b/dist/gen/api/storageV1alpha1Api.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"storageV1alpha1Api.js","sourceRoot":"","sources":["../../../src/gen/api/storageV1alpha1Api.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;;AAEH,2CAA4C;AAU5C,4CAA6E;AAC7E,4CAA6C;AAE7C,IAAI,eAAe,GAAG,kBAAkB,CAAC;AAEzC,kDAAkD;AAClD,kDAAkD;AAClD,kDAAkD;AAElD,IAAY,yBAEX;AAFD,WAAY,yBAAyB;IACjC,uFAAW,CAAA;AACf,CAAC,EAFW,yBAAyB,GAAzB,iCAAyB,KAAzB,iCAAyB,QAEpC;AAED,MAAa,kBAAkB;IAW3B,YAAY,kBAA0B,EAAE,QAAiB,EAAE,QAAiB;QAVlE,cAAS,GAAG,eAAe,CAAC;QAC5B,mBAAc,GAAS,EAAE,CAAC;QAC1B,oBAAe,GAAa,KAAK,CAAC;QAElC,oBAAe,GAAG;YACxB,SAAS,EAAkB,IAAI,iBAAQ,EAAE;YACzC,aAAa,EAAE,IAAI,mBAAU,CAAC,QAAQ,EAAE,eAAe,CAAC;SAC3D,CAAA;QAIG,IAAI,QAAQ,EAAE;YACV,IAAI,QAAQ,EAAE;gBACV,IAAI,CAAC,QAAQ,GAAG,QAAQ,CAAC;aAC5B;SACJ;aAAM;YACH,IAAI,kBAAkB,EAAE;gBACpB,IAAI,CAAC,QAAQ,GAAG,kBAAkB,CAAA;aACrC;SACJ;IACL,CAAC;IAED,IAAI,cAAc,CAAC,KAAc;QAC7B,IAAI,CAAC,eAAe,GAAG,KAAK,CAAC;IACjC,CAAC;IAED,IAAI,QAAQ,CAAC,QAAgB;QACzB,IAAI,CAAC,SAAS,GAAG,QAAQ,CAAC;IAC9B,CAAC;IAED,IAAI,QAAQ;QACR,OAAO,IAAI,CAAC,SAAS,CAAC;IAC1B,CAAC;IAEM,wBAAwB,CAAC,IAAoB;QAChD,IAAI,CAAC,eAAe,CAAC,OAAO,GAAG,IAAI,CAAC;IACxC,CAAC;IAEM,SAAS,CAAC,GAA8B,EAAE,KAAa;QACzD,IAAI,CAAC,eAAuB,CAAC,yBAAyB,CAAC,GAAG,CAAC,CAAC,CAAC,MAAM,GAAG,KAAK,CAAC;IACjF,CAAC;IAED;;;;;;OAMG;IACU,sBAAsB,CAAE,IAA8B,EAAE,MAAe,EAAE,MAAe,EAAE,YAAqB,EAAE,UAA+C,EAAC,OAAO,EAAE,EAAE,EAAC;;YACtL,MAAM,YAAY,GAAG,IAAI,CAAC,QAAQ,GAAG,iDAAiD,CAAC;YACvF,IAAI,uBAAuB,GAAQ,EAAE,CAAC;YACtC,IAAI,oBAAoB,GAAc,MAAO,CAAC,MAAM,CAAC,EAAE,EAAE,IAAI,CAAC,cAAc,CAAC,CAAC;YAC9E,IAAI,kBAAkB,GAAQ,EAAE,CAAC;YAEjC,4DAA4D;YAC5D,IAAI,IAAI,KAAK,IAAI,IAAI,IAAI,KAAK,SAAS,EAAE;gBACrC,MAAM,IAAI,KAAK,CAAC,oFAAoF,CAAC,CAAC;aACzG;YAED,IAAI,MAAM,KAAK,SAAS,EAAE;gBACtB,uBAAuB,CAAC,QAAQ,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;aACpF;YAED,IAAI,MAAM,KAAK,SAAS,EAAE;gBACtB,uBAAuB,CAAC,QAAQ,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;aACpF;YAED,IAAI,YAAY,KAAK,SAAS,EAAE;gBAC5B,uBAAuB,CAAC,cAAc,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,YAAY,EAAE,QAAQ,CAAC,CAAC;aAChG;YAEK,MAAO,CAAC,MAAM,CAAC,oBAAoB,EAAE,OAAO,CAAC,OAAO,CAAC,CAAC;YAE5D,IAAI,mBAAmB,GAAG,KAAK,CAAC;YAEhC,IAAI,sBAAsB,GAA4B;gBAClD,MAAM,EAAE,MAAM;gBACd,EAAE,EAAE,uBAAuB;gBAC3B,OAAO,EAAE,oBAAoB;gBAC7B,GAAG,EAAE,YAAY;gBACjB,cAAc,EAAE,IAAI,CAAC,eAAe;gBACpC,IAAI,EAAE,IAAI;gBACV,IAAI,EAAE,yBAAgB,CAAC,SAAS,CAAC,IAAI,EAAE,0BAA0B,CAAC;aACrE,CAAC;YAEF,IAAI,qBAAqB,GAAG,OAAO,CAAC,OAAO,EAAE,CAAC;YAC9C,qBAAqB,GAAG,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,eAAe,CAAC,WAAW,CAAC,cAAc,CAAC,sBAAsB,CAAC,CAAC,CAAC;YAElI,qBAAqB,GAAG,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,eAAe,CAAC,OAAO,CAAC,cAAc,CAAC,sBAAsB,CAAC,CAAC,CAAC;YAC9H,OAAO,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE;gBACnC,IAAI,MAAM,CAAC,IAAI,CAAC,kBAAkB,CAAC,CAAC,MAAM,EAAE;oBACxC,IAAI,mBAAmB,EAAE;wBACf,sBAAuB,CAAC,QAAQ,GAAG,kBAAkB,CAAC;qBAC/D;yBAAM;wBACH,sBAAsB,CAAC,IAAI,GAAG,kBAAkB,CAAC;qBACpD;iBACJ;gBACD,OAAO,IAAI,OAAO,CAAuE,CAAC,OAAO,EAAE,MAAM,EAAE,EAAE;oBACzG,eAAe,CAAC,sBAAsB,EAAE,CAAC,KAAK,EAAE,QAAQ,EAAE,IAAI,EAAE,EAAE;wBAC9D,IAAI,KAAK,EAAE;4BACP,MAAM,CAAC,KAAK,CAAC,CAAC;yBACjB;6BAAM;4BACH,IAAI,GAAG,yBAAgB,CAAC,WAAW,CAAC,IAAI,EAAE,0BAA0B,CAAC,CAAC;4BACtE,IAAI,QAAQ,CAAC,UAAU,IAAI,QAAQ,CAAC,UAAU,IAAI,GAAG,IAAI,QAAQ,CAAC,UAAU,IAAI,GAAG,EAAE;gCACjF,OAAO,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;6BAC/C;iCAAM;gCACH,MAAM,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;6BAC9C;yBACJ;oBACL,CAAC,CAAC,CAAC;gBACP,CAAC,CAAC,CAAC;YACP,CAAC,CAAC,CAAC;QACP,CAAC;KAAA;IACD;;;;;;;;;;;;;;;;OAgBG;IACU,gCAAgC,CAAE,MAAe,EAAE,mBAA6B,EAAE,SAAkB,EAAE,MAAe,EAAE,aAAsB,EAAE,kBAA2B,EAAE,aAAsB,EAAE,KAAc,EAAE,gBAA0B,EAAE,iBAA0B,EAAE,eAAwB,EAAE,cAAuB,EAAE,KAAe,EAAE,IAAsB,EAAE,UAA+C,EAAC,OAAO,EAAE,EAAE,EAAC;;YAC7a,MAAM,YAAY,GAAG,IAAI,CAAC,QAAQ,GAAG,iDAAiD,CAAC;YACvF,IAAI,uBAAuB,GAAQ,EAAE,CAAC;YACtC,IAAI,oBAAoB,GAAc,MAAO,CAAC,MAAM,CAAC,EAAE,EAAE,IAAI,CAAC,cAAc,CAAC,CAAC;YAC9E,IAAI,kBAAkB,GAAQ,EAAE,CAAC;YAEjC,IAAI,MAAM,KAAK,SAAS,EAAE;gBACtB,uBAAuB,CAAC,QAAQ,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;aACpF;YAED,IAAI,mBAAmB,KAAK,SAAS,EAAE;gBACnC,uBAAuB,CAAC,qBAAqB,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,mBAAmB,EAAE,SAAS,CAAC,CAAC;aAC/G;YAED,IAAI,SAAS,KAAK,SAAS,EAAE;gBACzB,uBAAuB,CAAC,UAAU,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,SAAS,EAAE,QAAQ,CAAC,CAAC;aACzF;YAED,IAAI,MAAM,KAAK,SAAS,EAAE;gBACtB,uBAAuB,CAAC,QAAQ,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;aACpF;YAED,IAAI,aAAa,KAAK,SAAS,EAAE;gBAC7B,uBAAuB,CAAC,eAAe,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,aAAa,EAAE,QAAQ,CAAC,CAAC;aAClG;YAED,IAAI,kBAAkB,KAAK,SAAS,EAAE;gBAClC,uBAAuB,CAAC,oBAAoB,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,kBAAkB,EAAE,QAAQ,CAAC,CAAC;aAC5G;YAED,IAAI,aAAa,KAAK,SAAS,EAAE;gBAC7B,uBAAuB,CAAC,eAAe,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,aAAa,EAAE,QAAQ,CAAC,CAAC;aAClG;YAED,IAAI,KAAK,KAAK,SAAS,EAAE;gBACrB,uBAAuB,CAAC,OAAO,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,KAAK,EAAE,QAAQ,CAAC,CAAC;aAClF;YAED,IAAI,gBAAgB,KAAK,SAAS,EAAE;gBAChC,uBAAuB,CAAC,kBAAkB,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,gBAAgB,EAAE,SAAS,CAAC,CAAC;aACzG;YAED,IAAI,iBAAiB,KAAK,SAAS,EAAE;gBACjC,uBAAuB,CAAC,mBAAmB,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,iBAAiB,EAAE,QAAQ,CAAC,CAAC;aAC1G;YAED,IAAI,eAAe,KAAK,SAAS,EAAE;gBAC/B,uBAAuB,CAAC,iBAAiB,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,eAAe,EAAE,QAAQ,CAAC,CAAC;aACtG;YAED,IAAI,cAAc,KAAK,SAAS,EAAE;gBAC9B,uBAAuB,CAAC,gBAAgB,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,cAAc,EAAE,QAAQ,CAAC,CAAC;aACpG;YAED,IAAI,KAAK,KAAK,SAAS,EAAE;gBACrB,uBAAuB,CAAC,OAAO,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,KAAK,EAAE,SAAS,CAAC,CAAC;aACnF;YAEK,MAAO,CAAC,MAAM,CAAC,oBAAoB,EAAE,OAAO,CAAC,OAAO,CAAC,CAAC;YAE5D,IAAI,mBAAmB,GAAG,KAAK,CAAC;YAEhC,IAAI,sBAAsB,GAA4B;gBAClD,MAAM,EAAE,QAAQ;gBAChB,EAAE,EAAE,uBAAuB;gBAC3B,OAAO,EAAE,oBAAoB;gBAC7B,GAAG,EAAE,YAAY;gBACjB,cAAc,EAAE,IAAI,CAAC,eAAe;gBACpC,IAAI,EAAE,IAAI;gBACV,IAAI,EAAE,yBAAgB,CAAC,SAAS,CAAC,IAAI,EAAE,iBAAiB,CAAC;aAC5D,CAAC;YAEF,IAAI,qBAAqB,GAAG,OAAO,CAAC,OAAO,EAAE,CAAC;YAC9C,qBAAqB,GAAG,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,eAAe,CAAC,WAAW,CAAC,cAAc,CAAC,sBAAsB,CAAC,CAAC,CAAC;YAElI,qBAAqB,GAAG,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,eAAe,CAAC,OAAO,CAAC,cAAc,CAAC,sBAAsB,CAAC,CAAC,CAAC;YAC9H,OAAO,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE;gBACnC,IAAI,MAAM,CAAC,IAAI,CAAC,kBAAkB,CAAC,CAAC,MAAM,EAAE;oBACxC,IAAI,mBAAmB,EAAE;wBACf,sBAAuB,CAAC,QAAQ,GAAG,kBAAkB,CAAC;qBAC/D;yBAAM;wBACH,sBAAsB,CAAC,IAAI,GAAG,kBAAkB,CAAC;qBACpD;iBACJ;gBACD,OAAO,IAAI,OAAO,CAAuD,CAAC,OAAO,EAAE,MAAM,EAAE,EAAE;oBACzF,eAAe,CAAC,sBAAsB,EAAE,CAAC,KAAK,EAAE,QAAQ,EAAE,IAAI,EAAE,EAAE;wBAC9D,IAAI,KAAK,EAAE;4BACP,MAAM,CAAC,KAAK,CAAC,CAAC;yBACjB;6BAAM;4BACH,IAAI,GAAG,yBAAgB,CAAC,WAAW,CAAC,IAAI,EAAE,UAAU,CAAC,CAAC;4BACtD,IAAI,QAAQ,CAAC,UAAU,IAAI,QAAQ,CAAC,UAAU,IAAI,GAAG,IAAI,QAAQ,CAAC,UAAU,IAAI,GAAG,EAAE;gCACjF,OAAO,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;6BAC/C;iCAAM;gCACH,MAAM,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;6BAC9C;yBACJ;oBACL,CAAC,CAAC,CAAC;gBACP,CAAC,CAAC,CAAC;YACP,CAAC,CAAC,CAAC;QACP,CAAC;KAAA;IACD;;;;;;;;;OASG;IACU,sBAAsB,CAAE,IAAY,EAAE,MAAe,EAAE,MAAe,EAAE,kBAA2B,EAAE,gBAA0B,EAAE,iBAA0B,EAAE,IAAsB,EAAE,UAA+C,EAAC,OAAO,EAAE,EAAE,EAAC;;YAC1P,MAAM,YAAY,GAAG,IAAI,CAAC,QAAQ,GAAG,wDAAwD;iBACxF,OAAO,CAAC,GAAG,GAAG,MAAM,GAAG,GAAG,EAAE,kBAAkB,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;YACnE,IAAI,uBAAuB,GAAQ,EAAE,CAAC;YACtC,IAAI,oBAAoB,GAAc,MAAO,CAAC,MAAM,CAAC,EAAE,EAAE,IAAI,CAAC,cAAc,CAAC,CAAC;YAC9E,IAAI,kBAAkB,GAAQ,EAAE,CAAC;YAEjC,4DAA4D;YAC5D,IAAI,IAAI,KAAK,IAAI,IAAI,IAAI,KAAK,SAAS,EAAE;gBACrC,MAAM,IAAI,KAAK,CAAC,oFAAoF,CAAC,CAAC;aACzG;YAED,IAAI,MAAM,KAAK,SAAS,EAAE;gBACtB,uBAAuB,CAAC,QAAQ,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;aACpF;YAED,IAAI,MAAM,KAAK,SAAS,EAAE;gBACtB,uBAAuB,CAAC,QAAQ,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;aACpF;YAED,IAAI,kBAAkB,KAAK,SAAS,EAAE;gBAClC,uBAAuB,CAAC,oBAAoB,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,kBAAkB,EAAE,QAAQ,CAAC,CAAC;aAC5G;YAED,IAAI,gBAAgB,KAAK,SAAS,EAAE;gBAChC,uBAAuB,CAAC,kBAAkB,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,gBAAgB,EAAE,SAAS,CAAC,CAAC;aACzG;YAED,IAAI,iBAAiB,KAAK,SAAS,EAAE;gBACjC,uBAAuB,CAAC,mBAAmB,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,iBAAiB,EAAE,QAAQ,CAAC,CAAC;aAC1G;YAEK,MAAO,CAAC,MAAM,CAAC,oBAAoB,EAAE,OAAO,CAAC,OAAO,CAAC,CAAC;YAE5D,IAAI,mBAAmB,GAAG,KAAK,CAAC;YAEhC,IAAI,sBAAsB,GAA4B;gBAClD,MAAM,EAAE,QAAQ;gBAChB,EAAE,EAAE,uBAAuB;gBAC3B,OAAO,EAAE,oBAAoB;gBAC7B,GAAG,EAAE,YAAY;gBACjB,cAAc,EAAE,IAAI,CAAC,eAAe;gBACpC,IAAI,EAAE,IAAI;gBACV,IAAI,EAAE,yBAAgB,CAAC,SAAS,CAAC,IAAI,EAAE,iBAAiB,CAAC;aAC5D,CAAC;YAEF,IAAI,qBAAqB,GAAG,OAAO,CAAC,OAAO,EAAE,CAAC;YAC9C,qBAAqB,GAAG,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,eAAe,CAAC,WAAW,CAAC,cAAc,CAAC,sBAAsB,CAAC,CAAC,CAAC;YAElI,qBAAqB,GAAG,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,eAAe,CAAC,OAAO,CAAC,cAAc,CAAC,sBAAsB,CAAC,CAAC,CAAC;YAC9H,OAAO,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE;gBACnC,IAAI,MAAM,CAAC,IAAI,CAAC,kBAAkB,CAAC,CAAC,MAAM,EAAE;oBACxC,IAAI,mBAAmB,EAAE;wBACf,sBAAuB,CAAC,QAAQ,GAAG,kBAAkB,CAAC;qBAC/D;yBAAM;wBACH,sBAAsB,CAAC,IAAI,GAAG,kBAAkB,CAAC;qBACpD;iBACJ;gBACD,OAAO,IAAI,OAAO,CAAuD,CAAC,OAAO,EAAE,MAAM,EAAE,EAAE;oBACzF,eAAe,CAAC,sBAAsB,EAAE,CAAC,KAAK,EAAE,QAAQ,EAAE,IAAI,EAAE,EAAE;wBAC9D,IAAI,KAAK,EAAE;4BACP,MAAM,CAAC,KAAK,CAAC,CAAC;yBACjB;6BAAM;4BACH,IAAI,GAAG,yBAAgB,CAAC,WAAW,CAAC,IAAI,EAAE,UAAU,CAAC,CAAC;4BACtD,IAAI,QAAQ,CAAC,UAAU,IAAI,QAAQ,CAAC,UAAU,IAAI,GAAG,IAAI,QAAQ,CAAC,UAAU,IAAI,GAAG,EAAE;gCACjF,OAAO,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;6BAC/C;iCAAM;gCACH,MAAM,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;6BAC9C;yBACJ;oBACL,CAAC,CAAC,CAAC;gBACP,CAAC,CAAC,CAAC;YACP,CAAC,CAAC,CAAC;QACP,CAAC;KAAA;IACD;;OAEG;IACU,eAAe,CAAE,UAA+C,EAAC,OAAO,EAAE,EAAE,EAAC;;YACtF,MAAM,YAAY,GAAG,IAAI,CAAC,QAAQ,GAAG,gCAAgC,CAAC;YACtE,IAAI,uBAAuB,GAAQ,EAAE,CAAC;YACtC,IAAI,oBAAoB,GAAc,MAAO,CAAC,MAAM,CAAC,EAAE,EAAE,IAAI,CAAC,cAAc,CAAC,CAAC;YAC9E,IAAI,kBAAkB,GAAQ,EAAE,CAAC;YAE3B,MAAO,CAAC,MAAM,CAAC,oBAAoB,EAAE,OAAO,CAAC,OAAO,CAAC,CAAC;YAE5D,IAAI,mBAAmB,GAAG,KAAK,CAAC;YAEhC,IAAI,sBAAsB,GAA4B;gBAClD,MAAM,EAAE,KAAK;gBACb,EAAE,EAAE,uBAAuB;gBAC3B,OAAO,EAAE,oBAAoB;gBAC7B,GAAG,EAAE,YAAY;gBACjB,cAAc,EAAE,IAAI,CAAC,eAAe;gBACpC,IAAI,EAAE,IAAI;aACb,CAAC;YAEF,IAAI,qBAAqB,GAAG,OAAO,CAAC,OAAO,EAAE,CAAC;YAC9C,qBAAqB,GAAG,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,eAAe,CAAC,WAAW,CAAC,cAAc,CAAC,sBAAsB,CAAC,CAAC,CAAC;YAElI,qBAAqB,GAAG,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,eAAe,CAAC,OAAO,CAAC,cAAc,CAAC,sBAAsB,CAAC,CAAC,CAAC;YAC9H,OAAO,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE;gBACnC,IAAI,MAAM,CAAC,IAAI,CAAC,kBAAkB,CAAC,CAAC,MAAM,EAAE;oBACxC,IAAI,mBAAmB,EAAE;wBACf,sBAAuB,CAAC,QAAQ,GAAG,kBAAkB,CAAC;qBAC/D;yBAAM;wBACH,sBAAsB,CAAC,IAAI,GAAG,kBAAkB,CAAC;qBACpD;iBACJ;gBACD,OAAO,IAAI,OAAO,CAAgE,CAAC,OAAO,EAAE,MAAM,EAAE,EAAE;oBAClG,eAAe,CAAC,sBAAsB,EAAE,CAAC,KAAK,EAAE,QAAQ,EAAE,IAAI,EAAE,EAAE;wBAC9D,IAAI,KAAK,EAAE;4BACP,MAAM,CAAC,KAAK,CAAC,CAAC;yBACjB;6BAAM;4BACH,IAAI,GAAG,yBAAgB,CAAC,WAAW,CAAC,IAAI,EAAE,mBAAmB,CAAC,CAAC;4BAC/D,IAAI,QAAQ,CAAC,UAAU,IAAI,QAAQ,CAAC,UAAU,IAAI,GAAG,IAAI,QAAQ,CAAC,UAAU,IAAI,GAAG,EAAE;gCACjF,OAAO,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;6BAC/C;iCAAM;gCACH,MAAM,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;6BAC9C;yBACJ;oBACL,CAAC,CAAC,CAAC;gBACP,CAAC,CAAC,CAAC;YACP,CAAC,CAAC,CAAC;QACP,CAAC;KAAA;IACD;;;;;;;;;;;OAWG;IACU,oBAAoB,CAAE,MAAe,EAAE,mBAA6B,EAAE,SAAkB,EAAE,aAAsB,EAAE,aAAsB,EAAE,KAAc,EAAE,eAAwB,EAAE,cAAuB,EAAE,KAAe,EAAE,UAA+C,EAAC,OAAO,EAAE,EAAE,EAAC;;YACnS,MAAM,YAAY,GAAG,IAAI,CAAC,QAAQ,GAAG,iDAAiD,CAAC;YACvF,IAAI,uBAAuB,GAAQ,EAAE,CAAC;YACtC,IAAI,oBAAoB,GAAc,MAAO,CAAC,MAAM,CAAC,EAAE,EAAE,IAAI,CAAC,cAAc,CAAC,CAAC;YAC9E,IAAI,kBAAkB,GAAQ,EAAE,CAAC;YAEjC,IAAI,MAAM,KAAK,SAAS,EAAE;gBACtB,uBAAuB,CAAC,QAAQ,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;aACpF;YAED,IAAI,mBAAmB,KAAK,SAAS,EAAE;gBACnC,uBAAuB,CAAC,qBAAqB,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,mBAAmB,EAAE,SAAS,CAAC,CAAC;aAC/G;YAED,IAAI,SAAS,KAAK,SAAS,EAAE;gBACzB,uBAAuB,CAAC,UAAU,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,SAAS,EAAE,QAAQ,CAAC,CAAC;aACzF;YAED,IAAI,aAAa,KAAK,SAAS,EAAE;gBAC7B,uBAAuB,CAAC,eAAe,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,aAAa,EAAE,QAAQ,CAAC,CAAC;aAClG;YAED,IAAI,aAAa,KAAK,SAAS,EAAE;gBAC7B,uBAAuB,CAAC,eAAe,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,aAAa,EAAE,QAAQ,CAAC,CAAC;aAClG;YAED,IAAI,KAAK,KAAK,SAAS,EAAE;gBACrB,uBAAuB,CAAC,OAAO,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,KAAK,EAAE,QAAQ,CAAC,CAAC;aAClF;YAED,IAAI,eAAe,KAAK,SAAS,EAAE;gBAC/B,uBAAuB,CAAC,iBAAiB,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,eAAe,EAAE,QAAQ,CAAC,CAAC;aACtG;YAED,IAAI,cAAc,KAAK,SAAS,EAAE;gBAC9B,uBAAuB,CAAC,gBAAgB,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,cAAc,EAAE,QAAQ,CAAC,CAAC;aACpG;YAED,IAAI,KAAK,KAAK,SAAS,EAAE;gBACrB,uBAAuB,CAAC,OAAO,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,KAAK,EAAE,SAAS,CAAC,CAAC;aACnF;YAEK,MAAO,CAAC,MAAM,CAAC,oBAAoB,EAAE,OAAO,CAAC,OAAO,CAAC,CAAC;YAE5D,IAAI,mBAAmB,GAAG,KAAK,CAAC;YAEhC,IAAI,sBAAsB,GAA4B;gBAClD,MAAM,EAAE,KAAK;gBACb,EAAE,EAAE,uBAAuB;gBAC3B,OAAO,EAAE,oBAAoB;gBAC7B,GAAG,EAAE,YAAY;gBACjB,cAAc,EAAE,IAAI,CAAC,eAAe;gBACpC,IAAI,EAAE,IAAI;aACb,CAAC;YAEF,IAAI,qBAAqB,GAAG,OAAO,CAAC,OAAO,EAAE,CAAC;YAC9C,qBAAqB,GAAG,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,eAAe,CAAC,WAAW,CAAC,cAAc,CAAC,sBAAsB,CAAC,CAAC,CAAC;YAElI,qBAAqB,GAAG,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,eAAe,CAAC,OAAO,CAAC,cAAc,CAAC,sBAAsB,CAAC,CAAC,CAAC;YAC9H,OAAO,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE;gBACnC,IAAI,MAAM,CAAC,IAAI,CAAC,kBAAkB,CAAC,CAAC,MAAM,EAAE;oBACxC,IAAI,mBAAmB,EAAE;wBACf,sBAAuB,CAAC,QAAQ,GAAG,kBAAkB,CAAC;qBAC/D;yBAAM;wBACH,sBAAsB,CAAC,IAAI,GAAG,kBAAkB,CAAC;qBACpD;iBACJ;gBACD,OAAO,IAAI,OAAO,CAA2E,CAAC,OAAO,EAAE,MAAM,EAAE,EAAE;oBAC7G,eAAe,CAAC,sBAAsB,EAAE,CAAC,KAAK,EAAE,QAAQ,EAAE,IAAI,EAAE,EAAE;wBAC9D,IAAI,KAAK,EAAE;4BACP,MAAM,CAAC,KAAK,CAAC,CAAC;yBACjB;6BAAM;4BACH,IAAI,GAAG,yBAAgB,CAAC,WAAW,CAAC,IAAI,EAAE,8BAA8B,CAAC,CAAC;4BAC1E,IAAI,QAAQ,CAAC,UAAU,IAAI,QAAQ,CAAC,UAAU,IAAI,GAAG,IAAI,QAAQ,CAAC,UAAU,IAAI,GAAG,EAAE;gCACjF,OAAO,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;6BAC/C;iCAAM;gCACH,MAAM,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;6BAC9C;yBACJ;oBACL,CAAC,CAAC,CAAC;gBACP,CAAC,CAAC,CAAC;YACP,CAAC,CAAC,CAAC;QACP,CAAC;KAAA;IACD;;;;;;;;OAQG;IACU,qBAAqB,CAAE,IAAY,EAAE,IAAY,EAAE,MAAe,EAAE,MAAe,EAAE,YAAqB,EAAE,KAAe,EAAE,UAA+C,EAAC,OAAO,EAAE,EAAE,EAAC;;YAClM,MAAM,YAAY,GAAG,IAAI,CAAC,QAAQ,GAAG,wDAAwD;iBACxF,OAAO,CAAC,GAAG,GAAG,MAAM,GAAG,GAAG,EAAE,kBAAkB,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;YACnE,IAAI,uBAAuB,GAAQ,EAAE,CAAC;YACtC,IAAI,oBAAoB,GAAc,MAAO,CAAC,MAAM,CAAC,EAAE,EAAE,IAAI,CAAC,cAAc,CAAC,CAAC;YAC9E,IAAI,kBAAkB,GAAQ,EAAE,CAAC;YAEjC,4DAA4D;YAC5D,IAAI,IAAI,KAAK,IAAI,IAAI,IAAI,KAAK,SAAS,EAAE;gBACrC,MAAM,IAAI,KAAK,CAAC,mFAAmF,CAAC,CAAC;aACxG;YAED,4DAA4D;YAC5D,IAAI,IAAI,KAAK,IAAI,IAAI,IAAI,KAAK,SAAS,EAAE;gBACrC,MAAM,IAAI,KAAK,CAAC,mFAAmF,CAAC,CAAC;aACxG;YAED,IAAI,MAAM,KAAK,SAAS,EAAE;gBACtB,uBAAuB,CAAC,QAAQ,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;aACpF;YAED,IAAI,MAAM,KAAK,SAAS,EAAE;gBACtB,uBAAuB,CAAC,QAAQ,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;aACpF;YAED,IAAI,YAAY,KAAK,SAAS,EAAE;gBAC5B,uBAAuB,CAAC,cAAc,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,YAAY,EAAE,QAAQ,CAAC,CAAC;aAChG;YAED,IAAI,KAAK,KAAK,SAAS,EAAE;gBACrB,uBAAuB,CAAC,OAAO,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,KAAK,EAAE,SAAS,CAAC,CAAC;aACnF;YAEK,MAAO,CAAC,MAAM,CAAC,oBAAoB,EAAE,OAAO,CAAC,OAAO,CAAC,CAAC;YAE5D,IAAI,mBAAmB,GAAG,KAAK,CAAC;YAEhC,IAAI,sBAAsB,GAA4B;gBAClD,MAAM,EAAE,OAAO;gBACf,EAAE,EAAE,uBAAuB;gBAC3B,OAAO,EAAE,oBAAoB;gBAC7B,GAAG,EAAE,YAAY;gBACjB,cAAc,EAAE,IAAI,CAAC,eAAe;gBACpC,IAAI,EAAE,IAAI;gBACV,IAAI,EAAE,yBAAgB,CAAC,SAAS,CAAC,IAAI,EAAE,QAAQ,CAAC;aACnD,CAAC;YAEF,IAAI,qBAAqB,GAAG,OAAO,CAAC,OAAO,EAAE,CAAC;YAC9C,qBAAqB,GAAG,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,eAAe,CAAC,WAAW,CAAC,cAAc,CAAC,sBAAsB,CAAC,CAAC,CAAC;YAElI,qBAAqB,GAAG,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,eAAe,CAAC,OAAO,CAAC,cAAc,CAAC,sBAAsB,CAAC,CAAC,CAAC;YAC9H,OAAO,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE;gBACnC,IAAI,MAAM,CAAC,IAAI,CAAC,kBAAkB,CAAC,CAAC,MAAM,EAAE;oBACxC,IAAI,mBAAmB,EAAE;wBACf,sBAAuB,CAAC,QAAQ,GAAG,kBAAkB,CAAC;qBAC/D;yBAAM;wBACH,sBAAsB,CAAC,IAAI,GAAG,kBAAkB,CAAC;qBACpD;iBACJ;gBACD,OAAO,IAAI,OAAO,CAAuE,CAAC,OAAO,EAAE,MAAM,EAAE,EAAE;oBACzG,eAAe,CAAC,sBAAsB,EAAE,CAAC,KAAK,EAAE,QAAQ,EAAE,IAAI,EAAE,EAAE;wBAC9D,IAAI,KAAK,EAAE;4BACP,MAAM,CAAC,KAAK,CAAC,CAAC;yBACjB;6BAAM;4BACH,IAAI,GAAG,yBAAgB,CAAC,WAAW,CAAC,IAAI,EAAE,0BAA0B,CAAC,CAAC;4BACtE,IAAI,QAAQ,CAAC,UAAU,IAAI,QAAQ,CAAC,UAAU,IAAI,GAAG,IAAI,QAAQ,CAAC,UAAU,IAAI,GAAG,EAAE;gCACjF,OAAO,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;6BAC/C;iCAAM;gCACH,MAAM,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;6BAC9C;yBACJ;oBACL,CAAC,CAAC,CAAC;gBACP,CAAC,CAAC,CAAC;YACP,CAAC,CAAC,CAAC;QACP,CAAC;KAAA;IACD;;;;;;OAMG;IACU,oBAAoB,CAAE,IAAY,EAAE,MAAe,EAAE,KAAe,EAAE,OAAiB,EAAE,UAA+C,EAAC,OAAO,EAAE,EAAE,EAAC;;YAC9J,MAAM,YAAY,GAAG,IAAI,CAAC,QAAQ,GAAG,wDAAwD;iBACxF,OAAO,CAAC,GAAG,GAAG,MAAM,GAAG,GAAG,EAAE,kBAAkB,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;YACnE,IAAI,uBAAuB,GAAQ,EAAE,CAAC;YACtC,IAAI,oBAAoB,GAAc,MAAO,CAAC,MAAM,CAAC,EAAE,EAAE,IAAI,CAAC,cAAc,CAAC,CAAC;YAC9E,IAAI,kBAAkB,GAAQ,EAAE,CAAC;YAEjC,4DAA4D;YAC5D,IAAI,IAAI,KAAK,IAAI,IAAI,IAAI,KAAK,SAAS,EAAE;gBACrC,MAAM,IAAI,KAAK,CAAC,kFAAkF,CAAC,CAAC;aACvG;YAED,IAAI,MAAM,KAAK,SAAS,EAAE;gBACtB,uBAAuB,CAAC,QAAQ,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;aACpF;YAED,IAAI,KAAK,KAAK,SAAS,EAAE;gBACrB,uBAAuB,CAAC,OAAO,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,KAAK,EAAE,SAAS,CAAC,CAAC;aACnF;YAED,IAAI,OAAO,KAAK,SAAS,EAAE;gBACvB,uBAAuB,CAAC,QAAQ,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,OAAO,EAAE,SAAS,CAAC,CAAC;aACtF;YAEK,MAAO,CAAC,MAAM,CAAC,oBAAoB,EAAE,OAAO,CAAC,OAAO,CAAC,CAAC;YAE5D,IAAI,mBAAmB,GAAG,KAAK,CAAC;YAEhC,IAAI,sBAAsB,GAA4B;gBAClD,MAAM,EAAE,KAAK;gBACb,EAAE,EAAE,uBAAuB;gBAC3B,OAAO,EAAE,oBAAoB;gBAC7B,GAAG,EAAE,YAAY;gBACjB,cAAc,EAAE,IAAI,CAAC,eAAe;gBACpC,IAAI,EAAE,IAAI;aACb,CAAC;YAEF,IAAI,qBAAqB,GAAG,OAAO,CAAC,OAAO,EAAE,CAAC;YAC9C,qBAAqB,GAAG,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,eAAe,CAAC,WAAW,CAAC,cAAc,CAAC,sBAAsB,CAAC,CAAC,CAAC;YAElI,qBAAqB,GAAG,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,eAAe,CAAC,OAAO,CAAC,cAAc,CAAC,sBAAsB,CAAC,CAAC,CAAC;YAC9H,OAAO,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE;gBACnC,IAAI,MAAM,CAAC,IAAI,CAAC,kBAAkB,CAAC,CAAC,MAAM,EAAE;oBACxC,IAAI,mBAAmB,EAAE;wBACf,sBAAuB,CAAC,QAAQ,GAAG,kBAAkB,CAAC;qBAC/D;yBAAM;wBACH,sBAAsB,CAAC,IAAI,GAAG,kBAAkB,CAAC;qBACpD;iBACJ;gBACD,OAAO,IAAI,OAAO,CAAuE,CAAC,OAAO,EAAE,MAAM,EAAE,EAAE;oBACzG,eAAe,CAAC,sBAAsB,EAAE,CAAC,KAAK,EAAE,QAAQ,EAAE,IAAI,EAAE,EAAE;wBAC9D,IAAI,KAAK,EAAE;4BACP,MAAM,CAAC,KAAK,CAAC,CAAC;yBACjB;6BAAM;4BACH,IAAI,GAAG,yBAAgB,CAAC,WAAW,CAAC,IAAI,EAAE,0BAA0B,CAAC,CAAC;4BACtE,IAAI,QAAQ,CAAC,UAAU,IAAI,QAAQ,CAAC,UAAU,IAAI,GAAG,IAAI,QAAQ,CAAC,UAAU,IAAI,GAAG,EAAE;gCACjF,OAAO,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;6BAC/C;iCAAM;gCACH,MAAM,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;6BAC9C;yBACJ;oBACL,CAAC,CAAC,CAAC;gBACP,CAAC,CAAC,CAAC;YACP,CAAC,CAAC,CAAC;QACP,CAAC;KAAA;IACD;;;;;;;OAOG;IACU,uBAAuB,CAAE,IAAY,EAAE,IAA8B,EAAE,MAAe,EAAE,MAAe,EAAE,YAAqB,EAAE,UAA+C,EAAC,OAAO,EAAE,EAAE,EAAC;;YACrM,MAAM,YAAY,GAAG,IAAI,CAAC,QAAQ,GAAG,wDAAwD;iBACxF,OAAO,CAAC,GAAG,GAAG,MAAM,GAAG,GAAG,EAAE,kBAAkB,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;YACnE,IAAI,uBAAuB,GAAQ,EAAE,CAAC;YACtC,IAAI,oBAAoB,GAAc,MAAO,CAAC,MAAM,CAAC,EAAE,EAAE,IAAI,CAAC,cAAc,CAAC,CAAC;YAC9E,IAAI,kBAAkB,GAAQ,EAAE,CAAC;YAEjC,4DAA4D;YAC5D,IAAI,IAAI,KAAK,IAAI,IAAI,IAAI,KAAK,SAAS,EAAE;gBACrC,MAAM,IAAI,KAAK,CAAC,qFAAqF,CAAC,CAAC;aAC1G;YAED,4DAA4D;YAC5D,IAAI,IAAI,KAAK,IAAI,IAAI,IAAI,KAAK,SAAS,EAAE;gBACrC,MAAM,IAAI,KAAK,CAAC,qFAAqF,CAAC,CAAC;aAC1G;YAED,IAAI,MAAM,KAAK,SAAS,EAAE;gBACtB,uBAAuB,CAAC,QAAQ,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;aACpF;YAED,IAAI,MAAM,KAAK,SAAS,EAAE;gBACtB,uBAAuB,CAAC,QAAQ,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;aACpF;YAED,IAAI,YAAY,KAAK,SAAS,EAAE;gBAC5B,uBAAuB,CAAC,cAAc,CAAC,GAAG,yBAAgB,CAAC,SAAS,CAAC,YAAY,EAAE,QAAQ,CAAC,CAAC;aAChG;YAEK,MAAO,CAAC,MAAM,CAAC,oBAAoB,EAAE,OAAO,CAAC,OAAO,CAAC,CAAC;YAE5D,IAAI,mBAAmB,GAAG,KAAK,CAAC;YAEhC,IAAI,sBAAsB,GAA4B;gBAClD,MAAM,EAAE,KAAK;gBACb,EAAE,EAAE,uBAAuB;gBAC3B,OAAO,EAAE,oBAAoB;gBAC7B,GAAG,EAAE,YAAY;gBACjB,cAAc,EAAE,IAAI,CAAC,eAAe;gBACpC,IAAI,EAAE,IAAI;gBACV,IAAI,EAAE,yBAAgB,CAAC,SAAS,CAAC,IAAI,EAAE,0BAA0B,CAAC;aACrE,CAAC;YAEF,IAAI,qBAAqB,GAAG,OAAO,CAAC,OAAO,EAAE,CAAC;YAC9C,qBAAqB,GAAG,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,eAAe,CAAC,WAAW,CAAC,cAAc,CAAC,sBAAsB,CAAC,CAAC,CAAC;YAElI,qBAAqB,GAAG,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,eAAe,CAAC,OAAO,CAAC,cAAc,CAAC,sBAAsB,CAAC,CAAC,CAAC;YAC9H,OAAO,qBAAqB,CAAC,IAAI,CAAC,GAAG,EAAE;gBACnC,IAAI,MAAM,CAAC,IAAI,CAAC,kBAAkB,CAAC,CAAC,MAAM,EAAE;oBACxC,IAAI,mBAAmB,EAAE;wBACf,sBAAuB,CAAC,QAAQ,GAAG,kBAAkB,CAAC;qBAC/D;yBAAM;wBACH,sBAAsB,CAAC,IAAI,GAAG,kBAAkB,CAAC;qBACpD;iBACJ;gBACD,OAAO,IAAI,OAAO,CAAuE,CAAC,OAAO,EAAE,MAAM,EAAE,EAAE;oBACzG,eAAe,CAAC,sBAAsB,EAAE,CAAC,KAAK,EAAE,QAAQ,EAAE,IAAI,EAAE,EAAE;wBAC9D,IAAI,KAAK,EAAE;4BACP,MAAM,CAAC,KAAK,CAAC,CAAC;yBACjB;6BAAM;4BACH,IAAI,GAAG,yBAAgB,CAAC,WAAW,CAAC,IAAI,EAAE,0BAA0B,CAAC,CAAC;4BACtE,IAAI,QAAQ,CAAC,UAAU,IAAI,QAAQ,CAAC,UAAU,IAAI,GAAG,IAAI,QAAQ,CAAC,UAAU,IAAI,GAAG,EAAE;gCACjF,OAAO,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;6BAC/C;iCAAM;gCACH,MAAM,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;6BAC9C;yBACJ;oBACL,CAAC,CAAC,CAAC;gBACP,CAAC,CAAC,CAAC;YACP,CAAC,CAAC,CAAC;QACP,CAAC;KAAA;CACJ;AAxrBD,gDAwrBC"}
\ No newline at end of file
diff --git a/dist/gen/api/storageV1beta1Api.d.ts b/dist/gen/api/storageV1beta1Api.d.ts
new file mode 100644
index 0000000000..b4ca8ff761
--- /dev/null
+++ b/dist/gen/api/storageV1beta1Api.d.ts
@@ -0,0 +1,558 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+///
+import http = require('http');
+import { V1APIResourceList } from '../model/v1APIResourceList';
+import { V1DeleteOptions } from '../model/v1DeleteOptions';
+import { V1Status } from '../model/v1Status';
+import { V1beta1CSIDriver } from '../model/v1beta1CSIDriver';
+import { V1beta1CSIDriverList } from '../model/v1beta1CSIDriverList';
+import { V1beta1CSINode } from '../model/v1beta1CSINode';
+import { V1beta1CSINodeList } from '../model/v1beta1CSINodeList';
+import { V1beta1StorageClass } from '../model/v1beta1StorageClass';
+import { V1beta1StorageClassList } from '../model/v1beta1StorageClassList';
+import { V1beta1VolumeAttachment } from '../model/v1beta1VolumeAttachment';
+import { V1beta1VolumeAttachmentList } from '../model/v1beta1VolumeAttachmentList';
+import { Authentication } from '../model/models';
+import { ApiKeyAuth } from '../model/models';
+export declare enum StorageV1beta1ApiApiKeys {
+ BearerToken = 0
+}
+export declare class StorageV1beta1Api {
+ protected _basePath: string;
+ protected defaultHeaders: any;
+ protected _useQuerystring: boolean;
+ protected authentications: {
+ 'default': Authentication;
+ 'BearerToken': ApiKeyAuth;
+ };
+ constructor(basePath?: string);
+ useQuerystring: boolean;
+ basePath: string;
+ setDefaultAuthentication(auth: Authentication): void;
+ setApiKey(key: StorageV1beta1ApiApiKeys, value: string): void;
+ /**
+ * create a CSIDriver
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createCSIDriver(body: V1beta1CSIDriver, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1CSIDriver;
+ }>;
+ /**
+ * create a CSINode
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createCSINode(body: V1beta1CSINode, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1CSINode;
+ }>;
+ /**
+ * create a StorageClass
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createStorageClass(body: V1beta1StorageClass, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1StorageClass;
+ }>;
+ /**
+ * create a VolumeAttachment
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createVolumeAttachment(body: V1beta1VolumeAttachment, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1VolumeAttachment;
+ }>;
+ /**
+ * delete a CSIDriver
+ * @param name name of the CSIDriver
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteCSIDriver(name: string, pretty?: string, dryRun?: string, gracePeriodSeconds?: number, orphanDependents?: boolean, propagationPolicy?: string, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete a CSINode
+ * @param name name of the CSINode
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteCSINode(name: string, pretty?: string, dryRun?: string, gracePeriodSeconds?: number, orphanDependents?: boolean, propagationPolicy?: string, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete collection of CSIDriver
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionCSIDriver(pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, dryRun?: string, fieldSelector?: string, gracePeriodSeconds?: number, labelSelector?: string, limit?: number, orphanDependents?: boolean, propagationPolicy?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete collection of CSINode
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionCSINode(pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, dryRun?: string, fieldSelector?: string, gracePeriodSeconds?: number, labelSelector?: string, limit?: number, orphanDependents?: boolean, propagationPolicy?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete collection of StorageClass
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionStorageClass(pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, dryRun?: string, fieldSelector?: string, gracePeriodSeconds?: number, labelSelector?: string, limit?: number, orphanDependents?: boolean, propagationPolicy?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete collection of VolumeAttachment
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionVolumeAttachment(pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, dryRun?: string, fieldSelector?: string, gracePeriodSeconds?: number, labelSelector?: string, limit?: number, orphanDependents?: boolean, propagationPolicy?: string, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete a StorageClass
+ * @param name name of the StorageClass
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteStorageClass(name: string, pretty?: string, dryRun?: string, gracePeriodSeconds?: number, orphanDependents?: boolean, propagationPolicy?: string, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * delete a VolumeAttachment
+ * @param name name of the VolumeAttachment
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteVolumeAttachment(name: string, pretty?: string, dryRun?: string, gracePeriodSeconds?: number, orphanDependents?: boolean, propagationPolicy?: string, body?: V1DeleteOptions, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1Status;
+ }>;
+ /**
+ * get available resources
+ */
+ getAPIResources(options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1APIResourceList;
+ }>;
+ /**
+ * list or watch objects of kind CSIDriver
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listCSIDriver(pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1CSIDriverList;
+ }>;
+ /**
+ * list or watch objects of kind CSINode
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listCSINode(pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1CSINodeList;
+ }>;
+ /**
+ * list or watch objects of kind StorageClass
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listStorageClass(pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1StorageClassList;
+ }>;
+ /**
+ * list or watch objects of kind VolumeAttachment
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listVolumeAttachment(pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, resourceVersion?: string, timeoutSeconds?: number, watch?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1VolumeAttachmentList;
+ }>;
+ /**
+ * partially update the specified CSIDriver
+ * @param name name of the CSIDriver
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchCSIDriver(name: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1CSIDriver;
+ }>;
+ /**
+ * partially update the specified CSINode
+ * @param name name of the CSINode
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchCSINode(name: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1CSINode;
+ }>;
+ /**
+ * partially update the specified StorageClass
+ * @param name name of the StorageClass
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchStorageClass(name: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1StorageClass;
+ }>;
+ /**
+ * partially update the specified VolumeAttachment
+ * @param name name of the VolumeAttachment
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchVolumeAttachment(name: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, force?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1VolumeAttachment;
+ }>;
+ /**
+ * read the specified CSIDriver
+ * @param name name of the CSIDriver
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readCSIDriver(name: string, pretty?: string, exact?: boolean, _export?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1CSIDriver;
+ }>;
+ /**
+ * read the specified CSINode
+ * @param name name of the CSINode
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readCSINode(name: string, pretty?: string, exact?: boolean, _export?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1CSINode;
+ }>;
+ /**
+ * read the specified StorageClass
+ * @param name name of the StorageClass
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readStorageClass(name: string, pretty?: string, exact?: boolean, _export?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1StorageClass;
+ }>;
+ /**
+ * read the specified VolumeAttachment
+ * @param name name of the VolumeAttachment
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readVolumeAttachment(name: string, pretty?: string, exact?: boolean, _export?: boolean, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1VolumeAttachment;
+ }>;
+ /**
+ * replace the specified CSIDriver
+ * @param name name of the CSIDriver
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceCSIDriver(name: string, body: V1beta1CSIDriver, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1CSIDriver;
+ }>;
+ /**
+ * replace the specified CSINode
+ * @param name name of the CSINode
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceCSINode(name: string, body: V1beta1CSINode, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1CSINode;
+ }>;
+ /**
+ * replace the specified StorageClass
+ * @param name name of the StorageClass
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceStorageClass(name: string, body: V1beta1StorageClass, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1StorageClass;
+ }>;
+ /**
+ * replace the specified VolumeAttachment
+ * @param name name of the VolumeAttachment
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceVolumeAttachment(name: string, body: V1beta1VolumeAttachment, pretty?: string, dryRun?: string, fieldManager?: string, options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: V1beta1VolumeAttachment;
+ }>;
+}
diff --git a/dist/gen/api/storageV1beta1Api.js b/dist/gen/api/storageV1beta1Api.js
new file mode 100644
index 0000000000..77bcbc43e6
--- /dev/null
+++ b/dist/gen/api/storageV1beta1Api.js
@@ -0,0 +1,2337 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+const tslib_1 = require("tslib");
+const localVarRequest = require("request");
+const models_1 = require("../model/models");
+const models_2 = require("../model/models");
+let defaultBasePath = 'http://localhost/';
+// ===============================================
+// This file is autogenerated - Please do not edit
+// ===============================================
+var StorageV1beta1ApiApiKeys;
+(function (StorageV1beta1ApiApiKeys) {
+ StorageV1beta1ApiApiKeys[StorageV1beta1ApiApiKeys["BearerToken"] = 0] = "BearerToken";
+})(StorageV1beta1ApiApiKeys = exports.StorageV1beta1ApiApiKeys || (exports.StorageV1beta1ApiApiKeys = {}));
+class StorageV1beta1Api {
+ constructor(basePathOrUsername, password, basePath) {
+ this._basePath = defaultBasePath;
+ this.defaultHeaders = {};
+ this._useQuerystring = false;
+ this.authentications = {
+ 'default': new models_1.VoidAuth(),
+ 'BearerToken': new models_2.ApiKeyAuth('header', 'authorization'),
+ };
+ if (password) {
+ if (basePath) {
+ this.basePath = basePath;
+ }
+ }
+ else {
+ if (basePathOrUsername) {
+ this.basePath = basePathOrUsername;
+ }
+ }
+ }
+ set useQuerystring(value) {
+ this._useQuerystring = value;
+ }
+ set basePath(basePath) {
+ this._basePath = basePath;
+ }
+ get basePath() {
+ return this._basePath;
+ }
+ setDefaultAuthentication(auth) {
+ this.authentications.default = auth;
+ }
+ setApiKey(key, value) {
+ this.authentications[StorageV1beta1ApiApiKeys[key]].apiKey = value;
+ }
+ /**
+ * create a CSIDriver
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createCSIDriver(body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/storage.k8s.io/v1beta1/csidrivers';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling createCSIDriver.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'POST',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1beta1CSIDriver")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1CSIDriver");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * create a CSINode
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createCSINode(body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/storage.k8s.io/v1beta1/csinodes';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling createCSINode.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'POST',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1beta1CSINode")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1CSINode");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * create a StorageClass
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createStorageClass(body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/storage.k8s.io/v1beta1/storageclasses';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling createStorageClass.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'POST',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1beta1StorageClass")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1StorageClass");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * create a VolumeAttachment
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ createVolumeAttachment(body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/storage.k8s.io/v1beta1/volumeattachments';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling createVolumeAttachment.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'POST',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1beta1VolumeAttachment")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1VolumeAttachment");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete a CSIDriver
+ * @param name name of the CSIDriver
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteCSIDriver(name, pretty, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/storage.k8s.io/v1beta1/csidrivers/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling deleteCSIDriver.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete a CSINode
+ * @param name name of the CSINode
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteCSINode(name, pretty, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/storage.k8s.io/v1beta1/csinodes/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling deleteCSINode.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete collection of CSIDriver
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionCSIDriver(pretty, allowWatchBookmarks, _continue, dryRun, fieldSelector, gracePeriodSeconds, labelSelector, limit, orphanDependents, propagationPolicy, resourceVersion, timeoutSeconds, watch, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/storage.k8s.io/v1beta1/csidrivers';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete collection of CSINode
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionCSINode(pretty, allowWatchBookmarks, _continue, dryRun, fieldSelector, gracePeriodSeconds, labelSelector, limit, orphanDependents, propagationPolicy, resourceVersion, timeoutSeconds, watch, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/storage.k8s.io/v1beta1/csinodes';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete collection of StorageClass
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionStorageClass(pretty, allowWatchBookmarks, _continue, dryRun, fieldSelector, gracePeriodSeconds, labelSelector, limit, orphanDependents, propagationPolicy, resourceVersion, timeoutSeconds, watch, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/storage.k8s.io/v1beta1/storageclasses';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete collection of VolumeAttachment
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ * @param body
+ */
+ deleteCollectionVolumeAttachment(pretty, allowWatchBookmarks, _continue, dryRun, fieldSelector, gracePeriodSeconds, labelSelector, limit, orphanDependents, propagationPolicy, resourceVersion, timeoutSeconds, watch, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/storage.k8s.io/v1beta1/volumeattachments';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete a StorageClass
+ * @param name name of the StorageClass
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteStorageClass(name, pretty, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/storage.k8s.io/v1beta1/storageclasses/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling deleteStorageClass.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * delete a VolumeAttachment
+ * @param name name of the VolumeAttachment
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ * @param body
+ */
+ deleteVolumeAttachment(name, pretty, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, body, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/storage.k8s.io/v1beta1/volumeattachments/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling deleteVolumeAttachment.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (gracePeriodSeconds !== undefined) {
+ localVarQueryParameters['gracePeriodSeconds'] = models_1.ObjectSerializer.serialize(gracePeriodSeconds, "number");
+ }
+ if (orphanDependents !== undefined) {
+ localVarQueryParameters['orphanDependents'] = models_1.ObjectSerializer.serialize(orphanDependents, "boolean");
+ }
+ if (propagationPolicy !== undefined) {
+ localVarQueryParameters['propagationPolicy'] = models_1.ObjectSerializer.serialize(propagationPolicy, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'DELETE',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1DeleteOptions")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1Status");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * get available resources
+ */
+ getAPIResources(options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/storage.k8s.io/v1beta1/';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1APIResourceList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind CSIDriver
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listCSIDriver(pretty, allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/storage.k8s.io/v1beta1/csidrivers';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1CSIDriverList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind CSINode
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listCSINode(pretty, allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/storage.k8s.io/v1beta1/csinodes';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1CSINodeList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind StorageClass
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listStorageClass(pretty, allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/storage.k8s.io/v1beta1/storageclasses';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1StorageClassList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * list or watch objects of kind VolumeAttachment
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\'s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored. This field is alpha and can be changed or removed without notice.
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
+ * @param resourceVersion When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it\'s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+ */
+ listVolumeAttachment(pretty, allowWatchBookmarks, _continue, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/storage.k8s.io/v1beta1/volumeattachments';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (allowWatchBookmarks !== undefined) {
+ localVarQueryParameters['allowWatchBookmarks'] = models_1.ObjectSerializer.serialize(allowWatchBookmarks, "boolean");
+ }
+ if (_continue !== undefined) {
+ localVarQueryParameters['continue'] = models_1.ObjectSerializer.serialize(_continue, "string");
+ }
+ if (fieldSelector !== undefined) {
+ localVarQueryParameters['fieldSelector'] = models_1.ObjectSerializer.serialize(fieldSelector, "string");
+ }
+ if (labelSelector !== undefined) {
+ localVarQueryParameters['labelSelector'] = models_1.ObjectSerializer.serialize(labelSelector, "string");
+ }
+ if (limit !== undefined) {
+ localVarQueryParameters['limit'] = models_1.ObjectSerializer.serialize(limit, "number");
+ }
+ if (resourceVersion !== undefined) {
+ localVarQueryParameters['resourceVersion'] = models_1.ObjectSerializer.serialize(resourceVersion, "string");
+ }
+ if (timeoutSeconds !== undefined) {
+ localVarQueryParameters['timeoutSeconds'] = models_1.ObjectSerializer.serialize(timeoutSeconds, "number");
+ }
+ if (watch !== undefined) {
+ localVarQueryParameters['watch'] = models_1.ObjectSerializer.serialize(watch, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1VolumeAttachmentList");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update the specified CSIDriver
+ * @param name name of the CSIDriver
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchCSIDriver(name, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/storage.k8s.io/v1beta1/csidrivers/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchCSIDriver.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchCSIDriver.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1CSIDriver");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update the specified CSINode
+ * @param name name of the CSINode
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchCSINode(name, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/storage.k8s.io/v1beta1/csinodes/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchCSINode.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchCSINode.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1CSINode");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update the specified StorageClass
+ * @param name name of the StorageClass
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchStorageClass(name, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/storage.k8s.io/v1beta1/storageclasses/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchStorageClass.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchStorageClass.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1StorageClass");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * partially update the specified VolumeAttachment
+ * @param name name of the VolumeAttachment
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
+ * @param force Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
+ */
+ patchVolumeAttachment(name, body, pretty, dryRun, fieldManager, force, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/storage.k8s.io/v1beta1/volumeattachments/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling patchVolumeAttachment.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling patchVolumeAttachment.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ if (force !== undefined) {
+ localVarQueryParameters['force'] = models_1.ObjectSerializer.serialize(force, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PATCH',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "object")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1VolumeAttachment");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read the specified CSIDriver
+ * @param name name of the CSIDriver
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readCSIDriver(name, pretty, exact, _export, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/storage.k8s.io/v1beta1/csidrivers/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readCSIDriver.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (exact !== undefined) {
+ localVarQueryParameters['exact'] = models_1.ObjectSerializer.serialize(exact, "boolean");
+ }
+ if (_export !== undefined) {
+ localVarQueryParameters['export'] = models_1.ObjectSerializer.serialize(_export, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1CSIDriver");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read the specified CSINode
+ * @param name name of the CSINode
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readCSINode(name, pretty, exact, _export, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/storage.k8s.io/v1beta1/csinodes/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readCSINode.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (exact !== undefined) {
+ localVarQueryParameters['exact'] = models_1.ObjectSerializer.serialize(exact, "boolean");
+ }
+ if (_export !== undefined) {
+ localVarQueryParameters['export'] = models_1.ObjectSerializer.serialize(_export, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1CSINode");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read the specified StorageClass
+ * @param name name of the StorageClass
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readStorageClass(name, pretty, exact, _export, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/storage.k8s.io/v1beta1/storageclasses/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readStorageClass.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (exact !== undefined) {
+ localVarQueryParameters['exact'] = models_1.ObjectSerializer.serialize(exact, "boolean");
+ }
+ if (_export !== undefined) {
+ localVarQueryParameters['export'] = models_1.ObjectSerializer.serialize(_export, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1StorageClass");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * read the specified VolumeAttachment
+ * @param name name of the VolumeAttachment
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param exact Should the export be exact. Exact export maintains cluster-specific fields like \'Namespace\'. Deprecated. Planned for removal in 1.18.
+ * @param _export Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
+ */
+ readVolumeAttachment(name, pretty, exact, _export, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/storage.k8s.io/v1beta1/volumeattachments/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling readVolumeAttachment.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (exact !== undefined) {
+ localVarQueryParameters['exact'] = models_1.ObjectSerializer.serialize(exact, "boolean");
+ }
+ if (_export !== undefined) {
+ localVarQueryParameters['export'] = models_1.ObjectSerializer.serialize(_export, "boolean");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1VolumeAttachment");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace the specified CSIDriver
+ * @param name name of the CSIDriver
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceCSIDriver(name, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/storage.k8s.io/v1beta1/csidrivers/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceCSIDriver.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceCSIDriver.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1beta1CSIDriver")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1CSIDriver");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace the specified CSINode
+ * @param name name of the CSINode
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceCSINode(name, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/storage.k8s.io/v1beta1/csinodes/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceCSINode.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceCSINode.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1beta1CSINode")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1CSINode");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace the specified StorageClass
+ * @param name name of the StorageClass
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceStorageClass(name, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/storage.k8s.io/v1beta1/storageclasses/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceStorageClass.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceStorageClass.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1beta1StorageClass")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1StorageClass");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+ /**
+ * replace the specified VolumeAttachment
+ * @param name name of the VolumeAttachment
+ * @param body
+ * @param pretty If \'true\', then the output is pretty printed.
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
+ */
+ replaceVolumeAttachment(name, body, pretty, dryRun, fieldManager, options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/apis/storage.k8s.io/v1beta1/volumeattachments/{name}'
+ .replace('{' + 'name' + '}', encodeURIComponent(String(name)));
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ // verify required parameter 'name' is not null or undefined
+ if (name === null || name === undefined) {
+ throw new Error('Required parameter name was null or undefined when calling replaceVolumeAttachment.');
+ }
+ // verify required parameter 'body' is not null or undefined
+ if (body === null || body === undefined) {
+ throw new Error('Required parameter body was null or undefined when calling replaceVolumeAttachment.');
+ }
+ if (pretty !== undefined) {
+ localVarQueryParameters['pretty'] = models_1.ObjectSerializer.serialize(pretty, "string");
+ }
+ if (dryRun !== undefined) {
+ localVarQueryParameters['dryRun'] = models_1.ObjectSerializer.serialize(dryRun, "string");
+ }
+ if (fieldManager !== undefined) {
+ localVarQueryParameters['fieldManager'] = models_1.ObjectSerializer.serialize(fieldManager, "string");
+ }
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'PUT',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ body: models_1.ObjectSerializer.serialize(body, "V1beta1VolumeAttachment")
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "V1beta1VolumeAttachment");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+}
+exports.StorageV1beta1Api = StorageV1beta1Api;
+//# sourceMappingURL=storageV1beta1Api.js.map
\ No newline at end of file
diff --git a/dist/gen/api/storageV1beta1Api.js.map b/dist/gen/api/storageV1beta1Api.js.map
new file mode 100644
index 0000000000..339a332c50
--- /dev/null
+++ b/dist/gen/api/storageV1beta1Api.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"storageV1beta1Api.js","sourceRoot":"","sources":["../../../src/gen/api/storageV1beta1Api.ts"],"names":[],"mappings":"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"}
\ No newline at end of file
diff --git a/dist/gen/api/versionApi.d.ts b/dist/gen/api/versionApi.d.ts
new file mode 100644
index 0000000000..ad6bc9732b
--- /dev/null
+++ b/dist/gen/api/versionApi.d.ts
@@ -0,0 +1,44 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+///
+import http = require('http');
+import { VersionInfo } from '../model/versionInfo';
+import { Authentication } from '../model/models';
+import { ApiKeyAuth } from '../model/models';
+export declare enum VersionApiApiKeys {
+ BearerToken = 0
+}
+export declare class VersionApi {
+ protected _basePath: string;
+ protected defaultHeaders: any;
+ protected _useQuerystring: boolean;
+ protected authentications: {
+ 'default': Authentication;
+ 'BearerToken': ApiKeyAuth;
+ };
+ constructor(basePath?: string);
+ useQuerystring: boolean;
+ basePath: string;
+ setDefaultAuthentication(auth: Authentication): void;
+ setApiKey(key: VersionApiApiKeys, value: string): void;
+ /**
+ * get the code version
+ */
+ getCode(options?: {
+ headers: {
+ [name: string]: string;
+ };
+ }): Promise<{
+ response: http.IncomingMessage;
+ body: VersionInfo;
+ }>;
+}
diff --git a/dist/gen/api/versionApi.js b/dist/gen/api/versionApi.js
new file mode 100644
index 0000000000..98550b1fbc
--- /dev/null
+++ b/dist/gen/api/versionApi.js
@@ -0,0 +1,113 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+const tslib_1 = require("tslib");
+const localVarRequest = require("request");
+const models_1 = require("../model/models");
+const models_2 = require("../model/models");
+let defaultBasePath = 'http://localhost/';
+// ===============================================
+// This file is autogenerated - Please do not edit
+// ===============================================
+var VersionApiApiKeys;
+(function (VersionApiApiKeys) {
+ VersionApiApiKeys[VersionApiApiKeys["BearerToken"] = 0] = "BearerToken";
+})(VersionApiApiKeys = exports.VersionApiApiKeys || (exports.VersionApiApiKeys = {}));
+class VersionApi {
+ constructor(basePathOrUsername, password, basePath) {
+ this._basePath = defaultBasePath;
+ this.defaultHeaders = {};
+ this._useQuerystring = false;
+ this.authentications = {
+ 'default': new models_1.VoidAuth(),
+ 'BearerToken': new models_2.ApiKeyAuth('header', 'authorization'),
+ };
+ if (password) {
+ if (basePath) {
+ this.basePath = basePath;
+ }
+ }
+ else {
+ if (basePathOrUsername) {
+ this.basePath = basePathOrUsername;
+ }
+ }
+ }
+ set useQuerystring(value) {
+ this._useQuerystring = value;
+ }
+ set basePath(basePath) {
+ this._basePath = basePath;
+ }
+ get basePath() {
+ return this._basePath;
+ }
+ setDefaultAuthentication(auth) {
+ this.authentications.default = auth;
+ }
+ setApiKey(key, value) {
+ this.authentications[VersionApiApiKeys[key]].apiKey = value;
+ }
+ /**
+ * get the code version
+ */
+ getCode(options = { headers: {} }) {
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
+ const localVarPath = this.basePath + '/version/';
+ let localVarQueryParameters = {};
+ let localVarHeaderParams = Object.assign({}, this.defaultHeaders);
+ let localVarFormParams = {};
+ Object.assign(localVarHeaderParams, options.headers);
+ let localVarUseFormData = false;
+ let localVarRequestOptions = {
+ method: 'GET',
+ qs: localVarQueryParameters,
+ headers: localVarHeaderParams,
+ uri: localVarPath,
+ useQuerystring: this._useQuerystring,
+ json: true,
+ };
+ let authenticationPromise = Promise.resolve();
+ authenticationPromise = authenticationPromise.then(() => this.authentications.BearerToken.applyToRequest(localVarRequestOptions));
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
+ return authenticationPromise.then(() => {
+ if (Object.keys(localVarFormParams).length) {
+ if (localVarUseFormData) {
+ localVarRequestOptions.formData = localVarFormParams;
+ }
+ else {
+ localVarRequestOptions.form = localVarFormParams;
+ }
+ }
+ return new Promise((resolve, reject) => {
+ localVarRequest(localVarRequestOptions, (error, response, body) => {
+ if (error) {
+ reject(error);
+ }
+ else {
+ body = models_1.ObjectSerializer.deserialize(body, "VersionInfo");
+ if (response.statusCode && response.statusCode >= 200 && response.statusCode <= 299) {
+ resolve({ response: response, body: body });
+ }
+ else {
+ reject({ response: response, body: body });
+ }
+ }
+ });
+ });
+ });
+ });
+ }
+}
+exports.VersionApi = VersionApi;
+//# sourceMappingURL=versionApi.js.map
\ No newline at end of file
diff --git a/dist/gen/api/versionApi.js.map b/dist/gen/api/versionApi.js.map
new file mode 100644
index 0000000000..8be247b9ad
--- /dev/null
+++ b/dist/gen/api/versionApi.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"versionApi.js","sourceRoot":"","sources":["../../../src/gen/api/versionApi.ts"],"names":[],"mappings":"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"}
\ No newline at end of file
diff --git a/dist/gen/model/admissionregistrationV1beta1ServiceReference.d.ts b/dist/gen/model/admissionregistrationV1beta1ServiceReference.d.ts
new file mode 100644
index 0000000000..55cf67cb8c
--- /dev/null
+++ b/dist/gen/model/admissionregistrationV1beta1ServiceReference.d.ts
@@ -0,0 +1,43 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+/**
+* ServiceReference holds a reference to Service.legacy.k8s.io
+*/
+export declare class AdmissionregistrationV1beta1ServiceReference {
+ /**
+ * `name` is the name of the service. Required
+ */
+ 'name': string;
+ /**
+ * `namespace` is the namespace of the service. Required
+ */
+ 'namespace': string;
+ /**
+ * `path` is an optional URL path which will be sent in any request to this service.
+ */
+ 'path'?: string;
+ /**
+ * If specified, the port on the service that hosting webhook. Default to 443 for backward compatibility. `port` should be a valid port number (1-65535, inclusive).
+ */
+ 'port'?: number;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/admissionregistrationV1beta1ServiceReference.js b/dist/gen/model/admissionregistrationV1beta1ServiceReference.js
new file mode 100644
index 0000000000..881979c17c
--- /dev/null
+++ b/dist/gen/model/admissionregistrationV1beta1ServiceReference.js
@@ -0,0 +1,46 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* ServiceReference holds a reference to Service.legacy.k8s.io
+*/
+class AdmissionregistrationV1beta1ServiceReference {
+ static getAttributeTypeMap() {
+ return AdmissionregistrationV1beta1ServiceReference.attributeTypeMap;
+ }
+}
+AdmissionregistrationV1beta1ServiceReference.discriminator = undefined;
+AdmissionregistrationV1beta1ServiceReference.attributeTypeMap = [
+ {
+ "name": "name",
+ "baseName": "name",
+ "type": "string"
+ },
+ {
+ "name": "namespace",
+ "baseName": "namespace",
+ "type": "string"
+ },
+ {
+ "name": "path",
+ "baseName": "path",
+ "type": "string"
+ },
+ {
+ "name": "port",
+ "baseName": "port",
+ "type": "number"
+ }
+];
+exports.AdmissionregistrationV1beta1ServiceReference = AdmissionregistrationV1beta1ServiceReference;
+//# sourceMappingURL=admissionregistrationV1beta1ServiceReference.js.map
\ No newline at end of file
diff --git a/dist/gen/model/admissionregistrationV1beta1ServiceReference.js.map b/dist/gen/model/admissionregistrationV1beta1ServiceReference.js.map
new file mode 100644
index 0000000000..614b240548
--- /dev/null
+++ b/dist/gen/model/admissionregistrationV1beta1ServiceReference.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"admissionregistrationV1beta1ServiceReference.js","sourceRoot":"","sources":["../../../src/gen/model/admissionregistrationV1beta1ServiceReference.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAGH;;EAEE;AACF,MAAa,4CAA4C;IA0CrD,MAAM,CAAC,mBAAmB;QACtB,OAAO,4CAA4C,CAAC,gBAAgB,CAAC;IACzE,CAAC;;AA1BM,0DAAa,GAAuB,SAAS,CAAC;AAE9C,6DAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,WAAW;QACnB,UAAU,EAAE,WAAW;QACvB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,QAAQ;KACnB;CAAK,CAAC;AAxCf,oGA6CC"}
\ No newline at end of file
diff --git a/dist/gen/model/admissionregistrationV1beta1WebhookClientConfig.d.ts b/dist/gen/model/admissionregistrationV1beta1WebhookClientConfig.d.ts
new file mode 100644
index 0000000000..aad6d17a28
--- /dev/null
+++ b/dist/gen/model/admissionregistrationV1beta1WebhookClientConfig.d.ts
@@ -0,0 +1,37 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+import { AdmissionregistrationV1beta1ServiceReference } from './admissionregistrationV1beta1ServiceReference';
+/**
+* WebhookClientConfig contains the information to make a TLS connection with the webhook
+*/
+export declare class AdmissionregistrationV1beta1WebhookClientConfig {
+ /**
+ * `caBundle` is a PEM encoded CA bundle which will be used to validate the webhook\'s server certificate. If unspecified, system trust roots on the apiserver are used.
+ */
+ 'caBundle'?: string;
+ 'service'?: AdmissionregistrationV1beta1ServiceReference;
+ /**
+ * `url` gives the location of the webhook, in standard URL form (`scheme://host:port/path`). Exactly one of `url` or `service` must be specified. The `host` should not refer to a service running in the cluster; use the `service` field instead. The host might be resolved via external DNS in some apiservers (e.g., `kube-apiserver` cannot resolve in-cluster DNS as that would be a layering violation). `host` may also be an IP address. Please note that using `localhost` or `127.0.0.1` as a `host` is risky unless you take great care to run this webhook on all hosts which run an apiserver which might need to make calls to this webhook. Such installs are likely to be non-portable, i.e., not easy to turn up in a new cluster. The scheme must be \"https\"; the URL must begin with \"https://\". A path is optional, and if present may be any string permissible in a URL. You may use the path to pass an arbitrary string to the webhook, for example, a cluster identifier. Attempting to use a user or basic auth e.g. \"user:password@\" is not allowed. Fragments (\"#...\") and query parameters (\"?...\") are not allowed, either.
+ */
+ 'url'?: string;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/admissionregistrationV1beta1WebhookClientConfig.js b/dist/gen/model/admissionregistrationV1beta1WebhookClientConfig.js
new file mode 100644
index 0000000000..43344005b6
--- /dev/null
+++ b/dist/gen/model/admissionregistrationV1beta1WebhookClientConfig.js
@@ -0,0 +1,41 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* WebhookClientConfig contains the information to make a TLS connection with the webhook
+*/
+class AdmissionregistrationV1beta1WebhookClientConfig {
+ static getAttributeTypeMap() {
+ return AdmissionregistrationV1beta1WebhookClientConfig.attributeTypeMap;
+ }
+}
+AdmissionregistrationV1beta1WebhookClientConfig.discriminator = undefined;
+AdmissionregistrationV1beta1WebhookClientConfig.attributeTypeMap = [
+ {
+ "name": "caBundle",
+ "baseName": "caBundle",
+ "type": "string"
+ },
+ {
+ "name": "service",
+ "baseName": "service",
+ "type": "AdmissionregistrationV1beta1ServiceReference"
+ },
+ {
+ "name": "url",
+ "baseName": "url",
+ "type": "string"
+ }
+];
+exports.AdmissionregistrationV1beta1WebhookClientConfig = AdmissionregistrationV1beta1WebhookClientConfig;
+//# sourceMappingURL=admissionregistrationV1beta1WebhookClientConfig.js.map
\ No newline at end of file
diff --git a/dist/gen/model/admissionregistrationV1beta1WebhookClientConfig.js.map b/dist/gen/model/admissionregistrationV1beta1WebhookClientConfig.js.map
new file mode 100644
index 0000000000..af65138ed3
--- /dev/null
+++ b/dist/gen/model/admissionregistrationV1beta1WebhookClientConfig.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"admissionregistrationV1beta1WebhookClientConfig.js","sourceRoot":"","sources":["../../../src/gen/model/admissionregistrationV1beta1WebhookClientConfig.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAIH;;EAEE;AACF,MAAa,+CAA+C;IA8BxD,MAAM,CAAC,mBAAmB;QACtB,OAAO,+CAA+C,CAAC,gBAAgB,CAAC;IAC5E,CAAC;;AArBM,6DAAa,GAAuB,SAAS,CAAC;AAE9C,gEAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,UAAU;QAClB,UAAU,EAAE,UAAU;QACtB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,SAAS;QACjB,UAAU,EAAE,SAAS;QACrB,MAAM,EAAE,8CAA8C;KACzD;IACD;QACI,MAAM,EAAE,KAAK;QACb,UAAU,EAAE,KAAK;QACjB,MAAM,EAAE,QAAQ;KACnB;CAAK,CAAC;AA5Bf,0GAiCC"}
\ No newline at end of file
diff --git a/dist/gen/model/apiextensionsV1beta1ServiceReference.d.ts b/dist/gen/model/apiextensionsV1beta1ServiceReference.d.ts
new file mode 100644
index 0000000000..d4b188512a
--- /dev/null
+++ b/dist/gen/model/apiextensionsV1beta1ServiceReference.d.ts
@@ -0,0 +1,43 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+/**
+* ServiceReference holds a reference to Service.legacy.k8s.io
+*/
+export declare class ApiextensionsV1beta1ServiceReference {
+ /**
+ * `name` is the name of the service. Required
+ */
+ 'name': string;
+ /**
+ * `namespace` is the namespace of the service. Required
+ */
+ 'namespace': string;
+ /**
+ * `path` is an optional URL path which will be sent in any request to this service.
+ */
+ 'path'?: string;
+ /**
+ * If specified, the port on the service that hosting webhook. Default to 443 for backward compatibility. `port` should be a valid port number (1-65535, inclusive).
+ */
+ 'port'?: number;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/apiextensionsV1beta1ServiceReference.js b/dist/gen/model/apiextensionsV1beta1ServiceReference.js
new file mode 100644
index 0000000000..526d3ac032
--- /dev/null
+++ b/dist/gen/model/apiextensionsV1beta1ServiceReference.js
@@ -0,0 +1,46 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* ServiceReference holds a reference to Service.legacy.k8s.io
+*/
+class ApiextensionsV1beta1ServiceReference {
+ static getAttributeTypeMap() {
+ return ApiextensionsV1beta1ServiceReference.attributeTypeMap;
+ }
+}
+ApiextensionsV1beta1ServiceReference.discriminator = undefined;
+ApiextensionsV1beta1ServiceReference.attributeTypeMap = [
+ {
+ "name": "name",
+ "baseName": "name",
+ "type": "string"
+ },
+ {
+ "name": "namespace",
+ "baseName": "namespace",
+ "type": "string"
+ },
+ {
+ "name": "path",
+ "baseName": "path",
+ "type": "string"
+ },
+ {
+ "name": "port",
+ "baseName": "port",
+ "type": "number"
+ }
+];
+exports.ApiextensionsV1beta1ServiceReference = ApiextensionsV1beta1ServiceReference;
+//# sourceMappingURL=apiextensionsV1beta1ServiceReference.js.map
\ No newline at end of file
diff --git a/dist/gen/model/apiextensionsV1beta1ServiceReference.js.map b/dist/gen/model/apiextensionsV1beta1ServiceReference.js.map
new file mode 100644
index 0000000000..9f3711a3d8
--- /dev/null
+++ b/dist/gen/model/apiextensionsV1beta1ServiceReference.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"apiextensionsV1beta1ServiceReference.js","sourceRoot":"","sources":["../../../src/gen/model/apiextensionsV1beta1ServiceReference.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAGH;;EAEE;AACF,MAAa,oCAAoC;IA0C7C,MAAM,CAAC,mBAAmB;QACtB,OAAO,oCAAoC,CAAC,gBAAgB,CAAC;IACjE,CAAC;;AA1BM,kDAAa,GAAuB,SAAS,CAAC;AAE9C,qDAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,WAAW;QACnB,UAAU,EAAE,WAAW;QACvB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,QAAQ;KACnB;CAAK,CAAC;AAxCf,oFA6CC"}
\ No newline at end of file
diff --git a/dist/gen/model/apiextensionsV1beta1WebhookClientConfig.d.ts b/dist/gen/model/apiextensionsV1beta1WebhookClientConfig.d.ts
new file mode 100644
index 0000000000..d635f449f6
--- /dev/null
+++ b/dist/gen/model/apiextensionsV1beta1WebhookClientConfig.d.ts
@@ -0,0 +1,37 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+import { ApiextensionsV1beta1ServiceReference } from './apiextensionsV1beta1ServiceReference';
+/**
+* WebhookClientConfig contains the information to make a TLS connection with the webhook. It has the same field as admissionregistration.v1beta1.WebhookClientConfig.
+*/
+export declare class ApiextensionsV1beta1WebhookClientConfig {
+ /**
+ * `caBundle` is a PEM encoded CA bundle which will be used to validate the webhook\'s server certificate. If unspecified, system trust roots on the apiserver are used.
+ */
+ 'caBundle'?: string;
+ 'service'?: ApiextensionsV1beta1ServiceReference;
+ /**
+ * `url` gives the location of the webhook, in standard URL form (`scheme://host:port/path`). Exactly one of `url` or `service` must be specified. The `host` should not refer to a service running in the cluster; use the `service` field instead. The host might be resolved via external DNS in some apiservers (e.g., `kube-apiserver` cannot resolve in-cluster DNS as that would be a layering violation). `host` may also be an IP address. Please note that using `localhost` or `127.0.0.1` as a `host` is risky unless you take great care to run this webhook on all hosts which run an apiserver which might need to make calls to this webhook. Such installs are likely to be non-portable, i.e., not easy to turn up in a new cluster. The scheme must be \"https\"; the URL must begin with \"https://\". A path is optional, and if present may be any string permissible in a URL. You may use the path to pass an arbitrary string to the webhook, for example, a cluster identifier. Attempting to use a user or basic auth e.g. \"user:password@\" is not allowed. Fragments (\"#...\") and query parameters (\"?...\") are not allowed, either.
+ */
+ 'url'?: string;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/apiextensionsV1beta1WebhookClientConfig.js b/dist/gen/model/apiextensionsV1beta1WebhookClientConfig.js
new file mode 100644
index 0000000000..912302ecf5
--- /dev/null
+++ b/dist/gen/model/apiextensionsV1beta1WebhookClientConfig.js
@@ -0,0 +1,41 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* WebhookClientConfig contains the information to make a TLS connection with the webhook. It has the same field as admissionregistration.v1beta1.WebhookClientConfig.
+*/
+class ApiextensionsV1beta1WebhookClientConfig {
+ static getAttributeTypeMap() {
+ return ApiextensionsV1beta1WebhookClientConfig.attributeTypeMap;
+ }
+}
+ApiextensionsV1beta1WebhookClientConfig.discriminator = undefined;
+ApiextensionsV1beta1WebhookClientConfig.attributeTypeMap = [
+ {
+ "name": "caBundle",
+ "baseName": "caBundle",
+ "type": "string"
+ },
+ {
+ "name": "service",
+ "baseName": "service",
+ "type": "ApiextensionsV1beta1ServiceReference"
+ },
+ {
+ "name": "url",
+ "baseName": "url",
+ "type": "string"
+ }
+];
+exports.ApiextensionsV1beta1WebhookClientConfig = ApiextensionsV1beta1WebhookClientConfig;
+//# sourceMappingURL=apiextensionsV1beta1WebhookClientConfig.js.map
\ No newline at end of file
diff --git a/dist/gen/model/apiextensionsV1beta1WebhookClientConfig.js.map b/dist/gen/model/apiextensionsV1beta1WebhookClientConfig.js.map
new file mode 100644
index 0000000000..a730a9e836
--- /dev/null
+++ b/dist/gen/model/apiextensionsV1beta1WebhookClientConfig.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"apiextensionsV1beta1WebhookClientConfig.js","sourceRoot":"","sources":["../../../src/gen/model/apiextensionsV1beta1WebhookClientConfig.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAIH;;EAEE;AACF,MAAa,uCAAuC;IA8BhD,MAAM,CAAC,mBAAmB;QACtB,OAAO,uCAAuC,CAAC,gBAAgB,CAAC;IACpE,CAAC;;AArBM,qDAAa,GAAuB,SAAS,CAAC;AAE9C,wDAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,UAAU;QAClB,UAAU,EAAE,UAAU;QACtB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,SAAS;QACjB,UAAU,EAAE,SAAS;QACrB,MAAM,EAAE,sCAAsC;KACjD;IACD;QACI,MAAM,EAAE,KAAK;QACb,UAAU,EAAE,KAAK;QACjB,MAAM,EAAE,QAAQ;KACnB;CAAK,CAAC;AA5Bf,0FAiCC"}
\ No newline at end of file
diff --git a/dist/gen/model/apiregistrationV1beta1ServiceReference.d.ts b/dist/gen/model/apiregistrationV1beta1ServiceReference.d.ts
new file mode 100644
index 0000000000..eb8a03707e
--- /dev/null
+++ b/dist/gen/model/apiregistrationV1beta1ServiceReference.d.ts
@@ -0,0 +1,39 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+/**
+* ServiceReference holds a reference to Service.legacy.k8s.io
+*/
+export declare class ApiregistrationV1beta1ServiceReference {
+ /**
+ * Name is the name of the service
+ */
+ 'name'?: string;
+ /**
+ * Namespace is the namespace of the service
+ */
+ 'namespace'?: string;
+ /**
+ * If specified, the port on the service that hosting webhook. Default to 443 for backward compatibility. `port` should be a valid port number (1-65535, inclusive).
+ */
+ 'port'?: number;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/apiregistrationV1beta1ServiceReference.js b/dist/gen/model/apiregistrationV1beta1ServiceReference.js
new file mode 100644
index 0000000000..546da0d9e1
--- /dev/null
+++ b/dist/gen/model/apiregistrationV1beta1ServiceReference.js
@@ -0,0 +1,41 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* ServiceReference holds a reference to Service.legacy.k8s.io
+*/
+class ApiregistrationV1beta1ServiceReference {
+ static getAttributeTypeMap() {
+ return ApiregistrationV1beta1ServiceReference.attributeTypeMap;
+ }
+}
+ApiregistrationV1beta1ServiceReference.discriminator = undefined;
+ApiregistrationV1beta1ServiceReference.attributeTypeMap = [
+ {
+ "name": "name",
+ "baseName": "name",
+ "type": "string"
+ },
+ {
+ "name": "namespace",
+ "baseName": "namespace",
+ "type": "string"
+ },
+ {
+ "name": "port",
+ "baseName": "port",
+ "type": "number"
+ }
+];
+exports.ApiregistrationV1beta1ServiceReference = ApiregistrationV1beta1ServiceReference;
+//# sourceMappingURL=apiregistrationV1beta1ServiceReference.js.map
\ No newline at end of file
diff --git a/dist/gen/model/apiregistrationV1beta1ServiceReference.js.map b/dist/gen/model/apiregistrationV1beta1ServiceReference.js.map
new file mode 100644
index 0000000000..156cbc7dbf
--- /dev/null
+++ b/dist/gen/model/apiregistrationV1beta1ServiceReference.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"apiregistrationV1beta1ServiceReference.js","sourceRoot":"","sources":["../../../src/gen/model/apiregistrationV1beta1ServiceReference.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAGH;;EAEE;AACF,MAAa,sCAAsC;IAiC/C,MAAM,CAAC,mBAAmB;QACtB,OAAO,sCAAsC,CAAC,gBAAgB,CAAC;IACnE,CAAC;;AArBM,oDAAa,GAAuB,SAAS,CAAC;AAE9C,uDAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,WAAW;QACnB,UAAU,EAAE,WAAW;QACvB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,QAAQ;KACnB;CAAK,CAAC;AA/Bf,wFAoCC"}
\ No newline at end of file
diff --git a/dist/gen/model/appsV1beta1Deployment.d.ts b/dist/gen/model/appsV1beta1Deployment.d.ts
new file mode 100644
index 0000000000..aaaa0ad225
--- /dev/null
+++ b/dist/gen/model/appsV1beta1Deployment.d.ts
@@ -0,0 +1,41 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+import { AppsV1beta1DeploymentSpec } from './appsV1beta1DeploymentSpec';
+import { AppsV1beta1DeploymentStatus } from './appsV1beta1DeploymentStatus';
+import { V1ObjectMeta } from './v1ObjectMeta';
+/**
+* DEPRECATED - This group version of Deployment is deprecated by apps/v1beta2/Deployment. See the release notes for more information. Deployment enables declarative updates for Pods and ReplicaSets.
+*/
+export declare class AppsV1beta1Deployment {
+ /**
+ * APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources
+ */
+ 'apiVersion'?: string;
+ /**
+ * Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
+ */
+ 'kind'?: string;
+ 'metadata'?: V1ObjectMeta;
+ 'spec'?: AppsV1beta1DeploymentSpec;
+ 'status'?: AppsV1beta1DeploymentStatus;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/appsV1beta1Deployment.js b/dist/gen/model/appsV1beta1Deployment.js
new file mode 100644
index 0000000000..b2d5755b94
--- /dev/null
+++ b/dist/gen/model/appsV1beta1Deployment.js
@@ -0,0 +1,51 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* DEPRECATED - This group version of Deployment is deprecated by apps/v1beta2/Deployment. See the release notes for more information. Deployment enables declarative updates for Pods and ReplicaSets.
+*/
+class AppsV1beta1Deployment {
+ static getAttributeTypeMap() {
+ return AppsV1beta1Deployment.attributeTypeMap;
+ }
+}
+AppsV1beta1Deployment.discriminator = undefined;
+AppsV1beta1Deployment.attributeTypeMap = [
+ {
+ "name": "apiVersion",
+ "baseName": "apiVersion",
+ "type": "string"
+ },
+ {
+ "name": "kind",
+ "baseName": "kind",
+ "type": "string"
+ },
+ {
+ "name": "metadata",
+ "baseName": "metadata",
+ "type": "V1ObjectMeta"
+ },
+ {
+ "name": "spec",
+ "baseName": "spec",
+ "type": "AppsV1beta1DeploymentSpec"
+ },
+ {
+ "name": "status",
+ "baseName": "status",
+ "type": "AppsV1beta1DeploymentStatus"
+ }
+];
+exports.AppsV1beta1Deployment = AppsV1beta1Deployment;
+//# sourceMappingURL=appsV1beta1Deployment.js.map
\ No newline at end of file
diff --git a/dist/gen/model/appsV1beta1Deployment.js.map b/dist/gen/model/appsV1beta1Deployment.js.map
new file mode 100644
index 0000000000..68151aacde
--- /dev/null
+++ b/dist/gen/model/appsV1beta1Deployment.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"appsV1beta1Deployment.js","sourceRoot":"","sources":["../../../src/gen/model/appsV1beta1Deployment.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAMH;;EAEE;AACF,MAAa,qBAAqB;IA0C9B,MAAM,CAAC,mBAAmB;QACtB,OAAO,qBAAqB,CAAC,gBAAgB,CAAC;IAClD,CAAC;;AA/BM,mCAAa,GAAuB,SAAS,CAAC;AAE9C,sCAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,YAAY;QACpB,UAAU,EAAE,YAAY;QACxB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,UAAU;QAClB,UAAU,EAAE,UAAU;QACtB,MAAM,EAAE,cAAc;KACzB;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,2BAA2B;KACtC;IACD;QACI,MAAM,EAAE,QAAQ;QAChB,UAAU,EAAE,QAAQ;QACpB,MAAM,EAAE,6BAA6B;KACxC;CAAK,CAAC;AAxCf,sDA6CC"}
\ No newline at end of file
diff --git a/dist/gen/model/appsV1beta1DeploymentCondition.d.ts b/dist/gen/model/appsV1beta1DeploymentCondition.d.ts
new file mode 100644
index 0000000000..7f0087bb63
--- /dev/null
+++ b/dist/gen/model/appsV1beta1DeploymentCondition.d.ts
@@ -0,0 +1,51 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+/**
+* DeploymentCondition describes the state of a deployment at a certain point.
+*/
+export declare class AppsV1beta1DeploymentCondition {
+ /**
+ * Last time the condition transitioned from one status to another.
+ */
+ 'lastTransitionTime'?: Date;
+ /**
+ * The last time this condition was updated.
+ */
+ 'lastUpdateTime'?: Date;
+ /**
+ * A human readable message indicating details about the transition.
+ */
+ 'message'?: string;
+ /**
+ * The reason for the condition\'s last transition.
+ */
+ 'reason'?: string;
+ /**
+ * Status of the condition, one of True, False, Unknown.
+ */
+ 'status': string;
+ /**
+ * Type of deployment condition.
+ */
+ 'type': string;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/appsV1beta1DeploymentCondition.js b/dist/gen/model/appsV1beta1DeploymentCondition.js
new file mode 100644
index 0000000000..ebd57117a0
--- /dev/null
+++ b/dist/gen/model/appsV1beta1DeploymentCondition.js
@@ -0,0 +1,56 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* DeploymentCondition describes the state of a deployment at a certain point.
+*/
+class AppsV1beta1DeploymentCondition {
+ static getAttributeTypeMap() {
+ return AppsV1beta1DeploymentCondition.attributeTypeMap;
+ }
+}
+AppsV1beta1DeploymentCondition.discriminator = undefined;
+AppsV1beta1DeploymentCondition.attributeTypeMap = [
+ {
+ "name": "lastTransitionTime",
+ "baseName": "lastTransitionTime",
+ "type": "Date"
+ },
+ {
+ "name": "lastUpdateTime",
+ "baseName": "lastUpdateTime",
+ "type": "Date"
+ },
+ {
+ "name": "message",
+ "baseName": "message",
+ "type": "string"
+ },
+ {
+ "name": "reason",
+ "baseName": "reason",
+ "type": "string"
+ },
+ {
+ "name": "status",
+ "baseName": "status",
+ "type": "string"
+ },
+ {
+ "name": "type",
+ "baseName": "type",
+ "type": "string"
+ }
+];
+exports.AppsV1beta1DeploymentCondition = AppsV1beta1DeploymentCondition;
+//# sourceMappingURL=appsV1beta1DeploymentCondition.js.map
\ No newline at end of file
diff --git a/dist/gen/model/appsV1beta1DeploymentCondition.js.map b/dist/gen/model/appsV1beta1DeploymentCondition.js.map
new file mode 100644
index 0000000000..eea4de9992
--- /dev/null
+++ b/dist/gen/model/appsV1beta1DeploymentCondition.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"appsV1beta1DeploymentCondition.js","sourceRoot":"","sources":["../../../src/gen/model/appsV1beta1DeploymentCondition.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAGH;;EAEE;AACF,MAAa,8BAA8B;IA4DvC,MAAM,CAAC,mBAAmB;QACtB,OAAO,8BAA8B,CAAC,gBAAgB,CAAC;IAC3D,CAAC;;AApCM,4CAAa,GAAuB,SAAS,CAAC;AAE9C,+CAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,oBAAoB;QAC5B,UAAU,EAAE,oBAAoB;QAChC,MAAM,EAAE,MAAM;KACjB;IACD;QACI,MAAM,EAAE,gBAAgB;QACxB,UAAU,EAAE,gBAAgB;QAC5B,MAAM,EAAE,MAAM;KACjB;IACD;QACI,MAAM,EAAE,SAAS;QACjB,UAAU,EAAE,SAAS;QACrB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,QAAQ;QAChB,UAAU,EAAE,QAAQ;QACpB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,QAAQ;QAChB,UAAU,EAAE,QAAQ;QACpB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,QAAQ;KACnB;CAAK,CAAC;AA1Df,wEA+DC"}
\ No newline at end of file
diff --git a/dist/gen/model/appsV1beta1DeploymentList.d.ts b/dist/gen/model/appsV1beta1DeploymentList.d.ts
new file mode 100644
index 0000000000..4280985f80
--- /dev/null
+++ b/dist/gen/model/appsV1beta1DeploymentList.d.ts
@@ -0,0 +1,42 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+import { AppsV1beta1Deployment } from './appsV1beta1Deployment';
+import { V1ListMeta } from './v1ListMeta';
+/**
+* DeploymentList is a list of Deployments.
+*/
+export declare class AppsV1beta1DeploymentList {
+ /**
+ * APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources
+ */
+ 'apiVersion'?: string;
+ /**
+ * Items is the list of Deployments.
+ */
+ 'items': Array;
+ /**
+ * Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
+ */
+ 'kind'?: string;
+ 'metadata'?: V1ListMeta;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/appsV1beta1DeploymentList.js b/dist/gen/model/appsV1beta1DeploymentList.js
new file mode 100644
index 0000000000..9f9e83639b
--- /dev/null
+++ b/dist/gen/model/appsV1beta1DeploymentList.js
@@ -0,0 +1,46 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* DeploymentList is a list of Deployments.
+*/
+class AppsV1beta1DeploymentList {
+ static getAttributeTypeMap() {
+ return AppsV1beta1DeploymentList.attributeTypeMap;
+ }
+}
+AppsV1beta1DeploymentList.discriminator = undefined;
+AppsV1beta1DeploymentList.attributeTypeMap = [
+ {
+ "name": "apiVersion",
+ "baseName": "apiVersion",
+ "type": "string"
+ },
+ {
+ "name": "items",
+ "baseName": "items",
+ "type": "Array"
+ },
+ {
+ "name": "kind",
+ "baseName": "kind",
+ "type": "string"
+ },
+ {
+ "name": "metadata",
+ "baseName": "metadata",
+ "type": "V1ListMeta"
+ }
+];
+exports.AppsV1beta1DeploymentList = AppsV1beta1DeploymentList;
+//# sourceMappingURL=appsV1beta1DeploymentList.js.map
\ No newline at end of file
diff --git a/dist/gen/model/appsV1beta1DeploymentList.js.map b/dist/gen/model/appsV1beta1DeploymentList.js.map
new file mode 100644
index 0000000000..3613729a04
--- /dev/null
+++ b/dist/gen/model/appsV1beta1DeploymentList.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"appsV1beta1DeploymentList.js","sourceRoot":"","sources":["../../../src/gen/model/appsV1beta1DeploymentList.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAKH;;EAEE;AACF,MAAa,yBAAyB;IAuClC,MAAM,CAAC,mBAAmB;QACtB,OAAO,yBAAyB,CAAC,gBAAgB,CAAC;IACtD,CAAC;;AA1BM,uCAAa,GAAuB,SAAS,CAAC;AAE9C,0CAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,YAAY;QACpB,UAAU,EAAE,YAAY;QACxB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,OAAO;QACf,UAAU,EAAE,OAAO;QACnB,MAAM,EAAE,8BAA8B;KACzC;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,UAAU;QAClB,UAAU,EAAE,UAAU;QACtB,MAAM,EAAE,YAAY;KACvB;CAAK,CAAC;AArCf,8DA0CC"}
\ No newline at end of file
diff --git a/dist/gen/model/appsV1beta1DeploymentRollback.d.ts b/dist/gen/model/appsV1beta1DeploymentRollback.d.ts
new file mode 100644
index 0000000000..8cc45f2dfd
--- /dev/null
+++ b/dist/gen/model/appsV1beta1DeploymentRollback.d.ts
@@ -0,0 +1,47 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+import { AppsV1beta1RollbackConfig } from './appsV1beta1RollbackConfig';
+/**
+* DEPRECATED. DeploymentRollback stores the information required to rollback a deployment.
+*/
+export declare class AppsV1beta1DeploymentRollback {
+ /**
+ * APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources
+ */
+ 'apiVersion'?: string;
+ /**
+ * Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
+ */
+ 'kind'?: string;
+ /**
+ * Required: This must match the Name of a deployment.
+ */
+ 'name': string;
+ 'rollbackTo': AppsV1beta1RollbackConfig;
+ /**
+ * The annotations to be updated to a deployment
+ */
+ 'updatedAnnotations'?: {
+ [key: string]: string;
+ };
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/appsV1beta1DeploymentRollback.js b/dist/gen/model/appsV1beta1DeploymentRollback.js
new file mode 100644
index 0000000000..19f51d0001
--- /dev/null
+++ b/dist/gen/model/appsV1beta1DeploymentRollback.js
@@ -0,0 +1,51 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* DEPRECATED. DeploymentRollback stores the information required to rollback a deployment.
+*/
+class AppsV1beta1DeploymentRollback {
+ static getAttributeTypeMap() {
+ return AppsV1beta1DeploymentRollback.attributeTypeMap;
+ }
+}
+AppsV1beta1DeploymentRollback.discriminator = undefined;
+AppsV1beta1DeploymentRollback.attributeTypeMap = [
+ {
+ "name": "apiVersion",
+ "baseName": "apiVersion",
+ "type": "string"
+ },
+ {
+ "name": "kind",
+ "baseName": "kind",
+ "type": "string"
+ },
+ {
+ "name": "name",
+ "baseName": "name",
+ "type": "string"
+ },
+ {
+ "name": "rollbackTo",
+ "baseName": "rollbackTo",
+ "type": "AppsV1beta1RollbackConfig"
+ },
+ {
+ "name": "updatedAnnotations",
+ "baseName": "updatedAnnotations",
+ "type": "{ [key: string]: string; }"
+ }
+];
+exports.AppsV1beta1DeploymentRollback = AppsV1beta1DeploymentRollback;
+//# sourceMappingURL=appsV1beta1DeploymentRollback.js.map
\ No newline at end of file
diff --git a/dist/gen/model/appsV1beta1DeploymentRollback.js.map b/dist/gen/model/appsV1beta1DeploymentRollback.js.map
new file mode 100644
index 0000000000..9f1c9a0e7c
--- /dev/null
+++ b/dist/gen/model/appsV1beta1DeploymentRollback.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"appsV1beta1DeploymentRollback.js","sourceRoot":"","sources":["../../../src/gen/model/appsV1beta1DeploymentRollback.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAIH;;EAEE;AACF,MAAa,6BAA6B;IAgDtC,MAAM,CAAC,mBAAmB;QACtB,OAAO,6BAA6B,CAAC,gBAAgB,CAAC;IAC1D,CAAC;;AA/BM,2CAAa,GAAuB,SAAS,CAAC;AAE9C,8CAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,YAAY;QACpB,UAAU,EAAE,YAAY;QACxB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,YAAY;QACpB,UAAU,EAAE,YAAY;QACxB,MAAM,EAAE,2BAA2B;KACtC;IACD;QACI,MAAM,EAAE,oBAAoB;QAC5B,UAAU,EAAE,oBAAoB;QAChC,MAAM,EAAE,4BAA4B;KACvC;CAAK,CAAC;AA9Cf,sEAmDC"}
\ No newline at end of file
diff --git a/dist/gen/model/appsV1beta1DeploymentSpec.d.ts b/dist/gen/model/appsV1beta1DeploymentSpec.d.ts
new file mode 100644
index 0000000000..15d1171607
--- /dev/null
+++ b/dist/gen/model/appsV1beta1DeploymentSpec.d.ts
@@ -0,0 +1,55 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+import { AppsV1beta1DeploymentStrategy } from './appsV1beta1DeploymentStrategy';
+import { AppsV1beta1RollbackConfig } from './appsV1beta1RollbackConfig';
+import { V1LabelSelector } from './v1LabelSelector';
+import { V1PodTemplateSpec } from './v1PodTemplateSpec';
+/**
+* DeploymentSpec is the specification of the desired behavior of the Deployment.
+*/
+export declare class AppsV1beta1DeploymentSpec {
+ /**
+ * Minimum number of seconds for which a newly created pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready)
+ */
+ 'minReadySeconds'?: number;
+ /**
+ * Indicates that the deployment is paused.
+ */
+ 'paused'?: boolean;
+ /**
+ * The maximum time in seconds for a deployment to make progress before it is considered to be failed. The deployment controller will continue to process failed deployments and a condition with a ProgressDeadlineExceeded reason will be surfaced in the deployment status. Note that progress will not be estimated during the time a deployment is paused. Defaults to 600s.
+ */
+ 'progressDeadlineSeconds'?: number;
+ /**
+ * Number of desired pods. This is a pointer to distinguish between explicit zero and not specified. Defaults to 1.
+ */
+ 'replicas'?: number;
+ /**
+ * The number of old ReplicaSets to retain to allow rollback. This is a pointer to distinguish between explicit zero and not specified. Defaults to 2.
+ */
+ 'revisionHistoryLimit'?: number;
+ 'rollbackTo'?: AppsV1beta1RollbackConfig;
+ 'selector'?: V1LabelSelector;
+ 'strategy'?: AppsV1beta1DeploymentStrategy;
+ 'template': V1PodTemplateSpec;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/appsV1beta1DeploymentSpec.js b/dist/gen/model/appsV1beta1DeploymentSpec.js
new file mode 100644
index 0000000000..27082291e3
--- /dev/null
+++ b/dist/gen/model/appsV1beta1DeploymentSpec.js
@@ -0,0 +1,71 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* DeploymentSpec is the specification of the desired behavior of the Deployment.
+*/
+class AppsV1beta1DeploymentSpec {
+ static getAttributeTypeMap() {
+ return AppsV1beta1DeploymentSpec.attributeTypeMap;
+ }
+}
+AppsV1beta1DeploymentSpec.discriminator = undefined;
+AppsV1beta1DeploymentSpec.attributeTypeMap = [
+ {
+ "name": "minReadySeconds",
+ "baseName": "minReadySeconds",
+ "type": "number"
+ },
+ {
+ "name": "paused",
+ "baseName": "paused",
+ "type": "boolean"
+ },
+ {
+ "name": "progressDeadlineSeconds",
+ "baseName": "progressDeadlineSeconds",
+ "type": "number"
+ },
+ {
+ "name": "replicas",
+ "baseName": "replicas",
+ "type": "number"
+ },
+ {
+ "name": "revisionHistoryLimit",
+ "baseName": "revisionHistoryLimit",
+ "type": "number"
+ },
+ {
+ "name": "rollbackTo",
+ "baseName": "rollbackTo",
+ "type": "AppsV1beta1RollbackConfig"
+ },
+ {
+ "name": "selector",
+ "baseName": "selector",
+ "type": "V1LabelSelector"
+ },
+ {
+ "name": "strategy",
+ "baseName": "strategy",
+ "type": "AppsV1beta1DeploymentStrategy"
+ },
+ {
+ "name": "template",
+ "baseName": "template",
+ "type": "V1PodTemplateSpec"
+ }
+];
+exports.AppsV1beta1DeploymentSpec = AppsV1beta1DeploymentSpec;
+//# sourceMappingURL=appsV1beta1DeploymentSpec.js.map
\ No newline at end of file
diff --git a/dist/gen/model/appsV1beta1DeploymentSpec.js.map b/dist/gen/model/appsV1beta1DeploymentSpec.js.map
new file mode 100644
index 0000000000..ecb2aa95a2
--- /dev/null
+++ b/dist/gen/model/appsV1beta1DeploymentSpec.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"appsV1beta1DeploymentSpec.js","sourceRoot":"","sources":["../../../src/gen/model/appsV1beta1DeploymentSpec.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAOH;;EAEE;AACF,MAAa,yBAAyB;IA2ElC,MAAM,CAAC,mBAAmB;QACtB,OAAO,yBAAyB,CAAC,gBAAgB,CAAC;IACtD,CAAC;;AAnDM,uCAAa,GAAuB,SAAS,CAAC;AAE9C,0CAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,iBAAiB;QACzB,UAAU,EAAE,iBAAiB;QAC7B,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,QAAQ;QAChB,UAAU,EAAE,QAAQ;QACpB,MAAM,EAAE,SAAS;KACpB;IACD;QACI,MAAM,EAAE,yBAAyB;QACjC,UAAU,EAAE,yBAAyB;QACrC,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,UAAU;QAClB,UAAU,EAAE,UAAU;QACtB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,sBAAsB;QAC9B,UAAU,EAAE,sBAAsB;QAClC,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,YAAY;QACpB,UAAU,EAAE,YAAY;QACxB,MAAM,EAAE,2BAA2B;KACtC;IACD;QACI,MAAM,EAAE,UAAU;QAClB,UAAU,EAAE,UAAU;QACtB,MAAM,EAAE,iBAAiB;KAC5B;IACD;QACI,MAAM,EAAE,UAAU;QAClB,UAAU,EAAE,UAAU;QACtB,MAAM,EAAE,+BAA+B;KAC1C;IACD;QACI,MAAM,EAAE,UAAU;QAClB,UAAU,EAAE,UAAU;QACtB,MAAM,EAAE,mBAAmB;KAC9B;CAAK,CAAC;AAzEf,8DA8EC"}
\ No newline at end of file
diff --git a/dist/gen/model/appsV1beta1DeploymentStatus.d.ts b/dist/gen/model/appsV1beta1DeploymentStatus.d.ts
new file mode 100644
index 0000000000..472cb35b84
--- /dev/null
+++ b/dist/gen/model/appsV1beta1DeploymentStatus.d.ts
@@ -0,0 +1,60 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+import { AppsV1beta1DeploymentCondition } from './appsV1beta1DeploymentCondition';
+/**
+* DeploymentStatus is the most recently observed status of the Deployment.
+*/
+export declare class AppsV1beta1DeploymentStatus {
+ /**
+ * Total number of available pods (ready for at least minReadySeconds) targeted by this deployment.
+ */
+ 'availableReplicas'?: number;
+ /**
+ * Count of hash collisions for the Deployment. The Deployment controller uses this field as a collision avoidance mechanism when it needs to create the name for the newest ReplicaSet.
+ */
+ 'collisionCount'?: number;
+ /**
+ * Represents the latest available observations of a deployment\'s current state.
+ */
+ 'conditions'?: Array;
+ /**
+ * The generation observed by the deployment controller.
+ */
+ 'observedGeneration'?: number;
+ /**
+ * Total number of ready pods targeted by this deployment.
+ */
+ 'readyReplicas'?: number;
+ /**
+ * Total number of non-terminated pods targeted by this deployment (their labels match the selector).
+ */
+ 'replicas'?: number;
+ /**
+ * Total number of unavailable pods targeted by this deployment. This is the total number of pods that are still required for the deployment to have 100% available capacity. They may either be pods that are running but not yet available or pods that still have not been created.
+ */
+ 'unavailableReplicas'?: number;
+ /**
+ * Total number of non-terminated pods targeted by this deployment that have the desired template spec.
+ */
+ 'updatedReplicas'?: number;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/appsV1beta1DeploymentStatus.js b/dist/gen/model/appsV1beta1DeploymentStatus.js
new file mode 100644
index 0000000000..0a14e3cffc
--- /dev/null
+++ b/dist/gen/model/appsV1beta1DeploymentStatus.js
@@ -0,0 +1,66 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* DeploymentStatus is the most recently observed status of the Deployment.
+*/
+class AppsV1beta1DeploymentStatus {
+ static getAttributeTypeMap() {
+ return AppsV1beta1DeploymentStatus.attributeTypeMap;
+ }
+}
+AppsV1beta1DeploymentStatus.discriminator = undefined;
+AppsV1beta1DeploymentStatus.attributeTypeMap = [
+ {
+ "name": "availableReplicas",
+ "baseName": "availableReplicas",
+ "type": "number"
+ },
+ {
+ "name": "collisionCount",
+ "baseName": "collisionCount",
+ "type": "number"
+ },
+ {
+ "name": "conditions",
+ "baseName": "conditions",
+ "type": "Array"
+ },
+ {
+ "name": "observedGeneration",
+ "baseName": "observedGeneration",
+ "type": "number"
+ },
+ {
+ "name": "readyReplicas",
+ "baseName": "readyReplicas",
+ "type": "number"
+ },
+ {
+ "name": "replicas",
+ "baseName": "replicas",
+ "type": "number"
+ },
+ {
+ "name": "unavailableReplicas",
+ "baseName": "unavailableReplicas",
+ "type": "number"
+ },
+ {
+ "name": "updatedReplicas",
+ "baseName": "updatedReplicas",
+ "type": "number"
+ }
+];
+exports.AppsV1beta1DeploymentStatus = AppsV1beta1DeploymentStatus;
+//# sourceMappingURL=appsV1beta1DeploymentStatus.js.map
\ No newline at end of file
diff --git a/dist/gen/model/appsV1beta1DeploymentStatus.js.map b/dist/gen/model/appsV1beta1DeploymentStatus.js.map
new file mode 100644
index 0000000000..5e233c7ae5
--- /dev/null
+++ b/dist/gen/model/appsV1beta1DeploymentStatus.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"appsV1beta1DeploymentStatus.js","sourceRoot":"","sources":["../../../src/gen/model/appsV1beta1DeploymentStatus.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAIH;;EAEE;AACF,MAAa,2BAA2B;IA8EpC,MAAM,CAAC,mBAAmB;QACtB,OAAO,2BAA2B,CAAC,gBAAgB,CAAC;IACxD,CAAC;;AA9CM,yCAAa,GAAuB,SAAS,CAAC;AAE9C,4CAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,mBAAmB;QAC3B,UAAU,EAAE,mBAAmB;QAC/B,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,gBAAgB;QACxB,UAAU,EAAE,gBAAgB;QAC5B,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,YAAY;QACpB,UAAU,EAAE,YAAY;QACxB,MAAM,EAAE,uCAAuC;KAClD;IACD;QACI,MAAM,EAAE,oBAAoB;QAC5B,UAAU,EAAE,oBAAoB;QAChC,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,eAAe;QACvB,UAAU,EAAE,eAAe;QAC3B,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,UAAU;QAClB,UAAU,EAAE,UAAU;QACtB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,qBAAqB;QAC7B,UAAU,EAAE,qBAAqB;QACjC,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,iBAAiB;QACzB,UAAU,EAAE,iBAAiB;QAC7B,MAAM,EAAE,QAAQ;KACnB;CAAK,CAAC;AA5Ef,kEAiFC"}
\ No newline at end of file
diff --git a/dist/gen/model/appsV1beta1DeploymentStrategy.d.ts b/dist/gen/model/appsV1beta1DeploymentStrategy.d.ts
new file mode 100644
index 0000000000..e01b0d960e
--- /dev/null
+++ b/dist/gen/model/appsV1beta1DeploymentStrategy.d.ts
@@ -0,0 +1,33 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+import { AppsV1beta1RollingUpdateDeployment } from './appsV1beta1RollingUpdateDeployment';
+/**
+* DeploymentStrategy describes how to replace existing pods with new ones.
+*/
+export declare class AppsV1beta1DeploymentStrategy {
+ 'rollingUpdate'?: AppsV1beta1RollingUpdateDeployment;
+ /**
+ * Type of deployment. Can be \"Recreate\" or \"RollingUpdate\". Default is RollingUpdate.
+ */
+ 'type'?: string;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/appsV1beta1DeploymentStrategy.js b/dist/gen/model/appsV1beta1DeploymentStrategy.js
new file mode 100644
index 0000000000..fcdc8b2a0d
--- /dev/null
+++ b/dist/gen/model/appsV1beta1DeploymentStrategy.js
@@ -0,0 +1,36 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* DeploymentStrategy describes how to replace existing pods with new ones.
+*/
+class AppsV1beta1DeploymentStrategy {
+ static getAttributeTypeMap() {
+ return AppsV1beta1DeploymentStrategy.attributeTypeMap;
+ }
+}
+AppsV1beta1DeploymentStrategy.discriminator = undefined;
+AppsV1beta1DeploymentStrategy.attributeTypeMap = [
+ {
+ "name": "rollingUpdate",
+ "baseName": "rollingUpdate",
+ "type": "AppsV1beta1RollingUpdateDeployment"
+ },
+ {
+ "name": "type",
+ "baseName": "type",
+ "type": "string"
+ }
+];
+exports.AppsV1beta1DeploymentStrategy = AppsV1beta1DeploymentStrategy;
+//# sourceMappingURL=appsV1beta1DeploymentStrategy.js.map
\ No newline at end of file
diff --git a/dist/gen/model/appsV1beta1DeploymentStrategy.js.map b/dist/gen/model/appsV1beta1DeploymentStrategy.js.map
new file mode 100644
index 0000000000..56b803f752
--- /dev/null
+++ b/dist/gen/model/appsV1beta1DeploymentStrategy.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"appsV1beta1DeploymentStrategy.js","sourceRoot":"","sources":["../../../src/gen/model/appsV1beta1DeploymentStrategy.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAIH;;EAEE;AACF,MAAa,6BAA6B;IAqBtC,MAAM,CAAC,mBAAmB;QACtB,OAAO,6BAA6B,CAAC,gBAAgB,CAAC;IAC1D,CAAC;;AAhBM,2CAAa,GAAuB,SAAS,CAAC;AAE9C,8CAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,eAAe;QACvB,UAAU,EAAE,eAAe;QAC3B,MAAM,EAAE,oCAAoC;KAC/C;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,QAAQ;KACnB;CAAK,CAAC;AAnBf,sEAwBC"}
\ No newline at end of file
diff --git a/dist/gen/model/appsV1beta1RollbackConfig.d.ts b/dist/gen/model/appsV1beta1RollbackConfig.d.ts
new file mode 100644
index 0000000000..9ef2cb8899
--- /dev/null
+++ b/dist/gen/model/appsV1beta1RollbackConfig.d.ts
@@ -0,0 +1,31 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+/**
+* DEPRECATED.
+*/
+export declare class AppsV1beta1RollbackConfig {
+ /**
+ * The revision to rollback to. If set to 0, rollback to the last revision.
+ */
+ 'revision'?: number;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/appsV1beta1RollbackConfig.js b/dist/gen/model/appsV1beta1RollbackConfig.js
new file mode 100644
index 0000000000..7b5e04c8ea
--- /dev/null
+++ b/dist/gen/model/appsV1beta1RollbackConfig.js
@@ -0,0 +1,31 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* DEPRECATED.
+*/
+class AppsV1beta1RollbackConfig {
+ static getAttributeTypeMap() {
+ return AppsV1beta1RollbackConfig.attributeTypeMap;
+ }
+}
+AppsV1beta1RollbackConfig.discriminator = undefined;
+AppsV1beta1RollbackConfig.attributeTypeMap = [
+ {
+ "name": "revision",
+ "baseName": "revision",
+ "type": "number"
+ }
+];
+exports.AppsV1beta1RollbackConfig = AppsV1beta1RollbackConfig;
+//# sourceMappingURL=appsV1beta1RollbackConfig.js.map
\ No newline at end of file
diff --git a/dist/gen/model/appsV1beta1RollbackConfig.js.map b/dist/gen/model/appsV1beta1RollbackConfig.js.map
new file mode 100644
index 0000000000..b7c2a0460c
--- /dev/null
+++ b/dist/gen/model/appsV1beta1RollbackConfig.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"appsV1beta1RollbackConfig.js","sourceRoot":"","sources":["../../../src/gen/model/appsV1beta1RollbackConfig.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAGH;;EAEE;AACF,MAAa,yBAAyB;IAelC,MAAM,CAAC,mBAAmB;QACtB,OAAO,yBAAyB,CAAC,gBAAgB,CAAC;IACtD,CAAC;;AAXM,uCAAa,GAAuB,SAAS,CAAC;AAE9C,0CAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,UAAU;QAClB,UAAU,EAAE,UAAU;QACtB,MAAM,EAAE,QAAQ;KACnB;CAAK,CAAC;AAbf,8DAkBC"}
\ No newline at end of file
diff --git a/dist/gen/model/appsV1beta1RollingUpdateDeployment.d.ts b/dist/gen/model/appsV1beta1RollingUpdateDeployment.d.ts
new file mode 100644
index 0000000000..d8eb3daf8a
--- /dev/null
+++ b/dist/gen/model/appsV1beta1RollingUpdateDeployment.d.ts
@@ -0,0 +1,35 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+/**
+* Spec to control the desired behavior of rolling update.
+*/
+export declare class AppsV1beta1RollingUpdateDeployment {
+ /**
+ * The maximum number of pods that can be scheduled above the desired number of pods. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). This can not be 0 if MaxUnavailable is 0. Absolute number is calculated from percentage by rounding up. Defaults to 25%. Example: when this is set to 30%, the new ReplicaSet can be scaled up immediately when the rolling update starts, such that the total number of old and new pods do not exceed 130% of desired pods. Once old pods have been killed, new ReplicaSet can be scaled up further, ensuring that total number of pods running at any time during the update is at most 130% of desired pods.
+ */
+ 'maxSurge'?: object;
+ /**
+ * The maximum number of pods that can be unavailable during the update. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). Absolute number is calculated from percentage by rounding down. This can not be 0 if MaxSurge is 0. Defaults to 25%. Example: when this is set to 30%, the old ReplicaSet can be scaled down to 70% of desired pods immediately when the rolling update starts. Once new pods are ready, old ReplicaSet can be scaled down further, followed by scaling up the new ReplicaSet, ensuring that the total number of pods available at all times during the update is at least 70% of desired pods.
+ */
+ 'maxUnavailable'?: object;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/appsV1beta1RollingUpdateDeployment.js b/dist/gen/model/appsV1beta1RollingUpdateDeployment.js
new file mode 100644
index 0000000000..4084be0c69
--- /dev/null
+++ b/dist/gen/model/appsV1beta1RollingUpdateDeployment.js
@@ -0,0 +1,36 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* Spec to control the desired behavior of rolling update.
+*/
+class AppsV1beta1RollingUpdateDeployment {
+ static getAttributeTypeMap() {
+ return AppsV1beta1RollingUpdateDeployment.attributeTypeMap;
+ }
+}
+AppsV1beta1RollingUpdateDeployment.discriminator = undefined;
+AppsV1beta1RollingUpdateDeployment.attributeTypeMap = [
+ {
+ "name": "maxSurge",
+ "baseName": "maxSurge",
+ "type": "object"
+ },
+ {
+ "name": "maxUnavailable",
+ "baseName": "maxUnavailable",
+ "type": "object"
+ }
+];
+exports.AppsV1beta1RollingUpdateDeployment = AppsV1beta1RollingUpdateDeployment;
+//# sourceMappingURL=appsV1beta1RollingUpdateDeployment.js.map
\ No newline at end of file
diff --git a/dist/gen/model/appsV1beta1RollingUpdateDeployment.js.map b/dist/gen/model/appsV1beta1RollingUpdateDeployment.js.map
new file mode 100644
index 0000000000..782cec0b9d
--- /dev/null
+++ b/dist/gen/model/appsV1beta1RollingUpdateDeployment.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"appsV1beta1RollingUpdateDeployment.js","sourceRoot":"","sources":["../../../src/gen/model/appsV1beta1RollingUpdateDeployment.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAGH;;EAEE;AACF,MAAa,kCAAkC;IAwB3C,MAAM,CAAC,mBAAmB;QACtB,OAAO,kCAAkC,CAAC,gBAAgB,CAAC;IAC/D,CAAC;;AAhBM,gDAAa,GAAuB,SAAS,CAAC;AAE9C,mDAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,UAAU;QAClB,UAAU,EAAE,UAAU;QACtB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,gBAAgB;QACxB,UAAU,EAAE,gBAAgB;QAC5B,MAAM,EAAE,QAAQ;KACnB;CAAK,CAAC;AAtBf,gFA2BC"}
\ No newline at end of file
diff --git a/dist/gen/model/appsV1beta1Scale.d.ts b/dist/gen/model/appsV1beta1Scale.d.ts
new file mode 100644
index 0000000000..e23cb3ac3b
--- /dev/null
+++ b/dist/gen/model/appsV1beta1Scale.d.ts
@@ -0,0 +1,41 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+import { AppsV1beta1ScaleSpec } from './appsV1beta1ScaleSpec';
+import { AppsV1beta1ScaleStatus } from './appsV1beta1ScaleStatus';
+import { V1ObjectMeta } from './v1ObjectMeta';
+/**
+* Scale represents a scaling request for a resource.
+*/
+export declare class AppsV1beta1Scale {
+ /**
+ * APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources
+ */
+ 'apiVersion'?: string;
+ /**
+ * Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
+ */
+ 'kind'?: string;
+ 'metadata'?: V1ObjectMeta;
+ 'spec'?: AppsV1beta1ScaleSpec;
+ 'status'?: AppsV1beta1ScaleStatus;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/appsV1beta1Scale.js b/dist/gen/model/appsV1beta1Scale.js
new file mode 100644
index 0000000000..02fbdd1a7a
--- /dev/null
+++ b/dist/gen/model/appsV1beta1Scale.js
@@ -0,0 +1,51 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* Scale represents a scaling request for a resource.
+*/
+class AppsV1beta1Scale {
+ static getAttributeTypeMap() {
+ return AppsV1beta1Scale.attributeTypeMap;
+ }
+}
+AppsV1beta1Scale.discriminator = undefined;
+AppsV1beta1Scale.attributeTypeMap = [
+ {
+ "name": "apiVersion",
+ "baseName": "apiVersion",
+ "type": "string"
+ },
+ {
+ "name": "kind",
+ "baseName": "kind",
+ "type": "string"
+ },
+ {
+ "name": "metadata",
+ "baseName": "metadata",
+ "type": "V1ObjectMeta"
+ },
+ {
+ "name": "spec",
+ "baseName": "spec",
+ "type": "AppsV1beta1ScaleSpec"
+ },
+ {
+ "name": "status",
+ "baseName": "status",
+ "type": "AppsV1beta1ScaleStatus"
+ }
+];
+exports.AppsV1beta1Scale = AppsV1beta1Scale;
+//# sourceMappingURL=appsV1beta1Scale.js.map
\ No newline at end of file
diff --git a/dist/gen/model/appsV1beta1Scale.js.map b/dist/gen/model/appsV1beta1Scale.js.map
new file mode 100644
index 0000000000..36f71af6ae
--- /dev/null
+++ b/dist/gen/model/appsV1beta1Scale.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"appsV1beta1Scale.js","sourceRoot":"","sources":["../../../src/gen/model/appsV1beta1Scale.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAMH;;EAEE;AACF,MAAa,gBAAgB;IA0CzB,MAAM,CAAC,mBAAmB;QACtB,OAAO,gBAAgB,CAAC,gBAAgB,CAAC;IAC7C,CAAC;;AA/BM,8BAAa,GAAuB,SAAS,CAAC;AAE9C,iCAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,YAAY;QACpB,UAAU,EAAE,YAAY;QACxB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,UAAU;QAClB,UAAU,EAAE,UAAU;QACtB,MAAM,EAAE,cAAc;KACzB;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,sBAAsB;KACjC;IACD;QACI,MAAM,EAAE,QAAQ;QAChB,UAAU,EAAE,QAAQ;QACpB,MAAM,EAAE,wBAAwB;KACnC;CAAK,CAAC;AAxCf,4CA6CC"}
\ No newline at end of file
diff --git a/dist/gen/model/appsV1beta1ScaleSpec.d.ts b/dist/gen/model/appsV1beta1ScaleSpec.d.ts
new file mode 100644
index 0000000000..3e201f1f27
--- /dev/null
+++ b/dist/gen/model/appsV1beta1ScaleSpec.d.ts
@@ -0,0 +1,31 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+/**
+* ScaleSpec describes the attributes of a scale subresource
+*/
+export declare class AppsV1beta1ScaleSpec {
+ /**
+ * desired number of instances for the scaled object.
+ */
+ 'replicas'?: number;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/appsV1beta1ScaleSpec.js b/dist/gen/model/appsV1beta1ScaleSpec.js
new file mode 100644
index 0000000000..df85616ca2
--- /dev/null
+++ b/dist/gen/model/appsV1beta1ScaleSpec.js
@@ -0,0 +1,31 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* ScaleSpec describes the attributes of a scale subresource
+*/
+class AppsV1beta1ScaleSpec {
+ static getAttributeTypeMap() {
+ return AppsV1beta1ScaleSpec.attributeTypeMap;
+ }
+}
+AppsV1beta1ScaleSpec.discriminator = undefined;
+AppsV1beta1ScaleSpec.attributeTypeMap = [
+ {
+ "name": "replicas",
+ "baseName": "replicas",
+ "type": "number"
+ }
+];
+exports.AppsV1beta1ScaleSpec = AppsV1beta1ScaleSpec;
+//# sourceMappingURL=appsV1beta1ScaleSpec.js.map
\ No newline at end of file
diff --git a/dist/gen/model/appsV1beta1ScaleSpec.js.map b/dist/gen/model/appsV1beta1ScaleSpec.js.map
new file mode 100644
index 0000000000..887a6e15ee
--- /dev/null
+++ b/dist/gen/model/appsV1beta1ScaleSpec.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"appsV1beta1ScaleSpec.js","sourceRoot":"","sources":["../../../src/gen/model/appsV1beta1ScaleSpec.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAGH;;EAEE;AACF,MAAa,oBAAoB;IAe7B,MAAM,CAAC,mBAAmB;QACtB,OAAO,oBAAoB,CAAC,gBAAgB,CAAC;IACjD,CAAC;;AAXM,kCAAa,GAAuB,SAAS,CAAC;AAE9C,qCAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,UAAU;QAClB,UAAU,EAAE,UAAU;QACtB,MAAM,EAAE,QAAQ;KACnB;CAAK,CAAC;AAbf,oDAkBC"}
\ No newline at end of file
diff --git a/dist/gen/model/appsV1beta1ScaleStatus.d.ts b/dist/gen/model/appsV1beta1ScaleStatus.d.ts
new file mode 100644
index 0000000000..d37c2041a2
--- /dev/null
+++ b/dist/gen/model/appsV1beta1ScaleStatus.d.ts
@@ -0,0 +1,41 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+/**
+* ScaleStatus represents the current status of a scale subresource.
+*/
+export declare class AppsV1beta1ScaleStatus {
+ /**
+ * actual number of observed instances of the scaled object.
+ */
+ 'replicas': number;
+ /**
+ * label query over pods that should match the replicas count. More info: http://kubernetes.io/docs/user-guide/labels#label-selectors
+ */
+ 'selector'?: {
+ [key: string]: string;
+ };
+ /**
+ * label selector for pods that should match the replicas count. This is a serializated version of both map-based and more expressive set-based selectors. This is done to avoid introspection in the clients. The string will be in the same format as the query-param syntax. If the target type only supports map-based selectors, both this field and map-based selector field are populated. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors
+ */
+ 'targetSelector'?: string;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/appsV1beta1ScaleStatus.js b/dist/gen/model/appsV1beta1ScaleStatus.js
new file mode 100644
index 0000000000..1b60803e00
--- /dev/null
+++ b/dist/gen/model/appsV1beta1ScaleStatus.js
@@ -0,0 +1,41 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* ScaleStatus represents the current status of a scale subresource.
+*/
+class AppsV1beta1ScaleStatus {
+ static getAttributeTypeMap() {
+ return AppsV1beta1ScaleStatus.attributeTypeMap;
+ }
+}
+AppsV1beta1ScaleStatus.discriminator = undefined;
+AppsV1beta1ScaleStatus.attributeTypeMap = [
+ {
+ "name": "replicas",
+ "baseName": "replicas",
+ "type": "number"
+ },
+ {
+ "name": "selector",
+ "baseName": "selector",
+ "type": "{ [key: string]: string; }"
+ },
+ {
+ "name": "targetSelector",
+ "baseName": "targetSelector",
+ "type": "string"
+ }
+];
+exports.AppsV1beta1ScaleStatus = AppsV1beta1ScaleStatus;
+//# sourceMappingURL=appsV1beta1ScaleStatus.js.map
\ No newline at end of file
diff --git a/dist/gen/model/appsV1beta1ScaleStatus.js.map b/dist/gen/model/appsV1beta1ScaleStatus.js.map
new file mode 100644
index 0000000000..a003f66d8b
--- /dev/null
+++ b/dist/gen/model/appsV1beta1ScaleStatus.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"appsV1beta1ScaleStatus.js","sourceRoot":"","sources":["../../../src/gen/model/appsV1beta1ScaleStatus.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAGH;;EAEE;AACF,MAAa,sBAAsB;IAiC/B,MAAM,CAAC,mBAAmB;QACtB,OAAO,sBAAsB,CAAC,gBAAgB,CAAC;IACnD,CAAC;;AArBM,oCAAa,GAAuB,SAAS,CAAC;AAE9C,uCAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,UAAU;QAClB,UAAU,EAAE,UAAU;QACtB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,UAAU;QAClB,UAAU,EAAE,UAAU;QACtB,MAAM,EAAE,4BAA4B;KACvC;IACD;QACI,MAAM,EAAE,gBAAgB;QACxB,UAAU,EAAE,gBAAgB;QAC5B,MAAM,EAAE,QAAQ;KACnB;CAAK,CAAC;AA/Bf,wDAoCC"}
\ No newline at end of file
diff --git a/dist/gen/model/extensionsV1beta1AllowedCSIDriver.d.ts b/dist/gen/model/extensionsV1beta1AllowedCSIDriver.d.ts
new file mode 100644
index 0000000000..9eeb3096d4
--- /dev/null
+++ b/dist/gen/model/extensionsV1beta1AllowedCSIDriver.d.ts
@@ -0,0 +1,31 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+/**
+* AllowedCSIDriver represents a single inline CSI Driver that is allowed to be used.
+*/
+export declare class ExtensionsV1beta1AllowedCSIDriver {
+ /**
+ * Name is the registered name of the CSI driver
+ */
+ 'name': string;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/extensionsV1beta1AllowedCSIDriver.js b/dist/gen/model/extensionsV1beta1AllowedCSIDriver.js
new file mode 100644
index 0000000000..0cc23a72e6
--- /dev/null
+++ b/dist/gen/model/extensionsV1beta1AllowedCSIDriver.js
@@ -0,0 +1,31 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* AllowedCSIDriver represents a single inline CSI Driver that is allowed to be used.
+*/
+class ExtensionsV1beta1AllowedCSIDriver {
+ static getAttributeTypeMap() {
+ return ExtensionsV1beta1AllowedCSIDriver.attributeTypeMap;
+ }
+}
+ExtensionsV1beta1AllowedCSIDriver.discriminator = undefined;
+ExtensionsV1beta1AllowedCSIDriver.attributeTypeMap = [
+ {
+ "name": "name",
+ "baseName": "name",
+ "type": "string"
+ }
+];
+exports.ExtensionsV1beta1AllowedCSIDriver = ExtensionsV1beta1AllowedCSIDriver;
+//# sourceMappingURL=extensionsV1beta1AllowedCSIDriver.js.map
\ No newline at end of file
diff --git a/dist/gen/model/extensionsV1beta1AllowedCSIDriver.js.map b/dist/gen/model/extensionsV1beta1AllowedCSIDriver.js.map
new file mode 100644
index 0000000000..9ee35efce7
--- /dev/null
+++ b/dist/gen/model/extensionsV1beta1AllowedCSIDriver.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"extensionsV1beta1AllowedCSIDriver.js","sourceRoot":"","sources":["../../../src/gen/model/extensionsV1beta1AllowedCSIDriver.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAGH;;EAEE;AACF,MAAa,iCAAiC;IAe1C,MAAM,CAAC,mBAAmB;QACtB,OAAO,iCAAiC,CAAC,gBAAgB,CAAC;IAC9D,CAAC;;AAXM,+CAAa,GAAuB,SAAS,CAAC;AAE9C,kDAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,QAAQ;KACnB;CAAK,CAAC;AAbf,8EAkBC"}
\ No newline at end of file
diff --git a/dist/gen/model/extensionsV1beta1AllowedFlexVolume.d.ts b/dist/gen/model/extensionsV1beta1AllowedFlexVolume.d.ts
new file mode 100644
index 0000000000..2b314b8fa9
--- /dev/null
+++ b/dist/gen/model/extensionsV1beta1AllowedFlexVolume.d.ts
@@ -0,0 +1,31 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+/**
+* AllowedFlexVolume represents a single Flexvolume that is allowed to be used. Deprecated: use AllowedFlexVolume from policy API Group instead.
+*/
+export declare class ExtensionsV1beta1AllowedFlexVolume {
+ /**
+ * driver is the name of the Flexvolume driver.
+ */
+ 'driver': string;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/extensionsV1beta1AllowedFlexVolume.js b/dist/gen/model/extensionsV1beta1AllowedFlexVolume.js
new file mode 100644
index 0000000000..d125faef9d
--- /dev/null
+++ b/dist/gen/model/extensionsV1beta1AllowedFlexVolume.js
@@ -0,0 +1,31 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* AllowedFlexVolume represents a single Flexvolume that is allowed to be used. Deprecated: use AllowedFlexVolume from policy API Group instead.
+*/
+class ExtensionsV1beta1AllowedFlexVolume {
+ static getAttributeTypeMap() {
+ return ExtensionsV1beta1AllowedFlexVolume.attributeTypeMap;
+ }
+}
+ExtensionsV1beta1AllowedFlexVolume.discriminator = undefined;
+ExtensionsV1beta1AllowedFlexVolume.attributeTypeMap = [
+ {
+ "name": "driver",
+ "baseName": "driver",
+ "type": "string"
+ }
+];
+exports.ExtensionsV1beta1AllowedFlexVolume = ExtensionsV1beta1AllowedFlexVolume;
+//# sourceMappingURL=extensionsV1beta1AllowedFlexVolume.js.map
\ No newline at end of file
diff --git a/dist/gen/model/extensionsV1beta1AllowedFlexVolume.js.map b/dist/gen/model/extensionsV1beta1AllowedFlexVolume.js.map
new file mode 100644
index 0000000000..1064823462
--- /dev/null
+++ b/dist/gen/model/extensionsV1beta1AllowedFlexVolume.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"extensionsV1beta1AllowedFlexVolume.js","sourceRoot":"","sources":["../../../src/gen/model/extensionsV1beta1AllowedFlexVolume.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAGH;;EAEE;AACF,MAAa,kCAAkC;IAe3C,MAAM,CAAC,mBAAmB;QACtB,OAAO,kCAAkC,CAAC,gBAAgB,CAAC;IAC/D,CAAC;;AAXM,gDAAa,GAAuB,SAAS,CAAC;AAE9C,mDAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,QAAQ;QAChB,UAAU,EAAE,QAAQ;QACpB,MAAM,EAAE,QAAQ;KACnB;CAAK,CAAC;AAbf,gFAkBC"}
\ No newline at end of file
diff --git a/dist/gen/model/extensionsV1beta1AllowedHostPath.d.ts b/dist/gen/model/extensionsV1beta1AllowedHostPath.d.ts
new file mode 100644
index 0000000000..41ffa4534c
--- /dev/null
+++ b/dist/gen/model/extensionsV1beta1AllowedHostPath.d.ts
@@ -0,0 +1,35 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+/**
+* AllowedHostPath defines the host volume conditions that will be enabled by a policy for pods to use. It requires the path prefix to be defined. Deprecated: use AllowedHostPath from policy API Group instead.
+*/
+export declare class ExtensionsV1beta1AllowedHostPath {
+ /**
+ * pathPrefix is the path prefix that the host volume must match. It does not support `*`. Trailing slashes are trimmed when validating the path prefix with a host path. Examples: `/foo` would allow `/foo`, `/foo/` and `/foo/bar` `/foo` would not allow `/food` or `/etc/foo`
+ */
+ 'pathPrefix'?: string;
+ /**
+ * when set to true, will allow host volumes matching the pathPrefix only if all volume mounts are readOnly.
+ */
+ 'readOnly'?: boolean;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/extensionsV1beta1AllowedHostPath.js b/dist/gen/model/extensionsV1beta1AllowedHostPath.js
new file mode 100644
index 0000000000..b71e6d5b24
--- /dev/null
+++ b/dist/gen/model/extensionsV1beta1AllowedHostPath.js
@@ -0,0 +1,36 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* AllowedHostPath defines the host volume conditions that will be enabled by a policy for pods to use. It requires the path prefix to be defined. Deprecated: use AllowedHostPath from policy API Group instead.
+*/
+class ExtensionsV1beta1AllowedHostPath {
+ static getAttributeTypeMap() {
+ return ExtensionsV1beta1AllowedHostPath.attributeTypeMap;
+ }
+}
+ExtensionsV1beta1AllowedHostPath.discriminator = undefined;
+ExtensionsV1beta1AllowedHostPath.attributeTypeMap = [
+ {
+ "name": "pathPrefix",
+ "baseName": "pathPrefix",
+ "type": "string"
+ },
+ {
+ "name": "readOnly",
+ "baseName": "readOnly",
+ "type": "boolean"
+ }
+];
+exports.ExtensionsV1beta1AllowedHostPath = ExtensionsV1beta1AllowedHostPath;
+//# sourceMappingURL=extensionsV1beta1AllowedHostPath.js.map
\ No newline at end of file
diff --git a/dist/gen/model/extensionsV1beta1AllowedHostPath.js.map b/dist/gen/model/extensionsV1beta1AllowedHostPath.js.map
new file mode 100644
index 0000000000..313e82fbc3
--- /dev/null
+++ b/dist/gen/model/extensionsV1beta1AllowedHostPath.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"extensionsV1beta1AllowedHostPath.js","sourceRoot":"","sources":["../../../src/gen/model/extensionsV1beta1AllowedHostPath.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAGH;;EAEE;AACF,MAAa,gCAAgC;IAwBzC,MAAM,CAAC,mBAAmB;QACtB,OAAO,gCAAgC,CAAC,gBAAgB,CAAC;IAC7D,CAAC;;AAhBM,8CAAa,GAAuB,SAAS,CAAC;AAE9C,iDAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,YAAY;QACpB,UAAU,EAAE,YAAY;QACxB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,UAAU;QAClB,UAAU,EAAE,UAAU;QACtB,MAAM,EAAE,SAAS;KACpB;CAAK,CAAC;AAtBf,4EA2BC"}
\ No newline at end of file
diff --git a/dist/gen/model/extensionsV1beta1Deployment.d.ts b/dist/gen/model/extensionsV1beta1Deployment.d.ts
new file mode 100644
index 0000000000..02f793bed8
--- /dev/null
+++ b/dist/gen/model/extensionsV1beta1Deployment.d.ts
@@ -0,0 +1,41 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+import { ExtensionsV1beta1DeploymentSpec } from './extensionsV1beta1DeploymentSpec';
+import { ExtensionsV1beta1DeploymentStatus } from './extensionsV1beta1DeploymentStatus';
+import { V1ObjectMeta } from './v1ObjectMeta';
+/**
+* DEPRECATED - This group version of Deployment is deprecated by apps/v1beta2/Deployment. See the release notes for more information. Deployment enables declarative updates for Pods and ReplicaSets.
+*/
+export declare class ExtensionsV1beta1Deployment {
+ /**
+ * APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources
+ */
+ 'apiVersion'?: string;
+ /**
+ * Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
+ */
+ 'kind'?: string;
+ 'metadata'?: V1ObjectMeta;
+ 'spec'?: ExtensionsV1beta1DeploymentSpec;
+ 'status'?: ExtensionsV1beta1DeploymentStatus;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/extensionsV1beta1Deployment.js b/dist/gen/model/extensionsV1beta1Deployment.js
new file mode 100644
index 0000000000..0245d9217d
--- /dev/null
+++ b/dist/gen/model/extensionsV1beta1Deployment.js
@@ -0,0 +1,51 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* DEPRECATED - This group version of Deployment is deprecated by apps/v1beta2/Deployment. See the release notes for more information. Deployment enables declarative updates for Pods and ReplicaSets.
+*/
+class ExtensionsV1beta1Deployment {
+ static getAttributeTypeMap() {
+ return ExtensionsV1beta1Deployment.attributeTypeMap;
+ }
+}
+ExtensionsV1beta1Deployment.discriminator = undefined;
+ExtensionsV1beta1Deployment.attributeTypeMap = [
+ {
+ "name": "apiVersion",
+ "baseName": "apiVersion",
+ "type": "string"
+ },
+ {
+ "name": "kind",
+ "baseName": "kind",
+ "type": "string"
+ },
+ {
+ "name": "metadata",
+ "baseName": "metadata",
+ "type": "V1ObjectMeta"
+ },
+ {
+ "name": "spec",
+ "baseName": "spec",
+ "type": "ExtensionsV1beta1DeploymentSpec"
+ },
+ {
+ "name": "status",
+ "baseName": "status",
+ "type": "ExtensionsV1beta1DeploymentStatus"
+ }
+];
+exports.ExtensionsV1beta1Deployment = ExtensionsV1beta1Deployment;
+//# sourceMappingURL=extensionsV1beta1Deployment.js.map
\ No newline at end of file
diff --git a/dist/gen/model/extensionsV1beta1Deployment.js.map b/dist/gen/model/extensionsV1beta1Deployment.js.map
new file mode 100644
index 0000000000..2d8cc5b023
--- /dev/null
+++ b/dist/gen/model/extensionsV1beta1Deployment.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"extensionsV1beta1Deployment.js","sourceRoot":"","sources":["../../../src/gen/model/extensionsV1beta1Deployment.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAMH;;EAEE;AACF,MAAa,2BAA2B;IA0CpC,MAAM,CAAC,mBAAmB;QACtB,OAAO,2BAA2B,CAAC,gBAAgB,CAAC;IACxD,CAAC;;AA/BM,yCAAa,GAAuB,SAAS,CAAC;AAE9C,4CAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,YAAY;QACpB,UAAU,EAAE,YAAY;QACxB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,UAAU;QAClB,UAAU,EAAE,UAAU;QACtB,MAAM,EAAE,cAAc;KACzB;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,iCAAiC;KAC5C;IACD;QACI,MAAM,EAAE,QAAQ;QAChB,UAAU,EAAE,QAAQ;QACpB,MAAM,EAAE,mCAAmC;KAC9C;CAAK,CAAC;AAxCf,kEA6CC"}
\ No newline at end of file
diff --git a/dist/gen/model/extensionsV1beta1DeploymentCondition.d.ts b/dist/gen/model/extensionsV1beta1DeploymentCondition.d.ts
new file mode 100644
index 0000000000..5f2b44a63a
--- /dev/null
+++ b/dist/gen/model/extensionsV1beta1DeploymentCondition.d.ts
@@ -0,0 +1,51 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+/**
+* DeploymentCondition describes the state of a deployment at a certain point.
+*/
+export declare class ExtensionsV1beta1DeploymentCondition {
+ /**
+ * Last time the condition transitioned from one status to another.
+ */
+ 'lastTransitionTime'?: Date;
+ /**
+ * The last time this condition was updated.
+ */
+ 'lastUpdateTime'?: Date;
+ /**
+ * A human readable message indicating details about the transition.
+ */
+ 'message'?: string;
+ /**
+ * The reason for the condition\'s last transition.
+ */
+ 'reason'?: string;
+ /**
+ * Status of the condition, one of True, False, Unknown.
+ */
+ 'status': string;
+ /**
+ * Type of deployment condition.
+ */
+ 'type': string;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/extensionsV1beta1DeploymentCondition.js b/dist/gen/model/extensionsV1beta1DeploymentCondition.js
new file mode 100644
index 0000000000..7dad2798bb
--- /dev/null
+++ b/dist/gen/model/extensionsV1beta1DeploymentCondition.js
@@ -0,0 +1,56 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* DeploymentCondition describes the state of a deployment at a certain point.
+*/
+class ExtensionsV1beta1DeploymentCondition {
+ static getAttributeTypeMap() {
+ return ExtensionsV1beta1DeploymentCondition.attributeTypeMap;
+ }
+}
+ExtensionsV1beta1DeploymentCondition.discriminator = undefined;
+ExtensionsV1beta1DeploymentCondition.attributeTypeMap = [
+ {
+ "name": "lastTransitionTime",
+ "baseName": "lastTransitionTime",
+ "type": "Date"
+ },
+ {
+ "name": "lastUpdateTime",
+ "baseName": "lastUpdateTime",
+ "type": "Date"
+ },
+ {
+ "name": "message",
+ "baseName": "message",
+ "type": "string"
+ },
+ {
+ "name": "reason",
+ "baseName": "reason",
+ "type": "string"
+ },
+ {
+ "name": "status",
+ "baseName": "status",
+ "type": "string"
+ },
+ {
+ "name": "type",
+ "baseName": "type",
+ "type": "string"
+ }
+];
+exports.ExtensionsV1beta1DeploymentCondition = ExtensionsV1beta1DeploymentCondition;
+//# sourceMappingURL=extensionsV1beta1DeploymentCondition.js.map
\ No newline at end of file
diff --git a/dist/gen/model/extensionsV1beta1DeploymentCondition.js.map b/dist/gen/model/extensionsV1beta1DeploymentCondition.js.map
new file mode 100644
index 0000000000..6e923fb35a
--- /dev/null
+++ b/dist/gen/model/extensionsV1beta1DeploymentCondition.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"extensionsV1beta1DeploymentCondition.js","sourceRoot":"","sources":["../../../src/gen/model/extensionsV1beta1DeploymentCondition.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAGH;;EAEE;AACF,MAAa,oCAAoC;IA4D7C,MAAM,CAAC,mBAAmB;QACtB,OAAO,oCAAoC,CAAC,gBAAgB,CAAC;IACjE,CAAC;;AApCM,kDAAa,GAAuB,SAAS,CAAC;AAE9C,qDAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,oBAAoB;QAC5B,UAAU,EAAE,oBAAoB;QAChC,MAAM,EAAE,MAAM;KACjB;IACD;QACI,MAAM,EAAE,gBAAgB;QACxB,UAAU,EAAE,gBAAgB;QAC5B,MAAM,EAAE,MAAM;KACjB;IACD;QACI,MAAM,EAAE,SAAS;QACjB,UAAU,EAAE,SAAS;QACrB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,QAAQ;QAChB,UAAU,EAAE,QAAQ;QACpB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,QAAQ;QAChB,UAAU,EAAE,QAAQ;QACpB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,QAAQ;KACnB;CAAK,CAAC;AA1Df,oFA+DC"}
\ No newline at end of file
diff --git a/dist/gen/model/extensionsV1beta1DeploymentList.d.ts b/dist/gen/model/extensionsV1beta1DeploymentList.d.ts
new file mode 100644
index 0000000000..64fb2a62b1
--- /dev/null
+++ b/dist/gen/model/extensionsV1beta1DeploymentList.d.ts
@@ -0,0 +1,42 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+import { ExtensionsV1beta1Deployment } from './extensionsV1beta1Deployment';
+import { V1ListMeta } from './v1ListMeta';
+/**
+* DeploymentList is a list of Deployments.
+*/
+export declare class ExtensionsV1beta1DeploymentList {
+ /**
+ * APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources
+ */
+ 'apiVersion'?: string;
+ /**
+ * Items is the list of Deployments.
+ */
+ 'items': Array;
+ /**
+ * Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
+ */
+ 'kind'?: string;
+ 'metadata'?: V1ListMeta;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/extensionsV1beta1DeploymentList.js b/dist/gen/model/extensionsV1beta1DeploymentList.js
new file mode 100644
index 0000000000..02bb309d0a
--- /dev/null
+++ b/dist/gen/model/extensionsV1beta1DeploymentList.js
@@ -0,0 +1,46 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* DeploymentList is a list of Deployments.
+*/
+class ExtensionsV1beta1DeploymentList {
+ static getAttributeTypeMap() {
+ return ExtensionsV1beta1DeploymentList.attributeTypeMap;
+ }
+}
+ExtensionsV1beta1DeploymentList.discriminator = undefined;
+ExtensionsV1beta1DeploymentList.attributeTypeMap = [
+ {
+ "name": "apiVersion",
+ "baseName": "apiVersion",
+ "type": "string"
+ },
+ {
+ "name": "items",
+ "baseName": "items",
+ "type": "Array"
+ },
+ {
+ "name": "kind",
+ "baseName": "kind",
+ "type": "string"
+ },
+ {
+ "name": "metadata",
+ "baseName": "metadata",
+ "type": "V1ListMeta"
+ }
+];
+exports.ExtensionsV1beta1DeploymentList = ExtensionsV1beta1DeploymentList;
+//# sourceMappingURL=extensionsV1beta1DeploymentList.js.map
\ No newline at end of file
diff --git a/dist/gen/model/extensionsV1beta1DeploymentList.js.map b/dist/gen/model/extensionsV1beta1DeploymentList.js.map
new file mode 100644
index 0000000000..df5f75450c
--- /dev/null
+++ b/dist/gen/model/extensionsV1beta1DeploymentList.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"extensionsV1beta1DeploymentList.js","sourceRoot":"","sources":["../../../src/gen/model/extensionsV1beta1DeploymentList.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAKH;;EAEE;AACF,MAAa,+BAA+B;IAuCxC,MAAM,CAAC,mBAAmB;QACtB,OAAO,+BAA+B,CAAC,gBAAgB,CAAC;IAC5D,CAAC;;AA1BM,6CAAa,GAAuB,SAAS,CAAC;AAE9C,gDAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,YAAY;QACpB,UAAU,EAAE,YAAY;QACxB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,OAAO;QACf,UAAU,EAAE,OAAO;QACnB,MAAM,EAAE,oCAAoC;KAC/C;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,UAAU;QAClB,UAAU,EAAE,UAAU;QACtB,MAAM,EAAE,YAAY;KACvB;CAAK,CAAC;AArCf,0EA0CC"}
\ No newline at end of file
diff --git a/dist/gen/model/extensionsV1beta1DeploymentRollback.d.ts b/dist/gen/model/extensionsV1beta1DeploymentRollback.d.ts
new file mode 100644
index 0000000000..21345c27cb
--- /dev/null
+++ b/dist/gen/model/extensionsV1beta1DeploymentRollback.d.ts
@@ -0,0 +1,47 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+import { ExtensionsV1beta1RollbackConfig } from './extensionsV1beta1RollbackConfig';
+/**
+* DEPRECATED. DeploymentRollback stores the information required to rollback a deployment.
+*/
+export declare class ExtensionsV1beta1DeploymentRollback {
+ /**
+ * APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources
+ */
+ 'apiVersion'?: string;
+ /**
+ * Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
+ */
+ 'kind'?: string;
+ /**
+ * Required: This must match the Name of a deployment.
+ */
+ 'name': string;
+ 'rollbackTo': ExtensionsV1beta1RollbackConfig;
+ /**
+ * The annotations to be updated to a deployment
+ */
+ 'updatedAnnotations'?: {
+ [key: string]: string;
+ };
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/extensionsV1beta1DeploymentRollback.js b/dist/gen/model/extensionsV1beta1DeploymentRollback.js
new file mode 100644
index 0000000000..77aec7e233
--- /dev/null
+++ b/dist/gen/model/extensionsV1beta1DeploymentRollback.js
@@ -0,0 +1,51 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* DEPRECATED. DeploymentRollback stores the information required to rollback a deployment.
+*/
+class ExtensionsV1beta1DeploymentRollback {
+ static getAttributeTypeMap() {
+ return ExtensionsV1beta1DeploymentRollback.attributeTypeMap;
+ }
+}
+ExtensionsV1beta1DeploymentRollback.discriminator = undefined;
+ExtensionsV1beta1DeploymentRollback.attributeTypeMap = [
+ {
+ "name": "apiVersion",
+ "baseName": "apiVersion",
+ "type": "string"
+ },
+ {
+ "name": "kind",
+ "baseName": "kind",
+ "type": "string"
+ },
+ {
+ "name": "name",
+ "baseName": "name",
+ "type": "string"
+ },
+ {
+ "name": "rollbackTo",
+ "baseName": "rollbackTo",
+ "type": "ExtensionsV1beta1RollbackConfig"
+ },
+ {
+ "name": "updatedAnnotations",
+ "baseName": "updatedAnnotations",
+ "type": "{ [key: string]: string; }"
+ }
+];
+exports.ExtensionsV1beta1DeploymentRollback = ExtensionsV1beta1DeploymentRollback;
+//# sourceMappingURL=extensionsV1beta1DeploymentRollback.js.map
\ No newline at end of file
diff --git a/dist/gen/model/extensionsV1beta1DeploymentRollback.js.map b/dist/gen/model/extensionsV1beta1DeploymentRollback.js.map
new file mode 100644
index 0000000000..478eb60c09
--- /dev/null
+++ b/dist/gen/model/extensionsV1beta1DeploymentRollback.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"extensionsV1beta1DeploymentRollback.js","sourceRoot":"","sources":["../../../src/gen/model/extensionsV1beta1DeploymentRollback.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAIH;;EAEE;AACF,MAAa,mCAAmC;IAgD5C,MAAM,CAAC,mBAAmB;QACtB,OAAO,mCAAmC,CAAC,gBAAgB,CAAC;IAChE,CAAC;;AA/BM,iDAAa,GAAuB,SAAS,CAAC;AAE9C,oDAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,YAAY;QACpB,UAAU,EAAE,YAAY;QACxB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,YAAY;QACpB,UAAU,EAAE,YAAY;QACxB,MAAM,EAAE,iCAAiC;KAC5C;IACD;QACI,MAAM,EAAE,oBAAoB;QAC5B,UAAU,EAAE,oBAAoB;QAChC,MAAM,EAAE,4BAA4B;KACvC;CAAK,CAAC;AA9Cf,kFAmDC"}
\ No newline at end of file
diff --git a/dist/gen/model/extensionsV1beta1DeploymentSpec.d.ts b/dist/gen/model/extensionsV1beta1DeploymentSpec.d.ts
new file mode 100644
index 0000000000..b7ec9582da
--- /dev/null
+++ b/dist/gen/model/extensionsV1beta1DeploymentSpec.d.ts
@@ -0,0 +1,55 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+import { ExtensionsV1beta1DeploymentStrategy } from './extensionsV1beta1DeploymentStrategy';
+import { ExtensionsV1beta1RollbackConfig } from './extensionsV1beta1RollbackConfig';
+import { V1LabelSelector } from './v1LabelSelector';
+import { V1PodTemplateSpec } from './v1PodTemplateSpec';
+/**
+* DeploymentSpec is the specification of the desired behavior of the Deployment.
+*/
+export declare class ExtensionsV1beta1DeploymentSpec {
+ /**
+ * Minimum number of seconds for which a newly created pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready)
+ */
+ 'minReadySeconds'?: number;
+ /**
+ * Indicates that the deployment is paused and will not be processed by the deployment controller.
+ */
+ 'paused'?: boolean;
+ /**
+ * The maximum time in seconds for a deployment to make progress before it is considered to be failed. The deployment controller will continue to process failed deployments and a condition with a ProgressDeadlineExceeded reason will be surfaced in the deployment status. Note that progress will not be estimated during the time a deployment is paused. This is set to the max value of int32 (i.e. 2147483647) by default, which means \"no deadline\".
+ */
+ 'progressDeadlineSeconds'?: number;
+ /**
+ * Number of desired pods. This is a pointer to distinguish between explicit zero and not specified. Defaults to 1.
+ */
+ 'replicas'?: number;
+ /**
+ * The number of old ReplicaSets to retain to allow rollback. This is a pointer to distinguish between explicit zero and not specified. This is set to the max value of int32 (i.e. 2147483647) by default, which means \"retaining all old RelicaSets\".
+ */
+ 'revisionHistoryLimit'?: number;
+ 'rollbackTo'?: ExtensionsV1beta1RollbackConfig;
+ 'selector'?: V1LabelSelector;
+ 'strategy'?: ExtensionsV1beta1DeploymentStrategy;
+ 'template': V1PodTemplateSpec;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/extensionsV1beta1DeploymentSpec.js b/dist/gen/model/extensionsV1beta1DeploymentSpec.js
new file mode 100644
index 0000000000..5f227405c3
--- /dev/null
+++ b/dist/gen/model/extensionsV1beta1DeploymentSpec.js
@@ -0,0 +1,71 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* DeploymentSpec is the specification of the desired behavior of the Deployment.
+*/
+class ExtensionsV1beta1DeploymentSpec {
+ static getAttributeTypeMap() {
+ return ExtensionsV1beta1DeploymentSpec.attributeTypeMap;
+ }
+}
+ExtensionsV1beta1DeploymentSpec.discriminator = undefined;
+ExtensionsV1beta1DeploymentSpec.attributeTypeMap = [
+ {
+ "name": "minReadySeconds",
+ "baseName": "minReadySeconds",
+ "type": "number"
+ },
+ {
+ "name": "paused",
+ "baseName": "paused",
+ "type": "boolean"
+ },
+ {
+ "name": "progressDeadlineSeconds",
+ "baseName": "progressDeadlineSeconds",
+ "type": "number"
+ },
+ {
+ "name": "replicas",
+ "baseName": "replicas",
+ "type": "number"
+ },
+ {
+ "name": "revisionHistoryLimit",
+ "baseName": "revisionHistoryLimit",
+ "type": "number"
+ },
+ {
+ "name": "rollbackTo",
+ "baseName": "rollbackTo",
+ "type": "ExtensionsV1beta1RollbackConfig"
+ },
+ {
+ "name": "selector",
+ "baseName": "selector",
+ "type": "V1LabelSelector"
+ },
+ {
+ "name": "strategy",
+ "baseName": "strategy",
+ "type": "ExtensionsV1beta1DeploymentStrategy"
+ },
+ {
+ "name": "template",
+ "baseName": "template",
+ "type": "V1PodTemplateSpec"
+ }
+];
+exports.ExtensionsV1beta1DeploymentSpec = ExtensionsV1beta1DeploymentSpec;
+//# sourceMappingURL=extensionsV1beta1DeploymentSpec.js.map
\ No newline at end of file
diff --git a/dist/gen/model/extensionsV1beta1DeploymentSpec.js.map b/dist/gen/model/extensionsV1beta1DeploymentSpec.js.map
new file mode 100644
index 0000000000..131ca318e9
--- /dev/null
+++ b/dist/gen/model/extensionsV1beta1DeploymentSpec.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"extensionsV1beta1DeploymentSpec.js","sourceRoot":"","sources":["../../../src/gen/model/extensionsV1beta1DeploymentSpec.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAOH;;EAEE;AACF,MAAa,+BAA+B;IA2ExC,MAAM,CAAC,mBAAmB;QACtB,OAAO,+BAA+B,CAAC,gBAAgB,CAAC;IAC5D,CAAC;;AAnDM,6CAAa,GAAuB,SAAS,CAAC;AAE9C,gDAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,iBAAiB;QACzB,UAAU,EAAE,iBAAiB;QAC7B,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,QAAQ;QAChB,UAAU,EAAE,QAAQ;QACpB,MAAM,EAAE,SAAS;KACpB;IACD;QACI,MAAM,EAAE,yBAAyB;QACjC,UAAU,EAAE,yBAAyB;QACrC,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,UAAU;QAClB,UAAU,EAAE,UAAU;QACtB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,sBAAsB;QAC9B,UAAU,EAAE,sBAAsB;QAClC,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,YAAY;QACpB,UAAU,EAAE,YAAY;QACxB,MAAM,EAAE,iCAAiC;KAC5C;IACD;QACI,MAAM,EAAE,UAAU;QAClB,UAAU,EAAE,UAAU;QACtB,MAAM,EAAE,iBAAiB;KAC5B;IACD;QACI,MAAM,EAAE,UAAU;QAClB,UAAU,EAAE,UAAU;QACtB,MAAM,EAAE,qCAAqC;KAChD;IACD;QACI,MAAM,EAAE,UAAU;QAClB,UAAU,EAAE,UAAU;QACtB,MAAM,EAAE,mBAAmB;KAC9B;CAAK,CAAC;AAzEf,0EA8EC"}
\ No newline at end of file
diff --git a/dist/gen/model/extensionsV1beta1DeploymentStatus.d.ts b/dist/gen/model/extensionsV1beta1DeploymentStatus.d.ts
new file mode 100644
index 0000000000..de1e91ee35
--- /dev/null
+++ b/dist/gen/model/extensionsV1beta1DeploymentStatus.d.ts
@@ -0,0 +1,60 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+import { ExtensionsV1beta1DeploymentCondition } from './extensionsV1beta1DeploymentCondition';
+/**
+* DeploymentStatus is the most recently observed status of the Deployment.
+*/
+export declare class ExtensionsV1beta1DeploymentStatus {
+ /**
+ * Total number of available pods (ready for at least minReadySeconds) targeted by this deployment.
+ */
+ 'availableReplicas'?: number;
+ /**
+ * Count of hash collisions for the Deployment. The Deployment controller uses this field as a collision avoidance mechanism when it needs to create the name for the newest ReplicaSet.
+ */
+ 'collisionCount'?: number;
+ /**
+ * Represents the latest available observations of a deployment\'s current state.
+ */
+ 'conditions'?: Array;
+ /**
+ * The generation observed by the deployment controller.
+ */
+ 'observedGeneration'?: number;
+ /**
+ * Total number of ready pods targeted by this deployment.
+ */
+ 'readyReplicas'?: number;
+ /**
+ * Total number of non-terminated pods targeted by this deployment (their labels match the selector).
+ */
+ 'replicas'?: number;
+ /**
+ * Total number of unavailable pods targeted by this deployment. This is the total number of pods that are still required for the deployment to have 100% available capacity. They may either be pods that are running but not yet available or pods that still have not been created.
+ */
+ 'unavailableReplicas'?: number;
+ /**
+ * Total number of non-terminated pods targeted by this deployment that have the desired template spec.
+ */
+ 'updatedReplicas'?: number;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/extensionsV1beta1DeploymentStatus.js b/dist/gen/model/extensionsV1beta1DeploymentStatus.js
new file mode 100644
index 0000000000..75fd4ed5a7
--- /dev/null
+++ b/dist/gen/model/extensionsV1beta1DeploymentStatus.js
@@ -0,0 +1,66 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* DeploymentStatus is the most recently observed status of the Deployment.
+*/
+class ExtensionsV1beta1DeploymentStatus {
+ static getAttributeTypeMap() {
+ return ExtensionsV1beta1DeploymentStatus.attributeTypeMap;
+ }
+}
+ExtensionsV1beta1DeploymentStatus.discriminator = undefined;
+ExtensionsV1beta1DeploymentStatus.attributeTypeMap = [
+ {
+ "name": "availableReplicas",
+ "baseName": "availableReplicas",
+ "type": "number"
+ },
+ {
+ "name": "collisionCount",
+ "baseName": "collisionCount",
+ "type": "number"
+ },
+ {
+ "name": "conditions",
+ "baseName": "conditions",
+ "type": "Array"
+ },
+ {
+ "name": "observedGeneration",
+ "baseName": "observedGeneration",
+ "type": "number"
+ },
+ {
+ "name": "readyReplicas",
+ "baseName": "readyReplicas",
+ "type": "number"
+ },
+ {
+ "name": "replicas",
+ "baseName": "replicas",
+ "type": "number"
+ },
+ {
+ "name": "unavailableReplicas",
+ "baseName": "unavailableReplicas",
+ "type": "number"
+ },
+ {
+ "name": "updatedReplicas",
+ "baseName": "updatedReplicas",
+ "type": "number"
+ }
+];
+exports.ExtensionsV1beta1DeploymentStatus = ExtensionsV1beta1DeploymentStatus;
+//# sourceMappingURL=extensionsV1beta1DeploymentStatus.js.map
\ No newline at end of file
diff --git a/dist/gen/model/extensionsV1beta1DeploymentStatus.js.map b/dist/gen/model/extensionsV1beta1DeploymentStatus.js.map
new file mode 100644
index 0000000000..2086fdc64b
--- /dev/null
+++ b/dist/gen/model/extensionsV1beta1DeploymentStatus.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"extensionsV1beta1DeploymentStatus.js","sourceRoot":"","sources":["../../../src/gen/model/extensionsV1beta1DeploymentStatus.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAIH;;EAEE;AACF,MAAa,iCAAiC;IA8E1C,MAAM,CAAC,mBAAmB;QACtB,OAAO,iCAAiC,CAAC,gBAAgB,CAAC;IAC9D,CAAC;;AA9CM,+CAAa,GAAuB,SAAS,CAAC;AAE9C,kDAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,mBAAmB;QAC3B,UAAU,EAAE,mBAAmB;QAC/B,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,gBAAgB;QACxB,UAAU,EAAE,gBAAgB;QAC5B,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,YAAY;QACpB,UAAU,EAAE,YAAY;QACxB,MAAM,EAAE,6CAA6C;KACxD;IACD;QACI,MAAM,EAAE,oBAAoB;QAC5B,UAAU,EAAE,oBAAoB;QAChC,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,eAAe;QACvB,UAAU,EAAE,eAAe;QAC3B,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,UAAU;QAClB,UAAU,EAAE,UAAU;QACtB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,qBAAqB;QAC7B,UAAU,EAAE,qBAAqB;QACjC,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,iBAAiB;QACzB,UAAU,EAAE,iBAAiB;QAC7B,MAAM,EAAE,QAAQ;KACnB;CAAK,CAAC;AA5Ef,8EAiFC"}
\ No newline at end of file
diff --git a/dist/gen/model/extensionsV1beta1DeploymentStrategy.d.ts b/dist/gen/model/extensionsV1beta1DeploymentStrategy.d.ts
new file mode 100644
index 0000000000..5d7b08b98d
--- /dev/null
+++ b/dist/gen/model/extensionsV1beta1DeploymentStrategy.d.ts
@@ -0,0 +1,33 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+import { ExtensionsV1beta1RollingUpdateDeployment } from './extensionsV1beta1RollingUpdateDeployment';
+/**
+* DeploymentStrategy describes how to replace existing pods with new ones.
+*/
+export declare class ExtensionsV1beta1DeploymentStrategy {
+ 'rollingUpdate'?: ExtensionsV1beta1RollingUpdateDeployment;
+ /**
+ * Type of deployment. Can be \"Recreate\" or \"RollingUpdate\". Default is RollingUpdate.
+ */
+ 'type'?: string;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/extensionsV1beta1DeploymentStrategy.js b/dist/gen/model/extensionsV1beta1DeploymentStrategy.js
new file mode 100644
index 0000000000..54602f99e6
--- /dev/null
+++ b/dist/gen/model/extensionsV1beta1DeploymentStrategy.js
@@ -0,0 +1,36 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* DeploymentStrategy describes how to replace existing pods with new ones.
+*/
+class ExtensionsV1beta1DeploymentStrategy {
+ static getAttributeTypeMap() {
+ return ExtensionsV1beta1DeploymentStrategy.attributeTypeMap;
+ }
+}
+ExtensionsV1beta1DeploymentStrategy.discriminator = undefined;
+ExtensionsV1beta1DeploymentStrategy.attributeTypeMap = [
+ {
+ "name": "rollingUpdate",
+ "baseName": "rollingUpdate",
+ "type": "ExtensionsV1beta1RollingUpdateDeployment"
+ },
+ {
+ "name": "type",
+ "baseName": "type",
+ "type": "string"
+ }
+];
+exports.ExtensionsV1beta1DeploymentStrategy = ExtensionsV1beta1DeploymentStrategy;
+//# sourceMappingURL=extensionsV1beta1DeploymentStrategy.js.map
\ No newline at end of file
diff --git a/dist/gen/model/extensionsV1beta1DeploymentStrategy.js.map b/dist/gen/model/extensionsV1beta1DeploymentStrategy.js.map
new file mode 100644
index 0000000000..1c3e1877eb
--- /dev/null
+++ b/dist/gen/model/extensionsV1beta1DeploymentStrategy.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"extensionsV1beta1DeploymentStrategy.js","sourceRoot":"","sources":["../../../src/gen/model/extensionsV1beta1DeploymentStrategy.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAIH;;EAEE;AACF,MAAa,mCAAmC;IAqB5C,MAAM,CAAC,mBAAmB;QACtB,OAAO,mCAAmC,CAAC,gBAAgB,CAAC;IAChE,CAAC;;AAhBM,iDAAa,GAAuB,SAAS,CAAC;AAE9C,oDAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,eAAe;QACvB,UAAU,EAAE,eAAe;QAC3B,MAAM,EAAE,0CAA0C;KACrD;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,QAAQ;KACnB;CAAK,CAAC;AAnBf,kFAwBC"}
\ No newline at end of file
diff --git a/dist/gen/model/extensionsV1beta1FSGroupStrategyOptions.d.ts b/dist/gen/model/extensionsV1beta1FSGroupStrategyOptions.d.ts
new file mode 100644
index 0000000000..d53cef11d4
--- /dev/null
+++ b/dist/gen/model/extensionsV1beta1FSGroupStrategyOptions.d.ts
@@ -0,0 +1,36 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+import { ExtensionsV1beta1IDRange } from './extensionsV1beta1IDRange';
+/**
+* FSGroupStrategyOptions defines the strategy type and options used to create the strategy. Deprecated: use FSGroupStrategyOptions from policy API Group instead.
+*/
+export declare class ExtensionsV1beta1FSGroupStrategyOptions {
+ /**
+ * ranges are the allowed ranges of fs groups. If you would like to force a single fs group then supply a single range with the same start and end. Required for MustRunAs.
+ */
+ 'ranges'?: Array;
+ /**
+ * rule is the strategy that will dictate what FSGroup is used in the SecurityContext.
+ */
+ 'rule'?: string;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/extensionsV1beta1FSGroupStrategyOptions.js b/dist/gen/model/extensionsV1beta1FSGroupStrategyOptions.js
new file mode 100644
index 0000000000..818a8e2842
--- /dev/null
+++ b/dist/gen/model/extensionsV1beta1FSGroupStrategyOptions.js
@@ -0,0 +1,36 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* FSGroupStrategyOptions defines the strategy type and options used to create the strategy. Deprecated: use FSGroupStrategyOptions from policy API Group instead.
+*/
+class ExtensionsV1beta1FSGroupStrategyOptions {
+ static getAttributeTypeMap() {
+ return ExtensionsV1beta1FSGroupStrategyOptions.attributeTypeMap;
+ }
+}
+ExtensionsV1beta1FSGroupStrategyOptions.discriminator = undefined;
+ExtensionsV1beta1FSGroupStrategyOptions.attributeTypeMap = [
+ {
+ "name": "ranges",
+ "baseName": "ranges",
+ "type": "Array"
+ },
+ {
+ "name": "rule",
+ "baseName": "rule",
+ "type": "string"
+ }
+];
+exports.ExtensionsV1beta1FSGroupStrategyOptions = ExtensionsV1beta1FSGroupStrategyOptions;
+//# sourceMappingURL=extensionsV1beta1FSGroupStrategyOptions.js.map
\ No newline at end of file
diff --git a/dist/gen/model/extensionsV1beta1FSGroupStrategyOptions.js.map b/dist/gen/model/extensionsV1beta1FSGroupStrategyOptions.js.map
new file mode 100644
index 0000000000..b0f6f00e03
--- /dev/null
+++ b/dist/gen/model/extensionsV1beta1FSGroupStrategyOptions.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"extensionsV1beta1FSGroupStrategyOptions.js","sourceRoot":"","sources":["../../../src/gen/model/extensionsV1beta1FSGroupStrategyOptions.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAIH;;EAEE;AACF,MAAa,uCAAuC;IAwBhD,MAAM,CAAC,mBAAmB;QACtB,OAAO,uCAAuC,CAAC,gBAAgB,CAAC;IACpE,CAAC;;AAhBM,qDAAa,GAAuB,SAAS,CAAC;AAE9C,wDAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,QAAQ;QAChB,UAAU,EAAE,QAAQ;QACpB,MAAM,EAAE,iCAAiC;KAC5C;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,QAAQ;KACnB;CAAK,CAAC;AAtBf,0FA2BC"}
\ No newline at end of file
diff --git a/dist/gen/model/extensionsV1beta1HTTPIngressPath.d.ts b/dist/gen/model/extensionsV1beta1HTTPIngressPath.d.ts
new file mode 100644
index 0000000000..2d6958defb
--- /dev/null
+++ b/dist/gen/model/extensionsV1beta1HTTPIngressPath.d.ts
@@ -0,0 +1,33 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+import { ExtensionsV1beta1IngressBackend } from './extensionsV1beta1IngressBackend';
+/**
+* HTTPIngressPath associates a path regex with a backend. Incoming urls matching the path are forwarded to the backend.
+*/
+export declare class ExtensionsV1beta1HTTPIngressPath {
+ 'backend': ExtensionsV1beta1IngressBackend;
+ /**
+ * Path is an extended POSIX regex as defined by IEEE Std 1003.1, (i.e this follows the egrep/unix syntax, not the perl syntax) matched against the path of an incoming request. Currently it can contain characters disallowed from the conventional \"path\" part of a URL as defined by RFC 3986. Paths must begin with a \'/\'. If unspecified, the path defaults to a catch all sending traffic to the backend.
+ */
+ 'path'?: string;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/extensionsV1beta1HTTPIngressPath.js b/dist/gen/model/extensionsV1beta1HTTPIngressPath.js
new file mode 100644
index 0000000000..5587ecf729
--- /dev/null
+++ b/dist/gen/model/extensionsV1beta1HTTPIngressPath.js
@@ -0,0 +1,36 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* HTTPIngressPath associates a path regex with a backend. Incoming urls matching the path are forwarded to the backend.
+*/
+class ExtensionsV1beta1HTTPIngressPath {
+ static getAttributeTypeMap() {
+ return ExtensionsV1beta1HTTPIngressPath.attributeTypeMap;
+ }
+}
+ExtensionsV1beta1HTTPIngressPath.discriminator = undefined;
+ExtensionsV1beta1HTTPIngressPath.attributeTypeMap = [
+ {
+ "name": "backend",
+ "baseName": "backend",
+ "type": "ExtensionsV1beta1IngressBackend"
+ },
+ {
+ "name": "path",
+ "baseName": "path",
+ "type": "string"
+ }
+];
+exports.ExtensionsV1beta1HTTPIngressPath = ExtensionsV1beta1HTTPIngressPath;
+//# sourceMappingURL=extensionsV1beta1HTTPIngressPath.js.map
\ No newline at end of file
diff --git a/dist/gen/model/extensionsV1beta1HTTPIngressPath.js.map b/dist/gen/model/extensionsV1beta1HTTPIngressPath.js.map
new file mode 100644
index 0000000000..2f4430cf3c
--- /dev/null
+++ b/dist/gen/model/extensionsV1beta1HTTPIngressPath.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"extensionsV1beta1HTTPIngressPath.js","sourceRoot":"","sources":["../../../src/gen/model/extensionsV1beta1HTTPIngressPath.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAIH;;EAEE;AACF,MAAa,gCAAgC;IAqBzC,MAAM,CAAC,mBAAmB;QACtB,OAAO,gCAAgC,CAAC,gBAAgB,CAAC;IAC7D,CAAC;;AAhBM,8CAAa,GAAuB,SAAS,CAAC;AAE9C,iDAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,SAAS;QACjB,UAAU,EAAE,SAAS;QACrB,MAAM,EAAE,iCAAiC;KAC5C;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,QAAQ;KACnB;CAAK,CAAC;AAnBf,4EAwBC"}
\ No newline at end of file
diff --git a/dist/gen/model/extensionsV1beta1HTTPIngressRuleValue.d.ts b/dist/gen/model/extensionsV1beta1HTTPIngressRuleValue.d.ts
new file mode 100644
index 0000000000..2b3e82b69d
--- /dev/null
+++ b/dist/gen/model/extensionsV1beta1HTTPIngressRuleValue.d.ts
@@ -0,0 +1,32 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+import { ExtensionsV1beta1HTTPIngressPath } from './extensionsV1beta1HTTPIngressPath';
+/**
+* HTTPIngressRuleValue is a list of http selectors pointing to backends. In the example: http:///? -> backend where where parts of the url correspond to RFC 3986, this resource will be used to match against everything after the last \'/\' and before the first \'?\' or \'#\'.
+*/
+export declare class ExtensionsV1beta1HTTPIngressRuleValue {
+ /**
+ * A collection of paths that map requests to backends.
+ */
+ 'paths': Array;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/extensionsV1beta1HTTPIngressRuleValue.js b/dist/gen/model/extensionsV1beta1HTTPIngressRuleValue.js
new file mode 100644
index 0000000000..e5783af9a4
--- /dev/null
+++ b/dist/gen/model/extensionsV1beta1HTTPIngressRuleValue.js
@@ -0,0 +1,31 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* HTTPIngressRuleValue is a list of http selectors pointing to backends. In the example: http:///? -> backend where where parts of the url correspond to RFC 3986, this resource will be used to match against everything after the last \'/\' and before the first \'?\' or \'#\'.
+*/
+class ExtensionsV1beta1HTTPIngressRuleValue {
+ static getAttributeTypeMap() {
+ return ExtensionsV1beta1HTTPIngressRuleValue.attributeTypeMap;
+ }
+}
+ExtensionsV1beta1HTTPIngressRuleValue.discriminator = undefined;
+ExtensionsV1beta1HTTPIngressRuleValue.attributeTypeMap = [
+ {
+ "name": "paths",
+ "baseName": "paths",
+ "type": "Array"
+ }
+];
+exports.ExtensionsV1beta1HTTPIngressRuleValue = ExtensionsV1beta1HTTPIngressRuleValue;
+//# sourceMappingURL=extensionsV1beta1HTTPIngressRuleValue.js.map
\ No newline at end of file
diff --git a/dist/gen/model/extensionsV1beta1HTTPIngressRuleValue.js.map b/dist/gen/model/extensionsV1beta1HTTPIngressRuleValue.js.map
new file mode 100644
index 0000000000..95f2f1f56b
--- /dev/null
+++ b/dist/gen/model/extensionsV1beta1HTTPIngressRuleValue.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"extensionsV1beta1HTTPIngressRuleValue.js","sourceRoot":"","sources":["../../../src/gen/model/extensionsV1beta1HTTPIngressRuleValue.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAIH;;EAEE;AACF,MAAa,qCAAqC;IAe9C,MAAM,CAAC,mBAAmB;QACtB,OAAO,qCAAqC,CAAC,gBAAgB,CAAC;IAClE,CAAC;;AAXM,mDAAa,GAAuB,SAAS,CAAC;AAE9C,sDAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,OAAO;QACf,UAAU,EAAE,OAAO;QACnB,MAAM,EAAE,yCAAyC;KACpD;CAAK,CAAC;AAbf,sFAkBC"}
\ No newline at end of file
diff --git a/dist/gen/model/extensionsV1beta1HostPortRange.d.ts b/dist/gen/model/extensionsV1beta1HostPortRange.d.ts
new file mode 100644
index 0000000000..3a5de39240
--- /dev/null
+++ b/dist/gen/model/extensionsV1beta1HostPortRange.d.ts
@@ -0,0 +1,35 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+/**
+* HostPortRange defines a range of host ports that will be enabled by a policy for pods to use. It requires both the start and end to be defined. Deprecated: use HostPortRange from policy API Group instead.
+*/
+export declare class ExtensionsV1beta1HostPortRange {
+ /**
+ * max is the end of the range, inclusive.
+ */
+ 'max': number;
+ /**
+ * min is the start of the range, inclusive.
+ */
+ 'min': number;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/extensionsV1beta1HostPortRange.js b/dist/gen/model/extensionsV1beta1HostPortRange.js
new file mode 100644
index 0000000000..7e7a44426a
--- /dev/null
+++ b/dist/gen/model/extensionsV1beta1HostPortRange.js
@@ -0,0 +1,36 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* HostPortRange defines a range of host ports that will be enabled by a policy for pods to use. It requires both the start and end to be defined. Deprecated: use HostPortRange from policy API Group instead.
+*/
+class ExtensionsV1beta1HostPortRange {
+ static getAttributeTypeMap() {
+ return ExtensionsV1beta1HostPortRange.attributeTypeMap;
+ }
+}
+ExtensionsV1beta1HostPortRange.discriminator = undefined;
+ExtensionsV1beta1HostPortRange.attributeTypeMap = [
+ {
+ "name": "max",
+ "baseName": "max",
+ "type": "number"
+ },
+ {
+ "name": "min",
+ "baseName": "min",
+ "type": "number"
+ }
+];
+exports.ExtensionsV1beta1HostPortRange = ExtensionsV1beta1HostPortRange;
+//# sourceMappingURL=extensionsV1beta1HostPortRange.js.map
\ No newline at end of file
diff --git a/dist/gen/model/extensionsV1beta1HostPortRange.js.map b/dist/gen/model/extensionsV1beta1HostPortRange.js.map
new file mode 100644
index 0000000000..cdefe824f1
--- /dev/null
+++ b/dist/gen/model/extensionsV1beta1HostPortRange.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"extensionsV1beta1HostPortRange.js","sourceRoot":"","sources":["../../../src/gen/model/extensionsV1beta1HostPortRange.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAGH;;EAEE;AACF,MAAa,8BAA8B;IAwBvC,MAAM,CAAC,mBAAmB;QACtB,OAAO,8BAA8B,CAAC,gBAAgB,CAAC;IAC3D,CAAC;;AAhBM,4CAAa,GAAuB,SAAS,CAAC;AAE9C,+CAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,KAAK;QACb,UAAU,EAAE,KAAK;QACjB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,KAAK;QACb,UAAU,EAAE,KAAK;QACjB,MAAM,EAAE,QAAQ;KACnB;CAAK,CAAC;AAtBf,wEA2BC"}
\ No newline at end of file
diff --git a/dist/gen/model/extensionsV1beta1IDRange.d.ts b/dist/gen/model/extensionsV1beta1IDRange.d.ts
new file mode 100644
index 0000000000..20eb66ac00
--- /dev/null
+++ b/dist/gen/model/extensionsV1beta1IDRange.d.ts
@@ -0,0 +1,35 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+/**
+* IDRange provides a min/max of an allowed range of IDs. Deprecated: use IDRange from policy API Group instead.
+*/
+export declare class ExtensionsV1beta1IDRange {
+ /**
+ * max is the end of the range, inclusive.
+ */
+ 'max': number;
+ /**
+ * min is the start of the range, inclusive.
+ */
+ 'min': number;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/extensionsV1beta1IDRange.js b/dist/gen/model/extensionsV1beta1IDRange.js
new file mode 100644
index 0000000000..5088f8a835
--- /dev/null
+++ b/dist/gen/model/extensionsV1beta1IDRange.js
@@ -0,0 +1,36 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* IDRange provides a min/max of an allowed range of IDs. Deprecated: use IDRange from policy API Group instead.
+*/
+class ExtensionsV1beta1IDRange {
+ static getAttributeTypeMap() {
+ return ExtensionsV1beta1IDRange.attributeTypeMap;
+ }
+}
+ExtensionsV1beta1IDRange.discriminator = undefined;
+ExtensionsV1beta1IDRange.attributeTypeMap = [
+ {
+ "name": "max",
+ "baseName": "max",
+ "type": "number"
+ },
+ {
+ "name": "min",
+ "baseName": "min",
+ "type": "number"
+ }
+];
+exports.ExtensionsV1beta1IDRange = ExtensionsV1beta1IDRange;
+//# sourceMappingURL=extensionsV1beta1IDRange.js.map
\ No newline at end of file
diff --git a/dist/gen/model/extensionsV1beta1IDRange.js.map b/dist/gen/model/extensionsV1beta1IDRange.js.map
new file mode 100644
index 0000000000..9ae2e653a9
--- /dev/null
+++ b/dist/gen/model/extensionsV1beta1IDRange.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"extensionsV1beta1IDRange.js","sourceRoot":"","sources":["../../../src/gen/model/extensionsV1beta1IDRange.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAGH;;EAEE;AACF,MAAa,wBAAwB;IAwBjC,MAAM,CAAC,mBAAmB;QACtB,OAAO,wBAAwB,CAAC,gBAAgB,CAAC;IACrD,CAAC;;AAhBM,sCAAa,GAAuB,SAAS,CAAC;AAE9C,yCAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,KAAK;QACb,UAAU,EAAE,KAAK;QACjB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,KAAK;QACb,UAAU,EAAE,KAAK;QACjB,MAAM,EAAE,QAAQ;KACnB;CAAK,CAAC;AAtBf,4DA2BC"}
\ No newline at end of file
diff --git a/dist/gen/model/extensionsV1beta1Ingress.d.ts b/dist/gen/model/extensionsV1beta1Ingress.d.ts
new file mode 100644
index 0000000000..feb2f5ec24
--- /dev/null
+++ b/dist/gen/model/extensionsV1beta1Ingress.d.ts
@@ -0,0 +1,41 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+import { ExtensionsV1beta1IngressSpec } from './extensionsV1beta1IngressSpec';
+import { ExtensionsV1beta1IngressStatus } from './extensionsV1beta1IngressStatus';
+import { V1ObjectMeta } from './v1ObjectMeta';
+/**
+* Ingress is a collection of rules that allow inbound connections to reach the endpoints defined by a backend. An Ingress can be configured to give services externally-reachable urls, load balance traffic, terminate SSL, offer name based virtual hosting etc. DEPRECATED - This group version of Ingress is deprecated by networking.k8s.io/v1beta1 Ingress. See the release notes for more information.
+*/
+export declare class ExtensionsV1beta1Ingress {
+ /**
+ * APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources
+ */
+ 'apiVersion'?: string;
+ /**
+ * Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
+ */
+ 'kind'?: string;
+ 'metadata'?: V1ObjectMeta;
+ 'spec'?: ExtensionsV1beta1IngressSpec;
+ 'status'?: ExtensionsV1beta1IngressStatus;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/extensionsV1beta1Ingress.js b/dist/gen/model/extensionsV1beta1Ingress.js
new file mode 100644
index 0000000000..d5ccd6b4e6
--- /dev/null
+++ b/dist/gen/model/extensionsV1beta1Ingress.js
@@ -0,0 +1,51 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* Ingress is a collection of rules that allow inbound connections to reach the endpoints defined by a backend. An Ingress can be configured to give services externally-reachable urls, load balance traffic, terminate SSL, offer name based virtual hosting etc. DEPRECATED - This group version of Ingress is deprecated by networking.k8s.io/v1beta1 Ingress. See the release notes for more information.
+*/
+class ExtensionsV1beta1Ingress {
+ static getAttributeTypeMap() {
+ return ExtensionsV1beta1Ingress.attributeTypeMap;
+ }
+}
+ExtensionsV1beta1Ingress.discriminator = undefined;
+ExtensionsV1beta1Ingress.attributeTypeMap = [
+ {
+ "name": "apiVersion",
+ "baseName": "apiVersion",
+ "type": "string"
+ },
+ {
+ "name": "kind",
+ "baseName": "kind",
+ "type": "string"
+ },
+ {
+ "name": "metadata",
+ "baseName": "metadata",
+ "type": "V1ObjectMeta"
+ },
+ {
+ "name": "spec",
+ "baseName": "spec",
+ "type": "ExtensionsV1beta1IngressSpec"
+ },
+ {
+ "name": "status",
+ "baseName": "status",
+ "type": "ExtensionsV1beta1IngressStatus"
+ }
+];
+exports.ExtensionsV1beta1Ingress = ExtensionsV1beta1Ingress;
+//# sourceMappingURL=extensionsV1beta1Ingress.js.map
\ No newline at end of file
diff --git a/dist/gen/model/extensionsV1beta1Ingress.js.map b/dist/gen/model/extensionsV1beta1Ingress.js.map
new file mode 100644
index 0000000000..829de095d8
--- /dev/null
+++ b/dist/gen/model/extensionsV1beta1Ingress.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"extensionsV1beta1Ingress.js","sourceRoot":"","sources":["../../../src/gen/model/extensionsV1beta1Ingress.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAMH;;EAEE;AACF,MAAa,wBAAwB;IA0CjC,MAAM,CAAC,mBAAmB;QACtB,OAAO,wBAAwB,CAAC,gBAAgB,CAAC;IACrD,CAAC;;AA/BM,sCAAa,GAAuB,SAAS,CAAC;AAE9C,yCAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,YAAY;QACpB,UAAU,EAAE,YAAY;QACxB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,UAAU;QAClB,UAAU,EAAE,UAAU;QACtB,MAAM,EAAE,cAAc;KACzB;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,8BAA8B;KACzC;IACD;QACI,MAAM,EAAE,QAAQ;QAChB,UAAU,EAAE,QAAQ;QACpB,MAAM,EAAE,gCAAgC;KAC3C;CAAK,CAAC;AAxCf,4DA6CC"}
\ No newline at end of file
diff --git a/dist/gen/model/extensionsV1beta1IngressBackend.d.ts b/dist/gen/model/extensionsV1beta1IngressBackend.d.ts
new file mode 100644
index 0000000000..25807f9122
--- /dev/null
+++ b/dist/gen/model/extensionsV1beta1IngressBackend.d.ts
@@ -0,0 +1,35 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+/**
+* IngressBackend describes all endpoints for a given service and port.
+*/
+export declare class ExtensionsV1beta1IngressBackend {
+ /**
+ * Specifies the name of the referenced service.
+ */
+ 'serviceName': string;
+ /**
+ * Specifies the port of the referenced service.
+ */
+ 'servicePort': object;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/extensionsV1beta1IngressBackend.js b/dist/gen/model/extensionsV1beta1IngressBackend.js
new file mode 100644
index 0000000000..296827891c
--- /dev/null
+++ b/dist/gen/model/extensionsV1beta1IngressBackend.js
@@ -0,0 +1,36 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* IngressBackend describes all endpoints for a given service and port.
+*/
+class ExtensionsV1beta1IngressBackend {
+ static getAttributeTypeMap() {
+ return ExtensionsV1beta1IngressBackend.attributeTypeMap;
+ }
+}
+ExtensionsV1beta1IngressBackend.discriminator = undefined;
+ExtensionsV1beta1IngressBackend.attributeTypeMap = [
+ {
+ "name": "serviceName",
+ "baseName": "serviceName",
+ "type": "string"
+ },
+ {
+ "name": "servicePort",
+ "baseName": "servicePort",
+ "type": "object"
+ }
+];
+exports.ExtensionsV1beta1IngressBackend = ExtensionsV1beta1IngressBackend;
+//# sourceMappingURL=extensionsV1beta1IngressBackend.js.map
\ No newline at end of file
diff --git a/dist/gen/model/extensionsV1beta1IngressBackend.js.map b/dist/gen/model/extensionsV1beta1IngressBackend.js.map
new file mode 100644
index 0000000000..54a7565994
--- /dev/null
+++ b/dist/gen/model/extensionsV1beta1IngressBackend.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"extensionsV1beta1IngressBackend.js","sourceRoot":"","sources":["../../../src/gen/model/extensionsV1beta1IngressBackend.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAGH;;EAEE;AACF,MAAa,+BAA+B;IAwBxC,MAAM,CAAC,mBAAmB;QACtB,OAAO,+BAA+B,CAAC,gBAAgB,CAAC;IAC5D,CAAC;;AAhBM,6CAAa,GAAuB,SAAS,CAAC;AAE9C,gDAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,aAAa;QACrB,UAAU,EAAE,aAAa;QACzB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,aAAa;QACrB,UAAU,EAAE,aAAa;QACzB,MAAM,EAAE,QAAQ;KACnB;CAAK,CAAC;AAtBf,0EA2BC"}
\ No newline at end of file
diff --git a/dist/gen/model/extensionsV1beta1IngressList.d.ts b/dist/gen/model/extensionsV1beta1IngressList.d.ts
new file mode 100644
index 0000000000..aed18a990b
--- /dev/null
+++ b/dist/gen/model/extensionsV1beta1IngressList.d.ts
@@ -0,0 +1,42 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+import { ExtensionsV1beta1Ingress } from './extensionsV1beta1Ingress';
+import { V1ListMeta } from './v1ListMeta';
+/**
+* IngressList is a collection of Ingress.
+*/
+export declare class ExtensionsV1beta1IngressList {
+ /**
+ * APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources
+ */
+ 'apiVersion'?: string;
+ /**
+ * Items is the list of Ingress.
+ */
+ 'items': Array;
+ /**
+ * Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
+ */
+ 'kind'?: string;
+ 'metadata'?: V1ListMeta;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/extensionsV1beta1IngressList.js b/dist/gen/model/extensionsV1beta1IngressList.js
new file mode 100644
index 0000000000..cd65a3c92e
--- /dev/null
+++ b/dist/gen/model/extensionsV1beta1IngressList.js
@@ -0,0 +1,46 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* IngressList is a collection of Ingress.
+*/
+class ExtensionsV1beta1IngressList {
+ static getAttributeTypeMap() {
+ return ExtensionsV1beta1IngressList.attributeTypeMap;
+ }
+}
+ExtensionsV1beta1IngressList.discriminator = undefined;
+ExtensionsV1beta1IngressList.attributeTypeMap = [
+ {
+ "name": "apiVersion",
+ "baseName": "apiVersion",
+ "type": "string"
+ },
+ {
+ "name": "items",
+ "baseName": "items",
+ "type": "Array"
+ },
+ {
+ "name": "kind",
+ "baseName": "kind",
+ "type": "string"
+ },
+ {
+ "name": "metadata",
+ "baseName": "metadata",
+ "type": "V1ListMeta"
+ }
+];
+exports.ExtensionsV1beta1IngressList = ExtensionsV1beta1IngressList;
+//# sourceMappingURL=extensionsV1beta1IngressList.js.map
\ No newline at end of file
diff --git a/dist/gen/model/extensionsV1beta1IngressList.js.map b/dist/gen/model/extensionsV1beta1IngressList.js.map
new file mode 100644
index 0000000000..838602f47c
--- /dev/null
+++ b/dist/gen/model/extensionsV1beta1IngressList.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"extensionsV1beta1IngressList.js","sourceRoot":"","sources":["../../../src/gen/model/extensionsV1beta1IngressList.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAKH;;EAEE;AACF,MAAa,4BAA4B;IAuCrC,MAAM,CAAC,mBAAmB;QACtB,OAAO,4BAA4B,CAAC,gBAAgB,CAAC;IACzD,CAAC;;AA1BM,0CAAa,GAAuB,SAAS,CAAC;AAE9C,6CAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,YAAY;QACpB,UAAU,EAAE,YAAY;QACxB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,OAAO;QACf,UAAU,EAAE,OAAO;QACnB,MAAM,EAAE,iCAAiC;KAC5C;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,UAAU;QAClB,UAAU,EAAE,UAAU;QACtB,MAAM,EAAE,YAAY;KACvB;CAAK,CAAC;AArCf,oEA0CC"}
\ No newline at end of file
diff --git a/dist/gen/model/extensionsV1beta1IngressRule.d.ts b/dist/gen/model/extensionsV1beta1IngressRule.d.ts
new file mode 100644
index 0000000000..a321865dae
--- /dev/null
+++ b/dist/gen/model/extensionsV1beta1IngressRule.d.ts
@@ -0,0 +1,33 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+import { ExtensionsV1beta1HTTPIngressRuleValue } from './extensionsV1beta1HTTPIngressRuleValue';
+/**
+* IngressRule represents the rules mapping the paths under a specified host to the related backend services. Incoming requests are first evaluated for a host match, then routed to the backend associated with the matching IngressRuleValue.
+*/
+export declare class ExtensionsV1beta1IngressRule {
+ /**
+ * Host is the fully qualified domain name of a network host, as defined by RFC 3986. Note the following deviations from the \"host\" part of the URI as defined in the RFC: 1. IPs are not allowed. Currently an IngressRuleValue can only apply to the IP in the Spec of the parent Ingress. 2. The `:` delimiter is not respected because ports are not allowed. Currently the port of an Ingress is implicitly :80 for http and :443 for https. Both these may change in the future. Incoming requests are matched against the host before the IngressRuleValue. If the host is unspecified, the Ingress routes all traffic based on the specified IngressRuleValue.
+ */
+ 'host'?: string;
+ 'http'?: ExtensionsV1beta1HTTPIngressRuleValue;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/extensionsV1beta1IngressRule.js b/dist/gen/model/extensionsV1beta1IngressRule.js
new file mode 100644
index 0000000000..fe2d3b592a
--- /dev/null
+++ b/dist/gen/model/extensionsV1beta1IngressRule.js
@@ -0,0 +1,36 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* IngressRule represents the rules mapping the paths under a specified host to the related backend services. Incoming requests are first evaluated for a host match, then routed to the backend associated with the matching IngressRuleValue.
+*/
+class ExtensionsV1beta1IngressRule {
+ static getAttributeTypeMap() {
+ return ExtensionsV1beta1IngressRule.attributeTypeMap;
+ }
+}
+ExtensionsV1beta1IngressRule.discriminator = undefined;
+ExtensionsV1beta1IngressRule.attributeTypeMap = [
+ {
+ "name": "host",
+ "baseName": "host",
+ "type": "string"
+ },
+ {
+ "name": "http",
+ "baseName": "http",
+ "type": "ExtensionsV1beta1HTTPIngressRuleValue"
+ }
+];
+exports.ExtensionsV1beta1IngressRule = ExtensionsV1beta1IngressRule;
+//# sourceMappingURL=extensionsV1beta1IngressRule.js.map
\ No newline at end of file
diff --git a/dist/gen/model/extensionsV1beta1IngressRule.js.map b/dist/gen/model/extensionsV1beta1IngressRule.js.map
new file mode 100644
index 0000000000..4bb164b315
--- /dev/null
+++ b/dist/gen/model/extensionsV1beta1IngressRule.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"extensionsV1beta1IngressRule.js","sourceRoot":"","sources":["../../../src/gen/model/extensionsV1beta1IngressRule.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAIH;;EAEE;AACF,MAAa,4BAA4B;IAqBrC,MAAM,CAAC,mBAAmB;QACtB,OAAO,4BAA4B,CAAC,gBAAgB,CAAC;IACzD,CAAC;;AAhBM,0CAAa,GAAuB,SAAS,CAAC;AAE9C,6CAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,uCAAuC;KAClD;CAAK,CAAC;AAnBf,oEAwBC"}
\ No newline at end of file
diff --git a/dist/gen/model/extensionsV1beta1IngressSpec.d.ts b/dist/gen/model/extensionsV1beta1IngressSpec.d.ts
new file mode 100644
index 0000000000..a0524fd687
--- /dev/null
+++ b/dist/gen/model/extensionsV1beta1IngressSpec.d.ts
@@ -0,0 +1,39 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+import { ExtensionsV1beta1IngressBackend } from './extensionsV1beta1IngressBackend';
+import { ExtensionsV1beta1IngressRule } from './extensionsV1beta1IngressRule';
+import { ExtensionsV1beta1IngressTLS } from './extensionsV1beta1IngressTLS';
+/**
+* IngressSpec describes the Ingress the user wishes to exist.
+*/
+export declare class ExtensionsV1beta1IngressSpec {
+ 'backend'?: ExtensionsV1beta1IngressBackend;
+ /**
+ * A list of host rules used to configure the Ingress. If unspecified, or no rule matches, all traffic is sent to the default backend.
+ */
+ 'rules'?: Array;
+ /**
+ * TLS configuration. Currently the Ingress only supports a single TLS port, 443. If multiple members of this list specify different hosts, they will be multiplexed on the same port according to the hostname specified through the SNI TLS extension, if the ingress controller fulfilling the ingress supports SNI.
+ */
+ 'tls'?: Array;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/extensionsV1beta1IngressSpec.js b/dist/gen/model/extensionsV1beta1IngressSpec.js
new file mode 100644
index 0000000000..a7896cba93
--- /dev/null
+++ b/dist/gen/model/extensionsV1beta1IngressSpec.js
@@ -0,0 +1,41 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* IngressSpec describes the Ingress the user wishes to exist.
+*/
+class ExtensionsV1beta1IngressSpec {
+ static getAttributeTypeMap() {
+ return ExtensionsV1beta1IngressSpec.attributeTypeMap;
+ }
+}
+ExtensionsV1beta1IngressSpec.discriminator = undefined;
+ExtensionsV1beta1IngressSpec.attributeTypeMap = [
+ {
+ "name": "backend",
+ "baseName": "backend",
+ "type": "ExtensionsV1beta1IngressBackend"
+ },
+ {
+ "name": "rules",
+ "baseName": "rules",
+ "type": "Array"
+ },
+ {
+ "name": "tls",
+ "baseName": "tls",
+ "type": "Array"
+ }
+];
+exports.ExtensionsV1beta1IngressSpec = ExtensionsV1beta1IngressSpec;
+//# sourceMappingURL=extensionsV1beta1IngressSpec.js.map
\ No newline at end of file
diff --git a/dist/gen/model/extensionsV1beta1IngressSpec.js.map b/dist/gen/model/extensionsV1beta1IngressSpec.js.map
new file mode 100644
index 0000000000..7a0f2a786f
--- /dev/null
+++ b/dist/gen/model/extensionsV1beta1IngressSpec.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"extensionsV1beta1IngressSpec.js","sourceRoot":"","sources":["../../../src/gen/model/extensionsV1beta1IngressSpec.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAMH;;EAEE;AACF,MAAa,4BAA4B;IA8BrC,MAAM,CAAC,mBAAmB;QACtB,OAAO,4BAA4B,CAAC,gBAAgB,CAAC;IACzD,CAAC;;AArBM,0CAAa,GAAuB,SAAS,CAAC;AAE9C,6CAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,SAAS;QACjB,UAAU,EAAE,SAAS;QACrB,MAAM,EAAE,iCAAiC;KAC5C;IACD;QACI,MAAM,EAAE,OAAO;QACf,UAAU,EAAE,OAAO;QACnB,MAAM,EAAE,qCAAqC;KAChD;IACD;QACI,MAAM,EAAE,KAAK;QACb,UAAU,EAAE,KAAK;QACjB,MAAM,EAAE,oCAAoC;KAC/C;CAAK,CAAC;AA5Bf,oEAiCC"}
\ No newline at end of file
diff --git a/dist/gen/model/extensionsV1beta1IngressStatus.d.ts b/dist/gen/model/extensionsV1beta1IngressStatus.d.ts
new file mode 100644
index 0000000000..3e102eeac6
--- /dev/null
+++ b/dist/gen/model/extensionsV1beta1IngressStatus.d.ts
@@ -0,0 +1,29 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+import { V1LoadBalancerStatus } from './v1LoadBalancerStatus';
+/**
+* IngressStatus describe the current state of the Ingress.
+*/
+export declare class ExtensionsV1beta1IngressStatus {
+ 'loadBalancer'?: V1LoadBalancerStatus;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/extensionsV1beta1IngressStatus.js b/dist/gen/model/extensionsV1beta1IngressStatus.js
new file mode 100644
index 0000000000..33da3e109b
--- /dev/null
+++ b/dist/gen/model/extensionsV1beta1IngressStatus.js
@@ -0,0 +1,31 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* IngressStatus describe the current state of the Ingress.
+*/
+class ExtensionsV1beta1IngressStatus {
+ static getAttributeTypeMap() {
+ return ExtensionsV1beta1IngressStatus.attributeTypeMap;
+ }
+}
+ExtensionsV1beta1IngressStatus.discriminator = undefined;
+ExtensionsV1beta1IngressStatus.attributeTypeMap = [
+ {
+ "name": "loadBalancer",
+ "baseName": "loadBalancer",
+ "type": "V1LoadBalancerStatus"
+ }
+];
+exports.ExtensionsV1beta1IngressStatus = ExtensionsV1beta1IngressStatus;
+//# sourceMappingURL=extensionsV1beta1IngressStatus.js.map
\ No newline at end of file
diff --git a/dist/gen/model/extensionsV1beta1IngressStatus.js.map b/dist/gen/model/extensionsV1beta1IngressStatus.js.map
new file mode 100644
index 0000000000..3ee0972834
--- /dev/null
+++ b/dist/gen/model/extensionsV1beta1IngressStatus.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"extensionsV1beta1IngressStatus.js","sourceRoot":"","sources":["../../../src/gen/model/extensionsV1beta1IngressStatus.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAIH;;EAEE;AACF,MAAa,8BAA8B;IAYvC,MAAM,CAAC,mBAAmB;QACtB,OAAO,8BAA8B,CAAC,gBAAgB,CAAC;IAC3D,CAAC;;AAXM,4CAAa,GAAuB,SAAS,CAAC;AAE9C,+CAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,cAAc;QACtB,UAAU,EAAE,cAAc;QAC1B,MAAM,EAAE,sBAAsB;KACjC;CAAK,CAAC;AAVf,wEAeC"}
\ No newline at end of file
diff --git a/dist/gen/model/extensionsV1beta1IngressTLS.d.ts b/dist/gen/model/extensionsV1beta1IngressTLS.d.ts
new file mode 100644
index 0000000000..1981ad6df9
--- /dev/null
+++ b/dist/gen/model/extensionsV1beta1IngressTLS.d.ts
@@ -0,0 +1,35 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+/**
+* IngressTLS describes the transport layer security associated with an Ingress.
+*/
+export declare class ExtensionsV1beta1IngressTLS {
+ /**
+ * Hosts are a list of hosts included in the TLS certificate. The values in this list must match the name/s used in the tlsSecret. Defaults to the wildcard host setting for the loadbalancer controller fulfilling this Ingress, if left unspecified.
+ */
+ 'hosts'?: Array;
+ /**
+ * SecretName is the name of the secret used to terminate SSL traffic on 443. Field is left optional to allow SSL routing based on SNI hostname alone. If the SNI host in a listener conflicts with the \"Host\" header field used by an IngressRule, the SNI host is used for termination and value of the Host header is used for routing.
+ */
+ 'secretName'?: string;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/extensionsV1beta1IngressTLS.js b/dist/gen/model/extensionsV1beta1IngressTLS.js
new file mode 100644
index 0000000000..e2127fafa6
--- /dev/null
+++ b/dist/gen/model/extensionsV1beta1IngressTLS.js
@@ -0,0 +1,36 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* IngressTLS describes the transport layer security associated with an Ingress.
+*/
+class ExtensionsV1beta1IngressTLS {
+ static getAttributeTypeMap() {
+ return ExtensionsV1beta1IngressTLS.attributeTypeMap;
+ }
+}
+ExtensionsV1beta1IngressTLS.discriminator = undefined;
+ExtensionsV1beta1IngressTLS.attributeTypeMap = [
+ {
+ "name": "hosts",
+ "baseName": "hosts",
+ "type": "Array"
+ },
+ {
+ "name": "secretName",
+ "baseName": "secretName",
+ "type": "string"
+ }
+];
+exports.ExtensionsV1beta1IngressTLS = ExtensionsV1beta1IngressTLS;
+//# sourceMappingURL=extensionsV1beta1IngressTLS.js.map
\ No newline at end of file
diff --git a/dist/gen/model/extensionsV1beta1IngressTLS.js.map b/dist/gen/model/extensionsV1beta1IngressTLS.js.map
new file mode 100644
index 0000000000..4cb760ac65
--- /dev/null
+++ b/dist/gen/model/extensionsV1beta1IngressTLS.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"extensionsV1beta1IngressTLS.js","sourceRoot":"","sources":["../../../src/gen/model/extensionsV1beta1IngressTLS.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAGH;;EAEE;AACF,MAAa,2BAA2B;IAwBpC,MAAM,CAAC,mBAAmB;QACtB,OAAO,2BAA2B,CAAC,gBAAgB,CAAC;IACxD,CAAC;;AAhBM,yCAAa,GAAuB,SAAS,CAAC;AAE9C,4CAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,OAAO;QACf,UAAU,EAAE,OAAO;QACnB,MAAM,EAAE,eAAe;KAC1B;IACD;QACI,MAAM,EAAE,YAAY;QACpB,UAAU,EAAE,YAAY;QACxB,MAAM,EAAE,QAAQ;KACnB;CAAK,CAAC;AAtBf,kEA2BC"}
\ No newline at end of file
diff --git a/dist/gen/model/extensionsV1beta1PodSecurityPolicy.d.ts b/dist/gen/model/extensionsV1beta1PodSecurityPolicy.d.ts
new file mode 100644
index 0000000000..0de6e92a08
--- /dev/null
+++ b/dist/gen/model/extensionsV1beta1PodSecurityPolicy.d.ts
@@ -0,0 +1,39 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+import { ExtensionsV1beta1PodSecurityPolicySpec } from './extensionsV1beta1PodSecurityPolicySpec';
+import { V1ObjectMeta } from './v1ObjectMeta';
+/**
+* PodSecurityPolicy governs the ability to make requests that affect the Security Context that will be applied to a pod and container. Deprecated: use PodSecurityPolicy from policy API Group instead.
+*/
+export declare class ExtensionsV1beta1PodSecurityPolicy {
+ /**
+ * APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources
+ */
+ 'apiVersion'?: string;
+ /**
+ * Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
+ */
+ 'kind'?: string;
+ 'metadata'?: V1ObjectMeta;
+ 'spec'?: ExtensionsV1beta1PodSecurityPolicySpec;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/extensionsV1beta1PodSecurityPolicy.js b/dist/gen/model/extensionsV1beta1PodSecurityPolicy.js
new file mode 100644
index 0000000000..be6987ddc3
--- /dev/null
+++ b/dist/gen/model/extensionsV1beta1PodSecurityPolicy.js
@@ -0,0 +1,46 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* PodSecurityPolicy governs the ability to make requests that affect the Security Context that will be applied to a pod and container. Deprecated: use PodSecurityPolicy from policy API Group instead.
+*/
+class ExtensionsV1beta1PodSecurityPolicy {
+ static getAttributeTypeMap() {
+ return ExtensionsV1beta1PodSecurityPolicy.attributeTypeMap;
+ }
+}
+ExtensionsV1beta1PodSecurityPolicy.discriminator = undefined;
+ExtensionsV1beta1PodSecurityPolicy.attributeTypeMap = [
+ {
+ "name": "apiVersion",
+ "baseName": "apiVersion",
+ "type": "string"
+ },
+ {
+ "name": "kind",
+ "baseName": "kind",
+ "type": "string"
+ },
+ {
+ "name": "metadata",
+ "baseName": "metadata",
+ "type": "V1ObjectMeta"
+ },
+ {
+ "name": "spec",
+ "baseName": "spec",
+ "type": "ExtensionsV1beta1PodSecurityPolicySpec"
+ }
+];
+exports.ExtensionsV1beta1PodSecurityPolicy = ExtensionsV1beta1PodSecurityPolicy;
+//# sourceMappingURL=extensionsV1beta1PodSecurityPolicy.js.map
\ No newline at end of file
diff --git a/dist/gen/model/extensionsV1beta1PodSecurityPolicy.js.map b/dist/gen/model/extensionsV1beta1PodSecurityPolicy.js.map
new file mode 100644
index 0000000000..d3e24d7703
--- /dev/null
+++ b/dist/gen/model/extensionsV1beta1PodSecurityPolicy.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"extensionsV1beta1PodSecurityPolicy.js","sourceRoot":"","sources":["../../../src/gen/model/extensionsV1beta1PodSecurityPolicy.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAKH;;EAEE;AACF,MAAa,kCAAkC;IAoC3C,MAAM,CAAC,mBAAmB;QACtB,OAAO,kCAAkC,CAAC,gBAAgB,CAAC;IAC/D,CAAC;;AA1BM,gDAAa,GAAuB,SAAS,CAAC;AAE9C,mDAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,YAAY;QACpB,UAAU,EAAE,YAAY;QACxB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,UAAU;QAClB,UAAU,EAAE,UAAU;QACtB,MAAM,EAAE,cAAc;KACzB;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,wCAAwC;KACnD;CAAK,CAAC;AAlCf,gFAuCC"}
\ No newline at end of file
diff --git a/dist/gen/model/extensionsV1beta1PodSecurityPolicyList.d.ts b/dist/gen/model/extensionsV1beta1PodSecurityPolicyList.d.ts
new file mode 100644
index 0000000000..e5f56ab4bd
--- /dev/null
+++ b/dist/gen/model/extensionsV1beta1PodSecurityPolicyList.d.ts
@@ -0,0 +1,42 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+import { ExtensionsV1beta1PodSecurityPolicy } from './extensionsV1beta1PodSecurityPolicy';
+import { V1ListMeta } from './v1ListMeta';
+/**
+* PodSecurityPolicyList is a list of PodSecurityPolicy objects. Deprecated: use PodSecurityPolicyList from policy API Group instead.
+*/
+export declare class ExtensionsV1beta1PodSecurityPolicyList {
+ /**
+ * APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources
+ */
+ 'apiVersion'?: string;
+ /**
+ * items is a list of schema objects.
+ */
+ 'items': Array;
+ /**
+ * Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
+ */
+ 'kind'?: string;
+ 'metadata'?: V1ListMeta;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/extensionsV1beta1PodSecurityPolicyList.js b/dist/gen/model/extensionsV1beta1PodSecurityPolicyList.js
new file mode 100644
index 0000000000..2fc3c97a79
--- /dev/null
+++ b/dist/gen/model/extensionsV1beta1PodSecurityPolicyList.js
@@ -0,0 +1,46 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* PodSecurityPolicyList is a list of PodSecurityPolicy objects. Deprecated: use PodSecurityPolicyList from policy API Group instead.
+*/
+class ExtensionsV1beta1PodSecurityPolicyList {
+ static getAttributeTypeMap() {
+ return ExtensionsV1beta1PodSecurityPolicyList.attributeTypeMap;
+ }
+}
+ExtensionsV1beta1PodSecurityPolicyList.discriminator = undefined;
+ExtensionsV1beta1PodSecurityPolicyList.attributeTypeMap = [
+ {
+ "name": "apiVersion",
+ "baseName": "apiVersion",
+ "type": "string"
+ },
+ {
+ "name": "items",
+ "baseName": "items",
+ "type": "Array"
+ },
+ {
+ "name": "kind",
+ "baseName": "kind",
+ "type": "string"
+ },
+ {
+ "name": "metadata",
+ "baseName": "metadata",
+ "type": "V1ListMeta"
+ }
+];
+exports.ExtensionsV1beta1PodSecurityPolicyList = ExtensionsV1beta1PodSecurityPolicyList;
+//# sourceMappingURL=extensionsV1beta1PodSecurityPolicyList.js.map
\ No newline at end of file
diff --git a/dist/gen/model/extensionsV1beta1PodSecurityPolicyList.js.map b/dist/gen/model/extensionsV1beta1PodSecurityPolicyList.js.map
new file mode 100644
index 0000000000..bac914144f
--- /dev/null
+++ b/dist/gen/model/extensionsV1beta1PodSecurityPolicyList.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"extensionsV1beta1PodSecurityPolicyList.js","sourceRoot":"","sources":["../../../src/gen/model/extensionsV1beta1PodSecurityPolicyList.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAKH;;EAEE;AACF,MAAa,sCAAsC;IAuC/C,MAAM,CAAC,mBAAmB;QACtB,OAAO,sCAAsC,CAAC,gBAAgB,CAAC;IACnE,CAAC;;AA1BM,oDAAa,GAAuB,SAAS,CAAC;AAE9C,uDAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,YAAY;QACpB,UAAU,EAAE,YAAY;QACxB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,OAAO;QACf,UAAU,EAAE,OAAO;QACnB,MAAM,EAAE,2CAA2C;KACtD;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,UAAU;QAClB,UAAU,EAAE,UAAU;QACtB,MAAM,EAAE,YAAY;KACvB;CAAK,CAAC;AArCf,wFA0CC"}
\ No newline at end of file
diff --git a/dist/gen/model/extensionsV1beta1PodSecurityPolicySpec.d.ts b/dist/gen/model/extensionsV1beta1PodSecurityPolicySpec.d.ts
new file mode 100644
index 0000000000..cdf745069c
--- /dev/null
+++ b/dist/gen/model/extensionsV1beta1PodSecurityPolicySpec.d.ts
@@ -0,0 +1,115 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+import { ExtensionsV1beta1AllowedCSIDriver } from './extensionsV1beta1AllowedCSIDriver';
+import { ExtensionsV1beta1AllowedFlexVolume } from './extensionsV1beta1AllowedFlexVolume';
+import { ExtensionsV1beta1AllowedHostPath } from './extensionsV1beta1AllowedHostPath';
+import { ExtensionsV1beta1FSGroupStrategyOptions } from './extensionsV1beta1FSGroupStrategyOptions';
+import { ExtensionsV1beta1HostPortRange } from './extensionsV1beta1HostPortRange';
+import { ExtensionsV1beta1RunAsGroupStrategyOptions } from './extensionsV1beta1RunAsGroupStrategyOptions';
+import { ExtensionsV1beta1RunAsUserStrategyOptions } from './extensionsV1beta1RunAsUserStrategyOptions';
+import { ExtensionsV1beta1RuntimeClassStrategyOptions } from './extensionsV1beta1RuntimeClassStrategyOptions';
+import { ExtensionsV1beta1SELinuxStrategyOptions } from './extensionsV1beta1SELinuxStrategyOptions';
+import { ExtensionsV1beta1SupplementalGroupsStrategyOptions } from './extensionsV1beta1SupplementalGroupsStrategyOptions';
+/**
+* PodSecurityPolicySpec defines the policy enforced. Deprecated: use PodSecurityPolicySpec from policy API Group instead.
+*/
+export declare class ExtensionsV1beta1PodSecurityPolicySpec {
+ /**
+ * allowPrivilegeEscalation determines if a pod can request to allow privilege escalation. If unspecified, defaults to true.
+ */
+ 'allowPrivilegeEscalation'?: boolean;
+ /**
+ * AllowedCSIDrivers is a whitelist of inline CSI drivers that must be explicitly set to be embedded within a pod spec. An empty value indicates that any CSI driver can be used for inline ephemeral volumes. This is an alpha field, and is only honored if the API server enables the CSIInlineVolume feature gate.
+ */
+ 'allowedCSIDrivers'?: Array;
+ /**
+ * allowedCapabilities is a list of capabilities that can be requested to add to the container. Capabilities in this field may be added at the pod author\'s discretion. You must not list a capability in both allowedCapabilities and requiredDropCapabilities.
+ */
+ 'allowedCapabilities'?: Array;
+ /**
+ * allowedFlexVolumes is a whitelist of allowed Flexvolumes. Empty or nil indicates that all Flexvolumes may be used. This parameter is effective only when the usage of the Flexvolumes is allowed in the \"volumes\" field.
+ */
+ 'allowedFlexVolumes'?: Array;
+ /**
+ * allowedHostPaths is a white list of allowed host paths. Empty indicates that all host paths may be used.
+ */
+ 'allowedHostPaths'?: Array;
+ /**
+ * AllowedProcMountTypes is a whitelist of allowed ProcMountTypes. Empty or nil indicates that only the DefaultProcMountType may be used. This requires the ProcMountType feature flag to be enabled.
+ */
+ 'allowedProcMountTypes'?: Array;
+ /**
+ * allowedUnsafeSysctls is a list of explicitly allowed unsafe sysctls, defaults to none. Each entry is either a plain sysctl name or ends in \"*\" in which case it is considered as a prefix of allowed sysctls. Single * means all unsafe sysctls are allowed. Kubelet has to whitelist all allowed unsafe sysctls explicitly to avoid rejection. Examples: e.g. \"foo/_*\" allows \"foo/bar\", \"foo/baz\", etc. e.g. \"foo.*\" allows \"foo.bar\", \"foo.baz\", etc.
+ */
+ 'allowedUnsafeSysctls'?: Array;
+ /**
+ * defaultAddCapabilities is the default set of capabilities that will be added to the container unless the pod spec specifically drops the capability. You may not list a capability in both defaultAddCapabilities and requiredDropCapabilities. Capabilities added here are implicitly allowed, and need not be included in the allowedCapabilities list.
+ */
+ 'defaultAddCapabilities'?: Array;
+ /**
+ * defaultAllowPrivilegeEscalation controls the default setting for whether a process can gain more privileges than its parent process.
+ */
+ 'defaultAllowPrivilegeEscalation'?: boolean;
+ /**
+ * forbiddenSysctls is a list of explicitly forbidden sysctls, defaults to none. Each entry is either a plain sysctl name or ends in \"*\" in which case it is considered as a prefix of forbidden sysctls. Single * means all sysctls are forbidden. Examples: e.g. \"foo/_*\" forbids \"foo/bar\", \"foo/baz\", etc. e.g. \"foo.*\" forbids \"foo.bar\", \"foo.baz\", etc.
+ */
+ 'forbiddenSysctls'?: Array;
+ 'fsGroup': ExtensionsV1beta1FSGroupStrategyOptions;
+ /**
+ * hostIPC determines if the policy allows the use of HostIPC in the pod spec.
+ */
+ 'hostIPC'?: boolean;
+ /**
+ * hostNetwork determines if the policy allows the use of HostNetwork in the pod spec.
+ */
+ 'hostNetwork'?: boolean;
+ /**
+ * hostPID determines if the policy allows the use of HostPID in the pod spec.
+ */
+ 'hostPID'?: boolean;
+ /**
+ * hostPorts determines which host port ranges are allowed to be exposed.
+ */
+ 'hostPorts'?: Array;
+ /**
+ * privileged determines if a pod can request to be run as privileged.
+ */
+ 'privileged'?: boolean;
+ /**
+ * readOnlyRootFilesystem when set to true will force containers to run with a read only root file system. If the container specifically requests to run with a non-read only root file system the PSP should deny the pod. If set to false the container may run with a read only root file system if it wishes but it will not be forced to.
+ */
+ 'readOnlyRootFilesystem'?: boolean;
+ /**
+ * requiredDropCapabilities are the capabilities that will be dropped from the container. These are required to be dropped and cannot be added.
+ */
+ 'requiredDropCapabilities'?: Array;
+ 'runAsGroup'?: ExtensionsV1beta1RunAsGroupStrategyOptions;
+ 'runAsUser': ExtensionsV1beta1RunAsUserStrategyOptions;
+ 'runtimeClass'?: ExtensionsV1beta1RuntimeClassStrategyOptions;
+ 'seLinux': ExtensionsV1beta1SELinuxStrategyOptions;
+ 'supplementalGroups': ExtensionsV1beta1SupplementalGroupsStrategyOptions;
+ /**
+ * volumes is a white list of allowed volume plugins. Empty indicates that no volumes may be used. To allow all volumes you may use \'*\'.
+ */
+ 'volumes'?: Array;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/extensionsV1beta1PodSecurityPolicySpec.js b/dist/gen/model/extensionsV1beta1PodSecurityPolicySpec.js
new file mode 100644
index 0000000000..eaaf146bb2
--- /dev/null
+++ b/dist/gen/model/extensionsV1beta1PodSecurityPolicySpec.js
@@ -0,0 +1,146 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* PodSecurityPolicySpec defines the policy enforced. Deprecated: use PodSecurityPolicySpec from policy API Group instead.
+*/
+class ExtensionsV1beta1PodSecurityPolicySpec {
+ static getAttributeTypeMap() {
+ return ExtensionsV1beta1PodSecurityPolicySpec.attributeTypeMap;
+ }
+}
+ExtensionsV1beta1PodSecurityPolicySpec.discriminator = undefined;
+ExtensionsV1beta1PodSecurityPolicySpec.attributeTypeMap = [
+ {
+ "name": "allowPrivilegeEscalation",
+ "baseName": "allowPrivilegeEscalation",
+ "type": "boolean"
+ },
+ {
+ "name": "allowedCSIDrivers",
+ "baseName": "allowedCSIDrivers",
+ "type": "Array"
+ },
+ {
+ "name": "allowedCapabilities",
+ "baseName": "allowedCapabilities",
+ "type": "Array"
+ },
+ {
+ "name": "allowedFlexVolumes",
+ "baseName": "allowedFlexVolumes",
+ "type": "Array"
+ },
+ {
+ "name": "allowedHostPaths",
+ "baseName": "allowedHostPaths",
+ "type": "Array"
+ },
+ {
+ "name": "allowedProcMountTypes",
+ "baseName": "allowedProcMountTypes",
+ "type": "Array"
+ },
+ {
+ "name": "allowedUnsafeSysctls",
+ "baseName": "allowedUnsafeSysctls",
+ "type": "Array"
+ },
+ {
+ "name": "defaultAddCapabilities",
+ "baseName": "defaultAddCapabilities",
+ "type": "Array"
+ },
+ {
+ "name": "defaultAllowPrivilegeEscalation",
+ "baseName": "defaultAllowPrivilegeEscalation",
+ "type": "boolean"
+ },
+ {
+ "name": "forbiddenSysctls",
+ "baseName": "forbiddenSysctls",
+ "type": "Array"
+ },
+ {
+ "name": "fsGroup",
+ "baseName": "fsGroup",
+ "type": "ExtensionsV1beta1FSGroupStrategyOptions"
+ },
+ {
+ "name": "hostIPC",
+ "baseName": "hostIPC",
+ "type": "boolean"
+ },
+ {
+ "name": "hostNetwork",
+ "baseName": "hostNetwork",
+ "type": "boolean"
+ },
+ {
+ "name": "hostPID",
+ "baseName": "hostPID",
+ "type": "boolean"
+ },
+ {
+ "name": "hostPorts",
+ "baseName": "hostPorts",
+ "type": "Array"
+ },
+ {
+ "name": "privileged",
+ "baseName": "privileged",
+ "type": "boolean"
+ },
+ {
+ "name": "readOnlyRootFilesystem",
+ "baseName": "readOnlyRootFilesystem",
+ "type": "boolean"
+ },
+ {
+ "name": "requiredDropCapabilities",
+ "baseName": "requiredDropCapabilities",
+ "type": "Array"
+ },
+ {
+ "name": "runAsGroup",
+ "baseName": "runAsGroup",
+ "type": "ExtensionsV1beta1RunAsGroupStrategyOptions"
+ },
+ {
+ "name": "runAsUser",
+ "baseName": "runAsUser",
+ "type": "ExtensionsV1beta1RunAsUserStrategyOptions"
+ },
+ {
+ "name": "runtimeClass",
+ "baseName": "runtimeClass",
+ "type": "ExtensionsV1beta1RuntimeClassStrategyOptions"
+ },
+ {
+ "name": "seLinux",
+ "baseName": "seLinux",
+ "type": "ExtensionsV1beta1SELinuxStrategyOptions"
+ },
+ {
+ "name": "supplementalGroups",
+ "baseName": "supplementalGroups",
+ "type": "ExtensionsV1beta1SupplementalGroupsStrategyOptions"
+ },
+ {
+ "name": "volumes",
+ "baseName": "volumes",
+ "type": "Array"
+ }
+];
+exports.ExtensionsV1beta1PodSecurityPolicySpec = ExtensionsV1beta1PodSecurityPolicySpec;
+//# sourceMappingURL=extensionsV1beta1PodSecurityPolicySpec.js.map
\ No newline at end of file
diff --git a/dist/gen/model/extensionsV1beta1PodSecurityPolicySpec.js.map b/dist/gen/model/extensionsV1beta1PodSecurityPolicySpec.js.map
new file mode 100644
index 0000000000..84bfe3cf89
--- /dev/null
+++ b/dist/gen/model/extensionsV1beta1PodSecurityPolicySpec.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"extensionsV1beta1PodSecurityPolicySpec.js","sourceRoot":"","sources":["../../../src/gen/model/extensionsV1beta1PodSecurityPolicySpec.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAaH;;EAEE;AACF,MAAa,sCAAsC;IA4M/C,MAAM,CAAC,mBAAmB;QACtB,OAAO,sCAAsC,CAAC,gBAAgB,CAAC;IACnE,CAAC;;AA9HM,oDAAa,GAAuB,SAAS,CAAC;AAE9C,uDAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,0BAA0B;QAClC,UAAU,EAAE,0BAA0B;QACtC,MAAM,EAAE,SAAS;KACpB;IACD;QACI,MAAM,EAAE,mBAAmB;QAC3B,UAAU,EAAE,mBAAmB;QAC/B,MAAM,EAAE,0CAA0C;KACrD;IACD;QACI,MAAM,EAAE,qBAAqB;QAC7B,UAAU,EAAE,qBAAqB;QACjC,MAAM,EAAE,eAAe;KAC1B;IACD;QACI,MAAM,EAAE,oBAAoB;QAC5B,UAAU,EAAE,oBAAoB;QAChC,MAAM,EAAE,2CAA2C;KACtD;IACD;QACI,MAAM,EAAE,kBAAkB;QAC1B,UAAU,EAAE,kBAAkB;QAC9B,MAAM,EAAE,yCAAyC;KACpD;IACD;QACI,MAAM,EAAE,uBAAuB;QAC/B,UAAU,EAAE,uBAAuB;QACnC,MAAM,EAAE,eAAe;KAC1B;IACD;QACI,MAAM,EAAE,sBAAsB;QAC9B,UAAU,EAAE,sBAAsB;QAClC,MAAM,EAAE,eAAe;KAC1B;IACD;QACI,MAAM,EAAE,wBAAwB;QAChC,UAAU,EAAE,wBAAwB;QACpC,MAAM,EAAE,eAAe;KAC1B;IACD;QACI,MAAM,EAAE,iCAAiC;QACzC,UAAU,EAAE,iCAAiC;QAC7C,MAAM,EAAE,SAAS;KACpB;IACD;QACI,MAAM,EAAE,kBAAkB;QAC1B,UAAU,EAAE,kBAAkB;QAC9B,MAAM,EAAE,eAAe;KAC1B;IACD;QACI,MAAM,EAAE,SAAS;QACjB,UAAU,EAAE,SAAS;QACrB,MAAM,EAAE,yCAAyC;KACpD;IACD;QACI,MAAM,EAAE,SAAS;QACjB,UAAU,EAAE,SAAS;QACrB,MAAM,EAAE,SAAS;KACpB;IACD;QACI,MAAM,EAAE,aAAa;QACrB,UAAU,EAAE,aAAa;QACzB,MAAM,EAAE,SAAS;KACpB;IACD;QACI,MAAM,EAAE,SAAS;QACjB,UAAU,EAAE,SAAS;QACrB,MAAM,EAAE,SAAS;KACpB;IACD;QACI,MAAM,EAAE,WAAW;QACnB,UAAU,EAAE,WAAW;QACvB,MAAM,EAAE,uCAAuC;KAClD;IACD;QACI,MAAM,EAAE,YAAY;QACpB,UAAU,EAAE,YAAY;QACxB,MAAM,EAAE,SAAS;KACpB;IACD;QACI,MAAM,EAAE,wBAAwB;QAChC,UAAU,EAAE,wBAAwB;QACpC,MAAM,EAAE,SAAS;KACpB;IACD;QACI,MAAM,EAAE,0BAA0B;QAClC,UAAU,EAAE,0BAA0B;QACtC,MAAM,EAAE,eAAe;KAC1B;IACD;QACI,MAAM,EAAE,YAAY;QACpB,UAAU,EAAE,YAAY;QACxB,MAAM,EAAE,4CAA4C;KACvD;IACD;QACI,MAAM,EAAE,WAAW;QACnB,UAAU,EAAE,WAAW;QACvB,MAAM,EAAE,2CAA2C;KACtD;IACD;QACI,MAAM,EAAE,cAAc;QACtB,UAAU,EAAE,cAAc;QAC1B,MAAM,EAAE,8CAA8C;KACzD;IACD;QACI,MAAM,EAAE,SAAS;QACjB,UAAU,EAAE,SAAS;QACrB,MAAM,EAAE,yCAAyC;KACpD;IACD;QACI,MAAM,EAAE,oBAAoB;QAC5B,UAAU,EAAE,oBAAoB;QAChC,MAAM,EAAE,oDAAoD;KAC/D;IACD;QACI,MAAM,EAAE,SAAS;QACjB,UAAU,EAAE,SAAS;QACrB,MAAM,EAAE,eAAe;KAC1B;CAAK,CAAC;AA1Mf,wFA+MC"}
\ No newline at end of file
diff --git a/dist/gen/model/extensionsV1beta1RollbackConfig.d.ts b/dist/gen/model/extensionsV1beta1RollbackConfig.d.ts
new file mode 100644
index 0000000000..aa6a828ec6
--- /dev/null
+++ b/dist/gen/model/extensionsV1beta1RollbackConfig.d.ts
@@ -0,0 +1,31 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+/**
+* DEPRECATED.
+*/
+export declare class ExtensionsV1beta1RollbackConfig {
+ /**
+ * The revision to rollback to. If set to 0, rollback to the last revision.
+ */
+ 'revision'?: number;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/extensionsV1beta1RollbackConfig.js b/dist/gen/model/extensionsV1beta1RollbackConfig.js
new file mode 100644
index 0000000000..33e7549a19
--- /dev/null
+++ b/dist/gen/model/extensionsV1beta1RollbackConfig.js
@@ -0,0 +1,31 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* DEPRECATED.
+*/
+class ExtensionsV1beta1RollbackConfig {
+ static getAttributeTypeMap() {
+ return ExtensionsV1beta1RollbackConfig.attributeTypeMap;
+ }
+}
+ExtensionsV1beta1RollbackConfig.discriminator = undefined;
+ExtensionsV1beta1RollbackConfig.attributeTypeMap = [
+ {
+ "name": "revision",
+ "baseName": "revision",
+ "type": "number"
+ }
+];
+exports.ExtensionsV1beta1RollbackConfig = ExtensionsV1beta1RollbackConfig;
+//# sourceMappingURL=extensionsV1beta1RollbackConfig.js.map
\ No newline at end of file
diff --git a/dist/gen/model/extensionsV1beta1RollbackConfig.js.map b/dist/gen/model/extensionsV1beta1RollbackConfig.js.map
new file mode 100644
index 0000000000..3e16e4e179
--- /dev/null
+++ b/dist/gen/model/extensionsV1beta1RollbackConfig.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"extensionsV1beta1RollbackConfig.js","sourceRoot":"","sources":["../../../src/gen/model/extensionsV1beta1RollbackConfig.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAGH;;EAEE;AACF,MAAa,+BAA+B;IAexC,MAAM,CAAC,mBAAmB;QACtB,OAAO,+BAA+B,CAAC,gBAAgB,CAAC;IAC5D,CAAC;;AAXM,6CAAa,GAAuB,SAAS,CAAC;AAE9C,gDAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,UAAU;QAClB,UAAU,EAAE,UAAU;QACtB,MAAM,EAAE,QAAQ;KACnB;CAAK,CAAC;AAbf,0EAkBC"}
\ No newline at end of file
diff --git a/dist/gen/model/extensionsV1beta1RollingUpdateDeployment.d.ts b/dist/gen/model/extensionsV1beta1RollingUpdateDeployment.d.ts
new file mode 100644
index 0000000000..24ccb50866
--- /dev/null
+++ b/dist/gen/model/extensionsV1beta1RollingUpdateDeployment.d.ts
@@ -0,0 +1,35 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+/**
+* Spec to control the desired behavior of rolling update.
+*/
+export declare class ExtensionsV1beta1RollingUpdateDeployment {
+ /**
+ * The maximum number of pods that can be scheduled above the desired number of pods. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). This can not be 0 if MaxUnavailable is 0. Absolute number is calculated from percentage by rounding up. By default, a value of 1 is used. Example: when this is set to 30%, the new RC can be scaled up immediately when the rolling update starts, such that the total number of old and new pods do not exceed 130% of desired pods. Once old pods have been killed, new RC can be scaled up further, ensuring that total number of pods running at any time during the update is at most 130% of desired pods.
+ */
+ 'maxSurge'?: object;
+ /**
+ * The maximum number of pods that can be unavailable during the update. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). Absolute number is calculated from percentage by rounding down. This can not be 0 if MaxSurge is 0. By default, a fixed value of 1 is used. Example: when this is set to 30%, the old RC can be scaled down to 70% of desired pods immediately when the rolling update starts. Once new pods are ready, old RC can be scaled down further, followed by scaling up the new RC, ensuring that the total number of pods available at all times during the update is at least 70% of desired pods.
+ */
+ 'maxUnavailable'?: object;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/extensionsV1beta1RollingUpdateDeployment.js b/dist/gen/model/extensionsV1beta1RollingUpdateDeployment.js
new file mode 100644
index 0000000000..f8e180019e
--- /dev/null
+++ b/dist/gen/model/extensionsV1beta1RollingUpdateDeployment.js
@@ -0,0 +1,36 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* Spec to control the desired behavior of rolling update.
+*/
+class ExtensionsV1beta1RollingUpdateDeployment {
+ static getAttributeTypeMap() {
+ return ExtensionsV1beta1RollingUpdateDeployment.attributeTypeMap;
+ }
+}
+ExtensionsV1beta1RollingUpdateDeployment.discriminator = undefined;
+ExtensionsV1beta1RollingUpdateDeployment.attributeTypeMap = [
+ {
+ "name": "maxSurge",
+ "baseName": "maxSurge",
+ "type": "object"
+ },
+ {
+ "name": "maxUnavailable",
+ "baseName": "maxUnavailable",
+ "type": "object"
+ }
+];
+exports.ExtensionsV1beta1RollingUpdateDeployment = ExtensionsV1beta1RollingUpdateDeployment;
+//# sourceMappingURL=extensionsV1beta1RollingUpdateDeployment.js.map
\ No newline at end of file
diff --git a/dist/gen/model/extensionsV1beta1RollingUpdateDeployment.js.map b/dist/gen/model/extensionsV1beta1RollingUpdateDeployment.js.map
new file mode 100644
index 0000000000..b2c347274e
--- /dev/null
+++ b/dist/gen/model/extensionsV1beta1RollingUpdateDeployment.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"extensionsV1beta1RollingUpdateDeployment.js","sourceRoot":"","sources":["../../../src/gen/model/extensionsV1beta1RollingUpdateDeployment.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAGH;;EAEE;AACF,MAAa,wCAAwC;IAwBjD,MAAM,CAAC,mBAAmB;QACtB,OAAO,wCAAwC,CAAC,gBAAgB,CAAC;IACrE,CAAC;;AAhBM,sDAAa,GAAuB,SAAS,CAAC;AAE9C,yDAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,UAAU;QAClB,UAAU,EAAE,UAAU;QACtB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,gBAAgB;QACxB,UAAU,EAAE,gBAAgB;QAC5B,MAAM,EAAE,QAAQ;KACnB;CAAK,CAAC;AAtBf,4FA2BC"}
\ No newline at end of file
diff --git a/dist/gen/model/extensionsV1beta1RunAsGroupStrategyOptions.d.ts b/dist/gen/model/extensionsV1beta1RunAsGroupStrategyOptions.d.ts
new file mode 100644
index 0000000000..902a7eb5ea
--- /dev/null
+++ b/dist/gen/model/extensionsV1beta1RunAsGroupStrategyOptions.d.ts
@@ -0,0 +1,36 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+import { ExtensionsV1beta1IDRange } from './extensionsV1beta1IDRange';
+/**
+* RunAsGroupStrategyOptions defines the strategy type and any options used to create the strategy. Deprecated: use RunAsGroupStrategyOptions from policy API Group instead.
+*/
+export declare class ExtensionsV1beta1RunAsGroupStrategyOptions {
+ /**
+ * ranges are the allowed ranges of gids that may be used. If you would like to force a single gid then supply a single range with the same start and end. Required for MustRunAs.
+ */
+ 'ranges'?: Array;
+ /**
+ * rule is the strategy that will dictate the allowable RunAsGroup values that may be set.
+ */
+ 'rule': string;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/extensionsV1beta1RunAsGroupStrategyOptions.js b/dist/gen/model/extensionsV1beta1RunAsGroupStrategyOptions.js
new file mode 100644
index 0000000000..bad2e3fb8c
--- /dev/null
+++ b/dist/gen/model/extensionsV1beta1RunAsGroupStrategyOptions.js
@@ -0,0 +1,36 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* RunAsGroupStrategyOptions defines the strategy type and any options used to create the strategy. Deprecated: use RunAsGroupStrategyOptions from policy API Group instead.
+*/
+class ExtensionsV1beta1RunAsGroupStrategyOptions {
+ static getAttributeTypeMap() {
+ return ExtensionsV1beta1RunAsGroupStrategyOptions.attributeTypeMap;
+ }
+}
+ExtensionsV1beta1RunAsGroupStrategyOptions.discriminator = undefined;
+ExtensionsV1beta1RunAsGroupStrategyOptions.attributeTypeMap = [
+ {
+ "name": "ranges",
+ "baseName": "ranges",
+ "type": "Array"
+ },
+ {
+ "name": "rule",
+ "baseName": "rule",
+ "type": "string"
+ }
+];
+exports.ExtensionsV1beta1RunAsGroupStrategyOptions = ExtensionsV1beta1RunAsGroupStrategyOptions;
+//# sourceMappingURL=extensionsV1beta1RunAsGroupStrategyOptions.js.map
\ No newline at end of file
diff --git a/dist/gen/model/extensionsV1beta1RunAsGroupStrategyOptions.js.map b/dist/gen/model/extensionsV1beta1RunAsGroupStrategyOptions.js.map
new file mode 100644
index 0000000000..99e11ecdd7
--- /dev/null
+++ b/dist/gen/model/extensionsV1beta1RunAsGroupStrategyOptions.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"extensionsV1beta1RunAsGroupStrategyOptions.js","sourceRoot":"","sources":["../../../src/gen/model/extensionsV1beta1RunAsGroupStrategyOptions.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAIH;;EAEE;AACF,MAAa,0CAA0C;IAwBnD,MAAM,CAAC,mBAAmB;QACtB,OAAO,0CAA0C,CAAC,gBAAgB,CAAC;IACvE,CAAC;;AAhBM,wDAAa,GAAuB,SAAS,CAAC;AAE9C,2DAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,QAAQ;QAChB,UAAU,EAAE,QAAQ;QACpB,MAAM,EAAE,iCAAiC;KAC5C;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,QAAQ;KACnB;CAAK,CAAC;AAtBf,gGA2BC"}
\ No newline at end of file
diff --git a/dist/gen/model/extensionsV1beta1RunAsUserStrategyOptions.d.ts b/dist/gen/model/extensionsV1beta1RunAsUserStrategyOptions.d.ts
new file mode 100644
index 0000000000..0b17eba6b0
--- /dev/null
+++ b/dist/gen/model/extensionsV1beta1RunAsUserStrategyOptions.d.ts
@@ -0,0 +1,36 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+import { ExtensionsV1beta1IDRange } from './extensionsV1beta1IDRange';
+/**
+* RunAsUserStrategyOptions defines the strategy type and any options used to create the strategy. Deprecated: use RunAsUserStrategyOptions from policy API Group instead.
+*/
+export declare class ExtensionsV1beta1RunAsUserStrategyOptions {
+ /**
+ * ranges are the allowed ranges of uids that may be used. If you would like to force a single uid then supply a single range with the same start and end. Required for MustRunAs.
+ */
+ 'ranges'?: Array;
+ /**
+ * rule is the strategy that will dictate the allowable RunAsUser values that may be set.
+ */
+ 'rule': string;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/extensionsV1beta1RunAsUserStrategyOptions.js b/dist/gen/model/extensionsV1beta1RunAsUserStrategyOptions.js
new file mode 100644
index 0000000000..3a450f48a2
--- /dev/null
+++ b/dist/gen/model/extensionsV1beta1RunAsUserStrategyOptions.js
@@ -0,0 +1,36 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* RunAsUserStrategyOptions defines the strategy type and any options used to create the strategy. Deprecated: use RunAsUserStrategyOptions from policy API Group instead.
+*/
+class ExtensionsV1beta1RunAsUserStrategyOptions {
+ static getAttributeTypeMap() {
+ return ExtensionsV1beta1RunAsUserStrategyOptions.attributeTypeMap;
+ }
+}
+ExtensionsV1beta1RunAsUserStrategyOptions.discriminator = undefined;
+ExtensionsV1beta1RunAsUserStrategyOptions.attributeTypeMap = [
+ {
+ "name": "ranges",
+ "baseName": "ranges",
+ "type": "Array"
+ },
+ {
+ "name": "rule",
+ "baseName": "rule",
+ "type": "string"
+ }
+];
+exports.ExtensionsV1beta1RunAsUserStrategyOptions = ExtensionsV1beta1RunAsUserStrategyOptions;
+//# sourceMappingURL=extensionsV1beta1RunAsUserStrategyOptions.js.map
\ No newline at end of file
diff --git a/dist/gen/model/extensionsV1beta1RunAsUserStrategyOptions.js.map b/dist/gen/model/extensionsV1beta1RunAsUserStrategyOptions.js.map
new file mode 100644
index 0000000000..e533387294
--- /dev/null
+++ b/dist/gen/model/extensionsV1beta1RunAsUserStrategyOptions.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"extensionsV1beta1RunAsUserStrategyOptions.js","sourceRoot":"","sources":["../../../src/gen/model/extensionsV1beta1RunAsUserStrategyOptions.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAIH;;EAEE;AACF,MAAa,yCAAyC;IAwBlD,MAAM,CAAC,mBAAmB;QACtB,OAAO,yCAAyC,CAAC,gBAAgB,CAAC;IACtE,CAAC;;AAhBM,uDAAa,GAAuB,SAAS,CAAC;AAE9C,0DAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,QAAQ;QAChB,UAAU,EAAE,QAAQ;QACpB,MAAM,EAAE,iCAAiC;KAC5C;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,QAAQ;KACnB;CAAK,CAAC;AAtBf,8FA2BC"}
\ No newline at end of file
diff --git a/dist/gen/model/extensionsV1beta1RuntimeClassStrategyOptions.d.ts b/dist/gen/model/extensionsV1beta1RuntimeClassStrategyOptions.d.ts
new file mode 100644
index 0000000000..4857ec26f1
--- /dev/null
+++ b/dist/gen/model/extensionsV1beta1RuntimeClassStrategyOptions.d.ts
@@ -0,0 +1,35 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+/**
+* RuntimeClassStrategyOptions define the strategy that will dictate the allowable RuntimeClasses for a pod.
+*/
+export declare class ExtensionsV1beta1RuntimeClassStrategyOptions {
+ /**
+ * allowedRuntimeClassNames is a whitelist of RuntimeClass names that may be specified on a pod. A value of \"*\" means that any RuntimeClass name is allowed, and must be the only item in the list. An empty list requires the RuntimeClassName field to be unset.
+ */
+ 'allowedRuntimeClassNames': Array;
+ /**
+ * defaultRuntimeClassName is the default RuntimeClassName to set on the pod. The default MUST be allowed by the allowedRuntimeClassNames list. A value of nil does not mutate the Pod.
+ */
+ 'defaultRuntimeClassName'?: string;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/extensionsV1beta1RuntimeClassStrategyOptions.js b/dist/gen/model/extensionsV1beta1RuntimeClassStrategyOptions.js
new file mode 100644
index 0000000000..caf4c40c56
--- /dev/null
+++ b/dist/gen/model/extensionsV1beta1RuntimeClassStrategyOptions.js
@@ -0,0 +1,36 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* RuntimeClassStrategyOptions define the strategy that will dictate the allowable RuntimeClasses for a pod.
+*/
+class ExtensionsV1beta1RuntimeClassStrategyOptions {
+ static getAttributeTypeMap() {
+ return ExtensionsV1beta1RuntimeClassStrategyOptions.attributeTypeMap;
+ }
+}
+ExtensionsV1beta1RuntimeClassStrategyOptions.discriminator = undefined;
+ExtensionsV1beta1RuntimeClassStrategyOptions.attributeTypeMap = [
+ {
+ "name": "allowedRuntimeClassNames",
+ "baseName": "allowedRuntimeClassNames",
+ "type": "Array"
+ },
+ {
+ "name": "defaultRuntimeClassName",
+ "baseName": "defaultRuntimeClassName",
+ "type": "string"
+ }
+];
+exports.ExtensionsV1beta1RuntimeClassStrategyOptions = ExtensionsV1beta1RuntimeClassStrategyOptions;
+//# sourceMappingURL=extensionsV1beta1RuntimeClassStrategyOptions.js.map
\ No newline at end of file
diff --git a/dist/gen/model/extensionsV1beta1RuntimeClassStrategyOptions.js.map b/dist/gen/model/extensionsV1beta1RuntimeClassStrategyOptions.js.map
new file mode 100644
index 0000000000..4eae26adc1
--- /dev/null
+++ b/dist/gen/model/extensionsV1beta1RuntimeClassStrategyOptions.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"extensionsV1beta1RuntimeClassStrategyOptions.js","sourceRoot":"","sources":["../../../src/gen/model/extensionsV1beta1RuntimeClassStrategyOptions.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAGH;;EAEE;AACF,MAAa,4CAA4C;IAwBrD,MAAM,CAAC,mBAAmB;QACtB,OAAO,4CAA4C,CAAC,gBAAgB,CAAC;IACzE,CAAC;;AAhBM,0DAAa,GAAuB,SAAS,CAAC;AAE9C,6DAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,0BAA0B;QAClC,UAAU,EAAE,0BAA0B;QACtC,MAAM,EAAE,eAAe;KAC1B;IACD;QACI,MAAM,EAAE,yBAAyB;QACjC,UAAU,EAAE,yBAAyB;QACrC,MAAM,EAAE,QAAQ;KACnB;CAAK,CAAC;AAtBf,oGA2BC"}
\ No newline at end of file
diff --git a/dist/gen/model/extensionsV1beta1SELinuxStrategyOptions.d.ts b/dist/gen/model/extensionsV1beta1SELinuxStrategyOptions.d.ts
new file mode 100644
index 0000000000..71644b55d4
--- /dev/null
+++ b/dist/gen/model/extensionsV1beta1SELinuxStrategyOptions.d.ts
@@ -0,0 +1,33 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+import { V1SELinuxOptions } from './v1SELinuxOptions';
+/**
+* SELinuxStrategyOptions defines the strategy type and any options used to create the strategy. Deprecated: use SELinuxStrategyOptions from policy API Group instead.
+*/
+export declare class ExtensionsV1beta1SELinuxStrategyOptions {
+ /**
+ * rule is the strategy that will dictate the allowable labels that may be set.
+ */
+ 'rule': string;
+ 'seLinuxOptions'?: V1SELinuxOptions;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/extensionsV1beta1SELinuxStrategyOptions.js b/dist/gen/model/extensionsV1beta1SELinuxStrategyOptions.js
new file mode 100644
index 0000000000..0c0e97190c
--- /dev/null
+++ b/dist/gen/model/extensionsV1beta1SELinuxStrategyOptions.js
@@ -0,0 +1,36 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* SELinuxStrategyOptions defines the strategy type and any options used to create the strategy. Deprecated: use SELinuxStrategyOptions from policy API Group instead.
+*/
+class ExtensionsV1beta1SELinuxStrategyOptions {
+ static getAttributeTypeMap() {
+ return ExtensionsV1beta1SELinuxStrategyOptions.attributeTypeMap;
+ }
+}
+ExtensionsV1beta1SELinuxStrategyOptions.discriminator = undefined;
+ExtensionsV1beta1SELinuxStrategyOptions.attributeTypeMap = [
+ {
+ "name": "rule",
+ "baseName": "rule",
+ "type": "string"
+ },
+ {
+ "name": "seLinuxOptions",
+ "baseName": "seLinuxOptions",
+ "type": "V1SELinuxOptions"
+ }
+];
+exports.ExtensionsV1beta1SELinuxStrategyOptions = ExtensionsV1beta1SELinuxStrategyOptions;
+//# sourceMappingURL=extensionsV1beta1SELinuxStrategyOptions.js.map
\ No newline at end of file
diff --git a/dist/gen/model/extensionsV1beta1SELinuxStrategyOptions.js.map b/dist/gen/model/extensionsV1beta1SELinuxStrategyOptions.js.map
new file mode 100644
index 0000000000..fb7c1666c1
--- /dev/null
+++ b/dist/gen/model/extensionsV1beta1SELinuxStrategyOptions.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"extensionsV1beta1SELinuxStrategyOptions.js","sourceRoot":"","sources":["../../../src/gen/model/extensionsV1beta1SELinuxStrategyOptions.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAIH;;EAEE;AACF,MAAa,uCAAuC;IAqBhD,MAAM,CAAC,mBAAmB;QACtB,OAAO,uCAAuC,CAAC,gBAAgB,CAAC;IACpE,CAAC;;AAhBM,qDAAa,GAAuB,SAAS,CAAC;AAE9C,wDAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,gBAAgB;QACxB,UAAU,EAAE,gBAAgB;QAC5B,MAAM,EAAE,kBAAkB;KAC7B;CAAK,CAAC;AAnBf,0FAwBC"}
\ No newline at end of file
diff --git a/dist/gen/model/extensionsV1beta1Scale.d.ts b/dist/gen/model/extensionsV1beta1Scale.d.ts
new file mode 100644
index 0000000000..aea66bfda7
--- /dev/null
+++ b/dist/gen/model/extensionsV1beta1Scale.d.ts
@@ -0,0 +1,41 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+import { ExtensionsV1beta1ScaleSpec } from './extensionsV1beta1ScaleSpec';
+import { ExtensionsV1beta1ScaleStatus } from './extensionsV1beta1ScaleStatus';
+import { V1ObjectMeta } from './v1ObjectMeta';
+/**
+* represents a scaling request for a resource.
+*/
+export declare class ExtensionsV1beta1Scale {
+ /**
+ * APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources
+ */
+ 'apiVersion'?: string;
+ /**
+ * Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
+ */
+ 'kind'?: string;
+ 'metadata'?: V1ObjectMeta;
+ 'spec'?: ExtensionsV1beta1ScaleSpec;
+ 'status'?: ExtensionsV1beta1ScaleStatus;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/extensionsV1beta1Scale.js b/dist/gen/model/extensionsV1beta1Scale.js
new file mode 100644
index 0000000000..050bd5573d
--- /dev/null
+++ b/dist/gen/model/extensionsV1beta1Scale.js
@@ -0,0 +1,51 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* represents a scaling request for a resource.
+*/
+class ExtensionsV1beta1Scale {
+ static getAttributeTypeMap() {
+ return ExtensionsV1beta1Scale.attributeTypeMap;
+ }
+}
+ExtensionsV1beta1Scale.discriminator = undefined;
+ExtensionsV1beta1Scale.attributeTypeMap = [
+ {
+ "name": "apiVersion",
+ "baseName": "apiVersion",
+ "type": "string"
+ },
+ {
+ "name": "kind",
+ "baseName": "kind",
+ "type": "string"
+ },
+ {
+ "name": "metadata",
+ "baseName": "metadata",
+ "type": "V1ObjectMeta"
+ },
+ {
+ "name": "spec",
+ "baseName": "spec",
+ "type": "ExtensionsV1beta1ScaleSpec"
+ },
+ {
+ "name": "status",
+ "baseName": "status",
+ "type": "ExtensionsV1beta1ScaleStatus"
+ }
+];
+exports.ExtensionsV1beta1Scale = ExtensionsV1beta1Scale;
+//# sourceMappingURL=extensionsV1beta1Scale.js.map
\ No newline at end of file
diff --git a/dist/gen/model/extensionsV1beta1Scale.js.map b/dist/gen/model/extensionsV1beta1Scale.js.map
new file mode 100644
index 0000000000..008b181aae
--- /dev/null
+++ b/dist/gen/model/extensionsV1beta1Scale.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"extensionsV1beta1Scale.js","sourceRoot":"","sources":["../../../src/gen/model/extensionsV1beta1Scale.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAMH;;EAEE;AACF,MAAa,sBAAsB;IA0C/B,MAAM,CAAC,mBAAmB;QACtB,OAAO,sBAAsB,CAAC,gBAAgB,CAAC;IACnD,CAAC;;AA/BM,oCAAa,GAAuB,SAAS,CAAC;AAE9C,uCAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,YAAY;QACpB,UAAU,EAAE,YAAY;QACxB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,UAAU;QAClB,UAAU,EAAE,UAAU;QACtB,MAAM,EAAE,cAAc;KACzB;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,4BAA4B;KACvC;IACD;QACI,MAAM,EAAE,QAAQ;QAChB,UAAU,EAAE,QAAQ;QACpB,MAAM,EAAE,8BAA8B;KACzC;CAAK,CAAC;AAxCf,wDA6CC"}
\ No newline at end of file
diff --git a/dist/gen/model/extensionsV1beta1ScaleSpec.d.ts b/dist/gen/model/extensionsV1beta1ScaleSpec.d.ts
new file mode 100644
index 0000000000..1f183a6441
--- /dev/null
+++ b/dist/gen/model/extensionsV1beta1ScaleSpec.d.ts
@@ -0,0 +1,31 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+/**
+* describes the attributes of a scale subresource
+*/
+export declare class ExtensionsV1beta1ScaleSpec {
+ /**
+ * desired number of instances for the scaled object.
+ */
+ 'replicas'?: number;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/extensionsV1beta1ScaleSpec.js b/dist/gen/model/extensionsV1beta1ScaleSpec.js
new file mode 100644
index 0000000000..4f189209a2
--- /dev/null
+++ b/dist/gen/model/extensionsV1beta1ScaleSpec.js
@@ -0,0 +1,31 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* describes the attributes of a scale subresource
+*/
+class ExtensionsV1beta1ScaleSpec {
+ static getAttributeTypeMap() {
+ return ExtensionsV1beta1ScaleSpec.attributeTypeMap;
+ }
+}
+ExtensionsV1beta1ScaleSpec.discriminator = undefined;
+ExtensionsV1beta1ScaleSpec.attributeTypeMap = [
+ {
+ "name": "replicas",
+ "baseName": "replicas",
+ "type": "number"
+ }
+];
+exports.ExtensionsV1beta1ScaleSpec = ExtensionsV1beta1ScaleSpec;
+//# sourceMappingURL=extensionsV1beta1ScaleSpec.js.map
\ No newline at end of file
diff --git a/dist/gen/model/extensionsV1beta1ScaleSpec.js.map b/dist/gen/model/extensionsV1beta1ScaleSpec.js.map
new file mode 100644
index 0000000000..373e28d208
--- /dev/null
+++ b/dist/gen/model/extensionsV1beta1ScaleSpec.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"extensionsV1beta1ScaleSpec.js","sourceRoot":"","sources":["../../../src/gen/model/extensionsV1beta1ScaleSpec.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAGH;;EAEE;AACF,MAAa,0BAA0B;IAenC,MAAM,CAAC,mBAAmB;QACtB,OAAO,0BAA0B,CAAC,gBAAgB,CAAC;IACvD,CAAC;;AAXM,wCAAa,GAAuB,SAAS,CAAC;AAE9C,2CAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,UAAU;QAClB,UAAU,EAAE,UAAU;QACtB,MAAM,EAAE,QAAQ;KACnB;CAAK,CAAC;AAbf,gEAkBC"}
\ No newline at end of file
diff --git a/dist/gen/model/extensionsV1beta1ScaleStatus.d.ts b/dist/gen/model/extensionsV1beta1ScaleStatus.d.ts
new file mode 100644
index 0000000000..977cb412ba
--- /dev/null
+++ b/dist/gen/model/extensionsV1beta1ScaleStatus.d.ts
@@ -0,0 +1,41 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+/**
+* represents the current status of a scale subresource.
+*/
+export declare class ExtensionsV1beta1ScaleStatus {
+ /**
+ * actual number of observed instances of the scaled object.
+ */
+ 'replicas': number;
+ /**
+ * label query over pods that should match the replicas count. More info: http://kubernetes.io/docs/user-guide/labels#label-selectors
+ */
+ 'selector'?: {
+ [key: string]: string;
+ };
+ /**
+ * label selector for pods that should match the replicas count. This is a serializated version of both map-based and more expressive set-based selectors. This is done to avoid introspection in the clients. The string will be in the same format as the query-param syntax. If the target type only supports map-based selectors, both this field and map-based selector field are populated. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors
+ */
+ 'targetSelector'?: string;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/extensionsV1beta1ScaleStatus.js b/dist/gen/model/extensionsV1beta1ScaleStatus.js
new file mode 100644
index 0000000000..2c7fb08d28
--- /dev/null
+++ b/dist/gen/model/extensionsV1beta1ScaleStatus.js
@@ -0,0 +1,41 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* represents the current status of a scale subresource.
+*/
+class ExtensionsV1beta1ScaleStatus {
+ static getAttributeTypeMap() {
+ return ExtensionsV1beta1ScaleStatus.attributeTypeMap;
+ }
+}
+ExtensionsV1beta1ScaleStatus.discriminator = undefined;
+ExtensionsV1beta1ScaleStatus.attributeTypeMap = [
+ {
+ "name": "replicas",
+ "baseName": "replicas",
+ "type": "number"
+ },
+ {
+ "name": "selector",
+ "baseName": "selector",
+ "type": "{ [key: string]: string; }"
+ },
+ {
+ "name": "targetSelector",
+ "baseName": "targetSelector",
+ "type": "string"
+ }
+];
+exports.ExtensionsV1beta1ScaleStatus = ExtensionsV1beta1ScaleStatus;
+//# sourceMappingURL=extensionsV1beta1ScaleStatus.js.map
\ No newline at end of file
diff --git a/dist/gen/model/extensionsV1beta1ScaleStatus.js.map b/dist/gen/model/extensionsV1beta1ScaleStatus.js.map
new file mode 100644
index 0000000000..d50293d09b
--- /dev/null
+++ b/dist/gen/model/extensionsV1beta1ScaleStatus.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"extensionsV1beta1ScaleStatus.js","sourceRoot":"","sources":["../../../src/gen/model/extensionsV1beta1ScaleStatus.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAGH;;EAEE;AACF,MAAa,4BAA4B;IAiCrC,MAAM,CAAC,mBAAmB;QACtB,OAAO,4BAA4B,CAAC,gBAAgB,CAAC;IACzD,CAAC;;AArBM,0CAAa,GAAuB,SAAS,CAAC;AAE9C,6CAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,UAAU;QAClB,UAAU,EAAE,UAAU;QACtB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,UAAU;QAClB,UAAU,EAAE,UAAU;QACtB,MAAM,EAAE,4BAA4B;KACvC;IACD;QACI,MAAM,EAAE,gBAAgB;QACxB,UAAU,EAAE,gBAAgB;QAC5B,MAAM,EAAE,QAAQ;KACnB;CAAK,CAAC;AA/Bf,oEAoCC"}
\ No newline at end of file
diff --git a/dist/gen/model/extensionsV1beta1SupplementalGroupsStrategyOptions.d.ts b/dist/gen/model/extensionsV1beta1SupplementalGroupsStrategyOptions.d.ts
new file mode 100644
index 0000000000..58e5417151
--- /dev/null
+++ b/dist/gen/model/extensionsV1beta1SupplementalGroupsStrategyOptions.d.ts
@@ -0,0 +1,36 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+import { ExtensionsV1beta1IDRange } from './extensionsV1beta1IDRange';
+/**
+* SupplementalGroupsStrategyOptions defines the strategy type and options used to create the strategy. Deprecated: use SupplementalGroupsStrategyOptions from policy API Group instead.
+*/
+export declare class ExtensionsV1beta1SupplementalGroupsStrategyOptions {
+ /**
+ * ranges are the allowed ranges of supplemental groups. If you would like to force a single supplemental group then supply a single range with the same start and end. Required for MustRunAs.
+ */
+ 'ranges'?: Array;
+ /**
+ * rule is the strategy that will dictate what supplemental groups is used in the SecurityContext.
+ */
+ 'rule'?: string;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/extensionsV1beta1SupplementalGroupsStrategyOptions.js b/dist/gen/model/extensionsV1beta1SupplementalGroupsStrategyOptions.js
new file mode 100644
index 0000000000..166aeac804
--- /dev/null
+++ b/dist/gen/model/extensionsV1beta1SupplementalGroupsStrategyOptions.js
@@ -0,0 +1,36 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* SupplementalGroupsStrategyOptions defines the strategy type and options used to create the strategy. Deprecated: use SupplementalGroupsStrategyOptions from policy API Group instead.
+*/
+class ExtensionsV1beta1SupplementalGroupsStrategyOptions {
+ static getAttributeTypeMap() {
+ return ExtensionsV1beta1SupplementalGroupsStrategyOptions.attributeTypeMap;
+ }
+}
+ExtensionsV1beta1SupplementalGroupsStrategyOptions.discriminator = undefined;
+ExtensionsV1beta1SupplementalGroupsStrategyOptions.attributeTypeMap = [
+ {
+ "name": "ranges",
+ "baseName": "ranges",
+ "type": "Array"
+ },
+ {
+ "name": "rule",
+ "baseName": "rule",
+ "type": "string"
+ }
+];
+exports.ExtensionsV1beta1SupplementalGroupsStrategyOptions = ExtensionsV1beta1SupplementalGroupsStrategyOptions;
+//# sourceMappingURL=extensionsV1beta1SupplementalGroupsStrategyOptions.js.map
\ No newline at end of file
diff --git a/dist/gen/model/extensionsV1beta1SupplementalGroupsStrategyOptions.js.map b/dist/gen/model/extensionsV1beta1SupplementalGroupsStrategyOptions.js.map
new file mode 100644
index 0000000000..bb52fa75f5
--- /dev/null
+++ b/dist/gen/model/extensionsV1beta1SupplementalGroupsStrategyOptions.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"extensionsV1beta1SupplementalGroupsStrategyOptions.js","sourceRoot":"","sources":["../../../src/gen/model/extensionsV1beta1SupplementalGroupsStrategyOptions.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAIH;;EAEE;AACF,MAAa,kDAAkD;IAwB3D,MAAM,CAAC,mBAAmB;QACtB,OAAO,kDAAkD,CAAC,gBAAgB,CAAC;IAC/E,CAAC;;AAhBM,gEAAa,GAAuB,SAAS,CAAC;AAE9C,mEAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,QAAQ;QAChB,UAAU,EAAE,QAAQ;QACpB,MAAM,EAAE,iCAAiC;KAC5C;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,QAAQ;KACnB;CAAK,CAAC;AAtBf,gHA2BC"}
\ No newline at end of file
diff --git a/dist/gen/model/models.d.ts b/dist/gen/model/models.d.ts
new file mode 100644
index 0000000000..d743d28bba
--- /dev/null
+++ b/dist/gen/model/models.d.ts
@@ -0,0 +1,637 @@
+export * from './admissionregistrationV1beta1ServiceReference';
+export * from './admissionregistrationV1beta1WebhookClientConfig';
+export * from './apiextensionsV1beta1ServiceReference';
+export * from './apiextensionsV1beta1WebhookClientConfig';
+export * from './apiregistrationV1beta1ServiceReference';
+export * from './appsV1beta1Deployment';
+export * from './appsV1beta1DeploymentCondition';
+export * from './appsV1beta1DeploymentList';
+export * from './appsV1beta1DeploymentRollback';
+export * from './appsV1beta1DeploymentSpec';
+export * from './appsV1beta1DeploymentStatus';
+export * from './appsV1beta1DeploymentStrategy';
+export * from './appsV1beta1RollbackConfig';
+export * from './appsV1beta1RollingUpdateDeployment';
+export * from './appsV1beta1Scale';
+export * from './appsV1beta1ScaleSpec';
+export * from './appsV1beta1ScaleStatus';
+export * from './extensionsV1beta1AllowedCSIDriver';
+export * from './extensionsV1beta1AllowedFlexVolume';
+export * from './extensionsV1beta1AllowedHostPath';
+export * from './extensionsV1beta1Deployment';
+export * from './extensionsV1beta1DeploymentCondition';
+export * from './extensionsV1beta1DeploymentList';
+export * from './extensionsV1beta1DeploymentRollback';
+export * from './extensionsV1beta1DeploymentSpec';
+export * from './extensionsV1beta1DeploymentStatus';
+export * from './extensionsV1beta1DeploymentStrategy';
+export * from './extensionsV1beta1FSGroupStrategyOptions';
+export * from './extensionsV1beta1HTTPIngressPath';
+export * from './extensionsV1beta1HTTPIngressRuleValue';
+export * from './extensionsV1beta1HostPortRange';
+export * from './extensionsV1beta1IDRange';
+export * from './extensionsV1beta1Ingress';
+export * from './extensionsV1beta1IngressBackend';
+export * from './extensionsV1beta1IngressList';
+export * from './extensionsV1beta1IngressRule';
+export * from './extensionsV1beta1IngressSpec';
+export * from './extensionsV1beta1IngressStatus';
+export * from './extensionsV1beta1IngressTLS';
+export * from './extensionsV1beta1PodSecurityPolicy';
+export * from './extensionsV1beta1PodSecurityPolicyList';
+export * from './extensionsV1beta1PodSecurityPolicySpec';
+export * from './extensionsV1beta1RollbackConfig';
+export * from './extensionsV1beta1RollingUpdateDeployment';
+export * from './extensionsV1beta1RunAsGroupStrategyOptions';
+export * from './extensionsV1beta1RunAsUserStrategyOptions';
+export * from './extensionsV1beta1RuntimeClassStrategyOptions';
+export * from './extensionsV1beta1SELinuxStrategyOptions';
+export * from './extensionsV1beta1Scale';
+export * from './extensionsV1beta1ScaleSpec';
+export * from './extensionsV1beta1ScaleStatus';
+export * from './extensionsV1beta1SupplementalGroupsStrategyOptions';
+export * from './networkingV1beta1HTTPIngressPath';
+export * from './networkingV1beta1HTTPIngressRuleValue';
+export * from './networkingV1beta1Ingress';
+export * from './networkingV1beta1IngressBackend';
+export * from './networkingV1beta1IngressList';
+export * from './networkingV1beta1IngressRule';
+export * from './networkingV1beta1IngressSpec';
+export * from './networkingV1beta1IngressStatus';
+export * from './networkingV1beta1IngressTLS';
+export * from './policyV1beta1AllowedCSIDriver';
+export * from './policyV1beta1AllowedFlexVolume';
+export * from './policyV1beta1AllowedHostPath';
+export * from './policyV1beta1FSGroupStrategyOptions';
+export * from './policyV1beta1HostPortRange';
+export * from './policyV1beta1IDRange';
+export * from './policyV1beta1PodSecurityPolicy';
+export * from './policyV1beta1PodSecurityPolicyList';
+export * from './policyV1beta1PodSecurityPolicySpec';
+export * from './policyV1beta1RunAsGroupStrategyOptions';
+export * from './policyV1beta1RunAsUserStrategyOptions';
+export * from './policyV1beta1RuntimeClassStrategyOptions';
+export * from './policyV1beta1SELinuxStrategyOptions';
+export * from './policyV1beta1SupplementalGroupsStrategyOptions';
+export * from './runtimeRawExtension';
+export * from './v1APIGroup';
+export * from './v1APIGroupList';
+export * from './v1APIResource';
+export * from './v1APIResourceList';
+export * from './v1APIService';
+export * from './v1APIServiceCondition';
+export * from './v1APIServiceList';
+export * from './v1APIServiceSpec';
+export * from './v1APIServiceStatus';
+export * from './v1APIVersions';
+export * from './v1AWSElasticBlockStoreVolumeSource';
+export * from './v1Affinity';
+export * from './v1AggregationRule';
+export * from './v1AttachedVolume';
+export * from './v1AzureDiskVolumeSource';
+export * from './v1AzureFilePersistentVolumeSource';
+export * from './v1AzureFileVolumeSource';
+export * from './v1Binding';
+export * from './v1CSIPersistentVolumeSource';
+export * from './v1CSIVolumeSource';
+export * from './v1Capabilities';
+export * from './v1CephFSPersistentVolumeSource';
+export * from './v1CephFSVolumeSource';
+export * from './v1CinderPersistentVolumeSource';
+export * from './v1CinderVolumeSource';
+export * from './v1ClientIPConfig';
+export * from './v1ClusterRole';
+export * from './v1ClusterRoleBinding';
+export * from './v1ClusterRoleBindingList';
+export * from './v1ClusterRoleList';
+export * from './v1ComponentCondition';
+export * from './v1ComponentStatus';
+export * from './v1ComponentStatusList';
+export * from './v1ConfigMap';
+export * from './v1ConfigMapEnvSource';
+export * from './v1ConfigMapKeySelector';
+export * from './v1ConfigMapList';
+export * from './v1ConfigMapNodeConfigSource';
+export * from './v1ConfigMapProjection';
+export * from './v1ConfigMapVolumeSource';
+export * from './v1Container';
+export * from './v1ContainerImage';
+export * from './v1ContainerPort';
+export * from './v1ContainerState';
+export * from './v1ContainerStateRunning';
+export * from './v1ContainerStateTerminated';
+export * from './v1ContainerStateWaiting';
+export * from './v1ContainerStatus';
+export * from './v1ControllerRevision';
+export * from './v1ControllerRevisionList';
+export * from './v1CrossVersionObjectReference';
+export * from './v1DaemonEndpoint';
+export * from './v1DaemonSet';
+export * from './v1DaemonSetCondition';
+export * from './v1DaemonSetList';
+export * from './v1DaemonSetSpec';
+export * from './v1DaemonSetStatus';
+export * from './v1DaemonSetUpdateStrategy';
+export * from './v1DeleteOptions';
+export * from './v1Deployment';
+export * from './v1DeploymentCondition';
+export * from './v1DeploymentList';
+export * from './v1DeploymentSpec';
+export * from './v1DeploymentStatus';
+export * from './v1DeploymentStrategy';
+export * from './v1DownwardAPIProjection';
+export * from './v1DownwardAPIVolumeFile';
+export * from './v1DownwardAPIVolumeSource';
+export * from './v1EmptyDirVolumeSource';
+export * from './v1EndpointAddress';
+export * from './v1EndpointPort';
+export * from './v1EndpointSubset';
+export * from './v1Endpoints';
+export * from './v1EndpointsList';
+export * from './v1EnvFromSource';
+export * from './v1EnvVar';
+export * from './v1EnvVarSource';
+export * from './v1Event';
+export * from './v1EventList';
+export * from './v1EventSeries';
+export * from './v1EventSource';
+export * from './v1ExecAction';
+export * from './v1FCVolumeSource';
+export * from './v1FlexPersistentVolumeSource';
+export * from './v1FlexVolumeSource';
+export * from './v1FlockerVolumeSource';
+export * from './v1GCEPersistentDiskVolumeSource';
+export * from './v1GitRepoVolumeSource';
+export * from './v1GlusterfsPersistentVolumeSource';
+export * from './v1GlusterfsVolumeSource';
+export * from './v1GroupVersionForDiscovery';
+export * from './v1HTTPGetAction';
+export * from './v1HTTPHeader';
+export * from './v1Handler';
+export * from './v1HorizontalPodAutoscaler';
+export * from './v1HorizontalPodAutoscalerList';
+export * from './v1HorizontalPodAutoscalerSpec';
+export * from './v1HorizontalPodAutoscalerStatus';
+export * from './v1HostAlias';
+export * from './v1HostPathVolumeSource';
+export * from './v1IPBlock';
+export * from './v1ISCSIPersistentVolumeSource';
+export * from './v1ISCSIVolumeSource';
+export * from './v1Initializer';
+export * from './v1Initializers';
+export * from './v1Job';
+export * from './v1JobCondition';
+export * from './v1JobList';
+export * from './v1JobSpec';
+export * from './v1JobStatus';
+export * from './v1KeyToPath';
+export * from './v1LabelSelector';
+export * from './v1LabelSelectorRequirement';
+export * from './v1Lease';
+export * from './v1LeaseList';
+export * from './v1LeaseSpec';
+export * from './v1Lifecycle';
+export * from './v1LimitRange';
+export * from './v1LimitRangeItem';
+export * from './v1LimitRangeList';
+export * from './v1LimitRangeSpec';
+export * from './v1ListMeta';
+export * from './v1LoadBalancerIngress';
+export * from './v1LoadBalancerStatus';
+export * from './v1LocalObjectReference';
+export * from './v1LocalSubjectAccessReview';
+export * from './v1LocalVolumeSource';
+export * from './v1ManagedFieldsEntry';
+export * from './v1NFSVolumeSource';
+export * from './v1Namespace';
+export * from './v1NamespaceList';
+export * from './v1NamespaceSpec';
+export * from './v1NamespaceStatus';
+export * from './v1NetworkPolicy';
+export * from './v1NetworkPolicyEgressRule';
+export * from './v1NetworkPolicyIngressRule';
+export * from './v1NetworkPolicyList';
+export * from './v1NetworkPolicyPeer';
+export * from './v1NetworkPolicyPort';
+export * from './v1NetworkPolicySpec';
+export * from './v1Node';
+export * from './v1NodeAddress';
+export * from './v1NodeAffinity';
+export * from './v1NodeCondition';
+export * from './v1NodeConfigSource';
+export * from './v1NodeConfigStatus';
+export * from './v1NodeDaemonEndpoints';
+export * from './v1NodeList';
+export * from './v1NodeSelector';
+export * from './v1NodeSelectorRequirement';
+export * from './v1NodeSelectorTerm';
+export * from './v1NodeSpec';
+export * from './v1NodeStatus';
+export * from './v1NodeSystemInfo';
+export * from './v1NonResourceAttributes';
+export * from './v1NonResourceRule';
+export * from './v1ObjectFieldSelector';
+export * from './v1ObjectMeta';
+export * from './v1ObjectReference';
+export * from './v1OwnerReference';
+export * from './v1PersistentVolume';
+export * from './v1PersistentVolumeClaim';
+export * from './v1PersistentVolumeClaimCondition';
+export * from './v1PersistentVolumeClaimList';
+export * from './v1PersistentVolumeClaimSpec';
+export * from './v1PersistentVolumeClaimStatus';
+export * from './v1PersistentVolumeClaimVolumeSource';
+export * from './v1PersistentVolumeList';
+export * from './v1PersistentVolumeSpec';
+export * from './v1PersistentVolumeStatus';
+export * from './v1PhotonPersistentDiskVolumeSource';
+export * from './v1Pod';
+export * from './v1PodAffinity';
+export * from './v1PodAffinityTerm';
+export * from './v1PodAntiAffinity';
+export * from './v1PodCondition';
+export * from './v1PodDNSConfig';
+export * from './v1PodDNSConfigOption';
+export * from './v1PodList';
+export * from './v1PodReadinessGate';
+export * from './v1PodSecurityContext';
+export * from './v1PodSpec';
+export * from './v1PodStatus';
+export * from './v1PodTemplate';
+export * from './v1PodTemplateList';
+export * from './v1PodTemplateSpec';
+export * from './v1PolicyRule';
+export * from './v1PortworxVolumeSource';
+export * from './v1Preconditions';
+export * from './v1PreferredSchedulingTerm';
+export * from './v1PriorityClass';
+export * from './v1PriorityClassList';
+export * from './v1Probe';
+export * from './v1ProjectedVolumeSource';
+export * from './v1QuobyteVolumeSource';
+export * from './v1RBDPersistentVolumeSource';
+export * from './v1RBDVolumeSource';
+export * from './v1ReplicaSet';
+export * from './v1ReplicaSetCondition';
+export * from './v1ReplicaSetList';
+export * from './v1ReplicaSetSpec';
+export * from './v1ReplicaSetStatus';
+export * from './v1ReplicationController';
+export * from './v1ReplicationControllerCondition';
+export * from './v1ReplicationControllerList';
+export * from './v1ReplicationControllerSpec';
+export * from './v1ReplicationControllerStatus';
+export * from './v1ResourceAttributes';
+export * from './v1ResourceFieldSelector';
+export * from './v1ResourceQuota';
+export * from './v1ResourceQuotaList';
+export * from './v1ResourceQuotaSpec';
+export * from './v1ResourceQuotaStatus';
+export * from './v1ResourceRequirements';
+export * from './v1ResourceRule';
+export * from './v1Role';
+export * from './v1RoleBinding';
+export * from './v1RoleBindingList';
+export * from './v1RoleList';
+export * from './v1RoleRef';
+export * from './v1RollingUpdateDaemonSet';
+export * from './v1RollingUpdateDeployment';
+export * from './v1RollingUpdateStatefulSetStrategy';
+export * from './v1SELinuxOptions';
+export * from './v1Scale';
+export * from './v1ScaleIOPersistentVolumeSource';
+export * from './v1ScaleIOVolumeSource';
+export * from './v1ScaleSpec';
+export * from './v1ScaleStatus';
+export * from './v1ScopeSelector';
+export * from './v1ScopedResourceSelectorRequirement';
+export * from './v1Secret';
+export * from './v1SecretEnvSource';
+export * from './v1SecretKeySelector';
+export * from './v1SecretList';
+export * from './v1SecretProjection';
+export * from './v1SecretReference';
+export * from './v1SecretVolumeSource';
+export * from './v1SecurityContext';
+export * from './v1SelfSubjectAccessReview';
+export * from './v1SelfSubjectAccessReviewSpec';
+export * from './v1SelfSubjectRulesReview';
+export * from './v1SelfSubjectRulesReviewSpec';
+export * from './v1ServerAddressByClientCIDR';
+export * from './v1Service';
+export * from './v1ServiceAccount';
+export * from './v1ServiceAccountList';
+export * from './v1ServiceAccountTokenProjection';
+export * from './v1ServiceList';
+export * from './v1ServicePort';
+export * from './v1ServiceReference';
+export * from './v1ServiceSpec';
+export * from './v1ServiceStatus';
+export * from './v1SessionAffinityConfig';
+export * from './v1StatefulSet';
+export * from './v1StatefulSetCondition';
+export * from './v1StatefulSetList';
+export * from './v1StatefulSetSpec';
+export * from './v1StatefulSetStatus';
+export * from './v1StatefulSetUpdateStrategy';
+export * from './v1Status';
+export * from './v1StatusCause';
+export * from './v1StatusDetails';
+export * from './v1StorageClass';
+export * from './v1StorageClassList';
+export * from './v1StorageOSPersistentVolumeSource';
+export * from './v1StorageOSVolumeSource';
+export * from './v1Subject';
+export * from './v1SubjectAccessReview';
+export * from './v1SubjectAccessReviewSpec';
+export * from './v1SubjectAccessReviewStatus';
+export * from './v1SubjectRulesReviewStatus';
+export * from './v1Sysctl';
+export * from './v1TCPSocketAction';
+export * from './v1Taint';
+export * from './v1TokenReview';
+export * from './v1TokenReviewSpec';
+export * from './v1TokenReviewStatus';
+export * from './v1Toleration';
+export * from './v1TopologySelectorLabelRequirement';
+export * from './v1TopologySelectorTerm';
+export * from './v1TypedLocalObjectReference';
+export * from './v1UserInfo';
+export * from './v1Volume';
+export * from './v1VolumeAttachment';
+export * from './v1VolumeAttachmentList';
+export * from './v1VolumeAttachmentSource';
+export * from './v1VolumeAttachmentSpec';
+export * from './v1VolumeAttachmentStatus';
+export * from './v1VolumeDevice';
+export * from './v1VolumeError';
+export * from './v1VolumeMount';
+export * from './v1VolumeNodeAffinity';
+export * from './v1VolumeProjection';
+export * from './v1VsphereVirtualDiskVolumeSource';
+export * from './v1WatchEvent';
+export * from './v1WeightedPodAffinityTerm';
+export * from './v1WindowsSecurityContextOptions';
+export * from './v1alpha1AggregationRule';
+export * from './v1alpha1AuditSink';
+export * from './v1alpha1AuditSinkList';
+export * from './v1alpha1AuditSinkSpec';
+export * from './v1alpha1ClusterRole';
+export * from './v1alpha1ClusterRoleBinding';
+export * from './v1alpha1ClusterRoleBindingList';
+export * from './v1alpha1ClusterRoleList';
+export * from './v1alpha1PodPreset';
+export * from './v1alpha1PodPresetList';
+export * from './v1alpha1PodPresetSpec';
+export * from './v1alpha1Policy';
+export * from './v1alpha1PolicyRule';
+export * from './v1alpha1PriorityClass';
+export * from './v1alpha1PriorityClassList';
+export * from './v1alpha1Role';
+export * from './v1alpha1RoleBinding';
+export * from './v1alpha1RoleBindingList';
+export * from './v1alpha1RoleList';
+export * from './v1alpha1RoleRef';
+export * from './v1alpha1RuntimeClass';
+export * from './v1alpha1RuntimeClassList';
+export * from './v1alpha1RuntimeClassSpec';
+export * from './v1alpha1ServiceReference';
+export * from './v1alpha1Subject';
+export * from './v1alpha1VolumeAttachment';
+export * from './v1alpha1VolumeAttachmentList';
+export * from './v1alpha1VolumeAttachmentSource';
+export * from './v1alpha1VolumeAttachmentSpec';
+export * from './v1alpha1VolumeAttachmentStatus';
+export * from './v1alpha1VolumeError';
+export * from './v1alpha1Webhook';
+export * from './v1alpha1WebhookClientConfig';
+export * from './v1alpha1WebhookThrottleConfig';
+export * from './v1beta1APIService';
+export * from './v1beta1APIServiceCondition';
+export * from './v1beta1APIServiceList';
+export * from './v1beta1APIServiceSpec';
+export * from './v1beta1APIServiceStatus';
+export * from './v1beta1AggregationRule';
+export * from './v1beta1CSIDriver';
+export * from './v1beta1CSIDriverList';
+export * from './v1beta1CSIDriverSpec';
+export * from './v1beta1CSINode';
+export * from './v1beta1CSINodeDriver';
+export * from './v1beta1CSINodeList';
+export * from './v1beta1CSINodeSpec';
+export * from './v1beta1CertificateSigningRequest';
+export * from './v1beta1CertificateSigningRequestCondition';
+export * from './v1beta1CertificateSigningRequestList';
+export * from './v1beta1CertificateSigningRequestSpec';
+export * from './v1beta1CertificateSigningRequestStatus';
+export * from './v1beta1ClusterRole';
+export * from './v1beta1ClusterRoleBinding';
+export * from './v1beta1ClusterRoleBindingList';
+export * from './v1beta1ClusterRoleList';
+export * from './v1beta1ControllerRevision';
+export * from './v1beta1ControllerRevisionList';
+export * from './v1beta1CronJob';
+export * from './v1beta1CronJobList';
+export * from './v1beta1CronJobSpec';
+export * from './v1beta1CronJobStatus';
+export * from './v1beta1CustomResourceColumnDefinition';
+export * from './v1beta1CustomResourceConversion';
+export * from './v1beta1CustomResourceDefinition';
+export * from './v1beta1CustomResourceDefinitionCondition';
+export * from './v1beta1CustomResourceDefinitionList';
+export * from './v1beta1CustomResourceDefinitionNames';
+export * from './v1beta1CustomResourceDefinitionSpec';
+export * from './v1beta1CustomResourceDefinitionStatus';
+export * from './v1beta1CustomResourceDefinitionVersion';
+export * from './v1beta1CustomResourceSubresourceScale';
+export * from './v1beta1CustomResourceSubresources';
+export * from './v1beta1CustomResourceValidation';
+export * from './v1beta1DaemonSet';
+export * from './v1beta1DaemonSetCondition';
+export * from './v1beta1DaemonSetList';
+export * from './v1beta1DaemonSetSpec';
+export * from './v1beta1DaemonSetStatus';
+export * from './v1beta1DaemonSetUpdateStrategy';
+export * from './v1beta1Event';
+export * from './v1beta1EventList';
+export * from './v1beta1EventSeries';
+export * from './v1beta1Eviction';
+export * from './v1beta1ExternalDocumentation';
+export * from './v1beta1IPBlock';
+export * from './v1beta1JSONSchemaProps';
+export * from './v1beta1JobTemplateSpec';
+export * from './v1beta1Lease';
+export * from './v1beta1LeaseList';
+export * from './v1beta1LeaseSpec';
+export * from './v1beta1LocalSubjectAccessReview';
+export * from './v1beta1MutatingWebhook';
+export * from './v1beta1MutatingWebhookConfiguration';
+export * from './v1beta1MutatingWebhookConfigurationList';
+export * from './v1beta1NetworkPolicy';
+export * from './v1beta1NetworkPolicyEgressRule';
+export * from './v1beta1NetworkPolicyIngressRule';
+export * from './v1beta1NetworkPolicyList';
+export * from './v1beta1NetworkPolicyPeer';
+export * from './v1beta1NetworkPolicyPort';
+export * from './v1beta1NetworkPolicySpec';
+export * from './v1beta1NonResourceAttributes';
+export * from './v1beta1NonResourceRule';
+export * from './v1beta1PodDisruptionBudget';
+export * from './v1beta1PodDisruptionBudgetList';
+export * from './v1beta1PodDisruptionBudgetSpec';
+export * from './v1beta1PodDisruptionBudgetStatus';
+export * from './v1beta1PolicyRule';
+export * from './v1beta1PriorityClass';
+export * from './v1beta1PriorityClassList';
+export * from './v1beta1ReplicaSet';
+export * from './v1beta1ReplicaSetCondition';
+export * from './v1beta1ReplicaSetList';
+export * from './v1beta1ReplicaSetSpec';
+export * from './v1beta1ReplicaSetStatus';
+export * from './v1beta1ResourceAttributes';
+export * from './v1beta1ResourceRule';
+export * from './v1beta1Role';
+export * from './v1beta1RoleBinding';
+export * from './v1beta1RoleBindingList';
+export * from './v1beta1RoleList';
+export * from './v1beta1RoleRef';
+export * from './v1beta1RollingUpdateDaemonSet';
+export * from './v1beta1RollingUpdateStatefulSetStrategy';
+export * from './v1beta1RuleWithOperations';
+export * from './v1beta1RuntimeClass';
+export * from './v1beta1RuntimeClassList';
+export * from './v1beta1SelfSubjectAccessReview';
+export * from './v1beta1SelfSubjectAccessReviewSpec';
+export * from './v1beta1SelfSubjectRulesReview';
+export * from './v1beta1SelfSubjectRulesReviewSpec';
+export * from './v1beta1StatefulSet';
+export * from './v1beta1StatefulSetCondition';
+export * from './v1beta1StatefulSetList';
+export * from './v1beta1StatefulSetSpec';
+export * from './v1beta1StatefulSetStatus';
+export * from './v1beta1StatefulSetUpdateStrategy';
+export * from './v1beta1StorageClass';
+export * from './v1beta1StorageClassList';
+export * from './v1beta1Subject';
+export * from './v1beta1SubjectAccessReview';
+export * from './v1beta1SubjectAccessReviewSpec';
+export * from './v1beta1SubjectAccessReviewStatus';
+export * from './v1beta1SubjectRulesReviewStatus';
+export * from './v1beta1TokenReview';
+export * from './v1beta1TokenReviewSpec';
+export * from './v1beta1TokenReviewStatus';
+export * from './v1beta1UserInfo';
+export * from './v1beta1ValidatingWebhook';
+export * from './v1beta1ValidatingWebhookConfiguration';
+export * from './v1beta1ValidatingWebhookConfigurationList';
+export * from './v1beta1VolumeAttachment';
+export * from './v1beta1VolumeAttachmentList';
+export * from './v1beta1VolumeAttachmentSource';
+export * from './v1beta1VolumeAttachmentSpec';
+export * from './v1beta1VolumeAttachmentStatus';
+export * from './v1beta1VolumeError';
+export * from './v1beta2ControllerRevision';
+export * from './v1beta2ControllerRevisionList';
+export * from './v1beta2DaemonSet';
+export * from './v1beta2DaemonSetCondition';
+export * from './v1beta2DaemonSetList';
+export * from './v1beta2DaemonSetSpec';
+export * from './v1beta2DaemonSetStatus';
+export * from './v1beta2DaemonSetUpdateStrategy';
+export * from './v1beta2Deployment';
+export * from './v1beta2DeploymentCondition';
+export * from './v1beta2DeploymentList';
+export * from './v1beta2DeploymentSpec';
+export * from './v1beta2DeploymentStatus';
+export * from './v1beta2DeploymentStrategy';
+export * from './v1beta2ReplicaSet';
+export * from './v1beta2ReplicaSetCondition';
+export * from './v1beta2ReplicaSetList';
+export * from './v1beta2ReplicaSetSpec';
+export * from './v1beta2ReplicaSetStatus';
+export * from './v1beta2RollingUpdateDaemonSet';
+export * from './v1beta2RollingUpdateDeployment';
+export * from './v1beta2RollingUpdateStatefulSetStrategy';
+export * from './v1beta2Scale';
+export * from './v1beta2ScaleSpec';
+export * from './v1beta2ScaleStatus';
+export * from './v1beta2StatefulSet';
+export * from './v1beta2StatefulSetCondition';
+export * from './v1beta2StatefulSetList';
+export * from './v1beta2StatefulSetSpec';
+export * from './v1beta2StatefulSetStatus';
+export * from './v1beta2StatefulSetUpdateStrategy';
+export * from './v2alpha1CronJob';
+export * from './v2alpha1CronJobList';
+export * from './v2alpha1CronJobSpec';
+export * from './v2alpha1CronJobStatus';
+export * from './v2alpha1JobTemplateSpec';
+export * from './v2beta1CrossVersionObjectReference';
+export * from './v2beta1ExternalMetricSource';
+export * from './v2beta1ExternalMetricStatus';
+export * from './v2beta1HorizontalPodAutoscaler';
+export * from './v2beta1HorizontalPodAutoscalerCondition';
+export * from './v2beta1HorizontalPodAutoscalerList';
+export * from './v2beta1HorizontalPodAutoscalerSpec';
+export * from './v2beta1HorizontalPodAutoscalerStatus';
+export * from './v2beta1MetricSpec';
+export * from './v2beta1MetricStatus';
+export * from './v2beta1ObjectMetricSource';
+export * from './v2beta1ObjectMetricStatus';
+export * from './v2beta1PodsMetricSource';
+export * from './v2beta1PodsMetricStatus';
+export * from './v2beta1ResourceMetricSource';
+export * from './v2beta1ResourceMetricStatus';
+export * from './v2beta2CrossVersionObjectReference';
+export * from './v2beta2ExternalMetricSource';
+export * from './v2beta2ExternalMetricStatus';
+export * from './v2beta2HorizontalPodAutoscaler';
+export * from './v2beta2HorizontalPodAutoscalerCondition';
+export * from './v2beta2HorizontalPodAutoscalerList';
+export * from './v2beta2HorizontalPodAutoscalerSpec';
+export * from './v2beta2HorizontalPodAutoscalerStatus';
+export * from './v2beta2MetricIdentifier';
+export * from './v2beta2MetricSpec';
+export * from './v2beta2MetricStatus';
+export * from './v2beta2MetricTarget';
+export * from './v2beta2MetricValueStatus';
+export * from './v2beta2ObjectMetricSource';
+export * from './v2beta2ObjectMetricStatus';
+export * from './v2beta2PodsMetricSource';
+export * from './v2beta2PodsMetricStatus';
+export * from './v2beta2ResourceMetricSource';
+export * from './v2beta2ResourceMetricStatus';
+export * from './versionInfo';
+import localVarRequest = require('request');
+export declare class ObjectSerializer {
+ static findCorrectType(data: any, expectedType: string): any;
+ static serialize(data: any, type: string): any;
+ static deserialize(data: any, type: string): any;
+}
+export interface Authentication {
+ /**
+ * Apply authentication settings to header and query params.
+ */
+ applyToRequest(requestOptions: localVarRequest.Options): Promise | void;
+}
+export declare class HttpBasicAuth implements Authentication {
+ username: string;
+ password: string;
+ applyToRequest(requestOptions: localVarRequest.Options): void;
+}
+export declare class ApiKeyAuth implements Authentication {
+ private location;
+ private paramName;
+ apiKey: string;
+ constructor(location: string, paramName: string);
+ applyToRequest(requestOptions: localVarRequest.Options): void;
+}
+export declare class OAuth implements Authentication {
+ accessToken: string;
+ applyToRequest(requestOptions: localVarRequest.Options): void;
+}
+export declare class VoidAuth implements Authentication {
+ username: string;
+ password: string;
+ applyToRequest(_: localVarRequest.Options): void;
+}
diff --git a/dist/gen/model/models.js b/dist/gen/model/models.js
new file mode 100644
index 0000000000..a864adc69c
--- /dev/null
+++ b/dist/gen/model/models.js
@@ -0,0 +1,1997 @@
+"use strict";
+Object.defineProperty(exports, "__esModule", { value: true });
+const tslib_1 = require("tslib");
+tslib_1.__exportStar(require("./admissionregistrationV1beta1ServiceReference"), exports);
+tslib_1.__exportStar(require("./admissionregistrationV1beta1WebhookClientConfig"), exports);
+tslib_1.__exportStar(require("./apiextensionsV1beta1ServiceReference"), exports);
+tslib_1.__exportStar(require("./apiextensionsV1beta1WebhookClientConfig"), exports);
+tslib_1.__exportStar(require("./apiregistrationV1beta1ServiceReference"), exports);
+tslib_1.__exportStar(require("./appsV1beta1Deployment"), exports);
+tslib_1.__exportStar(require("./appsV1beta1DeploymentCondition"), exports);
+tslib_1.__exportStar(require("./appsV1beta1DeploymentList"), exports);
+tslib_1.__exportStar(require("./appsV1beta1DeploymentRollback"), exports);
+tslib_1.__exportStar(require("./appsV1beta1DeploymentSpec"), exports);
+tslib_1.__exportStar(require("./appsV1beta1DeploymentStatus"), exports);
+tslib_1.__exportStar(require("./appsV1beta1DeploymentStrategy"), exports);
+tslib_1.__exportStar(require("./appsV1beta1RollbackConfig"), exports);
+tslib_1.__exportStar(require("./appsV1beta1RollingUpdateDeployment"), exports);
+tslib_1.__exportStar(require("./appsV1beta1Scale"), exports);
+tslib_1.__exportStar(require("./appsV1beta1ScaleSpec"), exports);
+tslib_1.__exportStar(require("./appsV1beta1ScaleStatus"), exports);
+tslib_1.__exportStar(require("./extensionsV1beta1AllowedCSIDriver"), exports);
+tslib_1.__exportStar(require("./extensionsV1beta1AllowedFlexVolume"), exports);
+tslib_1.__exportStar(require("./extensionsV1beta1AllowedHostPath"), exports);
+tslib_1.__exportStar(require("./extensionsV1beta1Deployment"), exports);
+tslib_1.__exportStar(require("./extensionsV1beta1DeploymentCondition"), exports);
+tslib_1.__exportStar(require("./extensionsV1beta1DeploymentList"), exports);
+tslib_1.__exportStar(require("./extensionsV1beta1DeploymentRollback"), exports);
+tslib_1.__exportStar(require("./extensionsV1beta1DeploymentSpec"), exports);
+tslib_1.__exportStar(require("./extensionsV1beta1DeploymentStatus"), exports);
+tslib_1.__exportStar(require("./extensionsV1beta1DeploymentStrategy"), exports);
+tslib_1.__exportStar(require("./extensionsV1beta1FSGroupStrategyOptions"), exports);
+tslib_1.__exportStar(require("./extensionsV1beta1HTTPIngressPath"), exports);
+tslib_1.__exportStar(require("./extensionsV1beta1HTTPIngressRuleValue"), exports);
+tslib_1.__exportStar(require("./extensionsV1beta1HostPortRange"), exports);
+tslib_1.__exportStar(require("./extensionsV1beta1IDRange"), exports);
+tslib_1.__exportStar(require("./extensionsV1beta1Ingress"), exports);
+tslib_1.__exportStar(require("./extensionsV1beta1IngressBackend"), exports);
+tslib_1.__exportStar(require("./extensionsV1beta1IngressList"), exports);
+tslib_1.__exportStar(require("./extensionsV1beta1IngressRule"), exports);
+tslib_1.__exportStar(require("./extensionsV1beta1IngressSpec"), exports);
+tslib_1.__exportStar(require("./extensionsV1beta1IngressStatus"), exports);
+tslib_1.__exportStar(require("./extensionsV1beta1IngressTLS"), exports);
+tslib_1.__exportStar(require("./extensionsV1beta1PodSecurityPolicy"), exports);
+tslib_1.__exportStar(require("./extensionsV1beta1PodSecurityPolicyList"), exports);
+tslib_1.__exportStar(require("./extensionsV1beta1PodSecurityPolicySpec"), exports);
+tslib_1.__exportStar(require("./extensionsV1beta1RollbackConfig"), exports);
+tslib_1.__exportStar(require("./extensionsV1beta1RollingUpdateDeployment"), exports);
+tslib_1.__exportStar(require("./extensionsV1beta1RunAsGroupStrategyOptions"), exports);
+tslib_1.__exportStar(require("./extensionsV1beta1RunAsUserStrategyOptions"), exports);
+tslib_1.__exportStar(require("./extensionsV1beta1RuntimeClassStrategyOptions"), exports);
+tslib_1.__exportStar(require("./extensionsV1beta1SELinuxStrategyOptions"), exports);
+tslib_1.__exportStar(require("./extensionsV1beta1Scale"), exports);
+tslib_1.__exportStar(require("./extensionsV1beta1ScaleSpec"), exports);
+tslib_1.__exportStar(require("./extensionsV1beta1ScaleStatus"), exports);
+tslib_1.__exportStar(require("./extensionsV1beta1SupplementalGroupsStrategyOptions"), exports);
+tslib_1.__exportStar(require("./networkingV1beta1HTTPIngressPath"), exports);
+tslib_1.__exportStar(require("./networkingV1beta1HTTPIngressRuleValue"), exports);
+tslib_1.__exportStar(require("./networkingV1beta1Ingress"), exports);
+tslib_1.__exportStar(require("./networkingV1beta1IngressBackend"), exports);
+tslib_1.__exportStar(require("./networkingV1beta1IngressList"), exports);
+tslib_1.__exportStar(require("./networkingV1beta1IngressRule"), exports);
+tslib_1.__exportStar(require("./networkingV1beta1IngressSpec"), exports);
+tslib_1.__exportStar(require("./networkingV1beta1IngressStatus"), exports);
+tslib_1.__exportStar(require("./networkingV1beta1IngressTLS"), exports);
+tslib_1.__exportStar(require("./policyV1beta1AllowedCSIDriver"), exports);
+tslib_1.__exportStar(require("./policyV1beta1AllowedFlexVolume"), exports);
+tslib_1.__exportStar(require("./policyV1beta1AllowedHostPath"), exports);
+tslib_1.__exportStar(require("./policyV1beta1FSGroupStrategyOptions"), exports);
+tslib_1.__exportStar(require("./policyV1beta1HostPortRange"), exports);
+tslib_1.__exportStar(require("./policyV1beta1IDRange"), exports);
+tslib_1.__exportStar(require("./policyV1beta1PodSecurityPolicy"), exports);
+tslib_1.__exportStar(require("./policyV1beta1PodSecurityPolicyList"), exports);
+tslib_1.__exportStar(require("./policyV1beta1PodSecurityPolicySpec"), exports);
+tslib_1.__exportStar(require("./policyV1beta1RunAsGroupStrategyOptions"), exports);
+tslib_1.__exportStar(require("./policyV1beta1RunAsUserStrategyOptions"), exports);
+tslib_1.__exportStar(require("./policyV1beta1RuntimeClassStrategyOptions"), exports);
+tslib_1.__exportStar(require("./policyV1beta1SELinuxStrategyOptions"), exports);
+tslib_1.__exportStar(require("./policyV1beta1SupplementalGroupsStrategyOptions"), exports);
+tslib_1.__exportStar(require("./runtimeRawExtension"), exports);
+tslib_1.__exportStar(require("./v1APIGroup"), exports);
+tslib_1.__exportStar(require("./v1APIGroupList"), exports);
+tslib_1.__exportStar(require("./v1APIResource"), exports);
+tslib_1.__exportStar(require("./v1APIResourceList"), exports);
+tslib_1.__exportStar(require("./v1APIService"), exports);
+tslib_1.__exportStar(require("./v1APIServiceCondition"), exports);
+tslib_1.__exportStar(require("./v1APIServiceList"), exports);
+tslib_1.__exportStar(require("./v1APIServiceSpec"), exports);
+tslib_1.__exportStar(require("./v1APIServiceStatus"), exports);
+tslib_1.__exportStar(require("./v1APIVersions"), exports);
+tslib_1.__exportStar(require("./v1AWSElasticBlockStoreVolumeSource"), exports);
+tslib_1.__exportStar(require("./v1Affinity"), exports);
+tslib_1.__exportStar(require("./v1AggregationRule"), exports);
+tslib_1.__exportStar(require("./v1AttachedVolume"), exports);
+tslib_1.__exportStar(require("./v1AzureDiskVolumeSource"), exports);
+tslib_1.__exportStar(require("./v1AzureFilePersistentVolumeSource"), exports);
+tslib_1.__exportStar(require("./v1AzureFileVolumeSource"), exports);
+tslib_1.__exportStar(require("./v1Binding"), exports);
+tslib_1.__exportStar(require("./v1CSIPersistentVolumeSource"), exports);
+tslib_1.__exportStar(require("./v1CSIVolumeSource"), exports);
+tslib_1.__exportStar(require("./v1Capabilities"), exports);
+tslib_1.__exportStar(require("./v1CephFSPersistentVolumeSource"), exports);
+tslib_1.__exportStar(require("./v1CephFSVolumeSource"), exports);
+tslib_1.__exportStar(require("./v1CinderPersistentVolumeSource"), exports);
+tslib_1.__exportStar(require("./v1CinderVolumeSource"), exports);
+tslib_1.__exportStar(require("./v1ClientIPConfig"), exports);
+tslib_1.__exportStar(require("./v1ClusterRole"), exports);
+tslib_1.__exportStar(require("./v1ClusterRoleBinding"), exports);
+tslib_1.__exportStar(require("./v1ClusterRoleBindingList"), exports);
+tslib_1.__exportStar(require("./v1ClusterRoleList"), exports);
+tslib_1.__exportStar(require("./v1ComponentCondition"), exports);
+tslib_1.__exportStar(require("./v1ComponentStatus"), exports);
+tslib_1.__exportStar(require("./v1ComponentStatusList"), exports);
+tslib_1.__exportStar(require("./v1ConfigMap"), exports);
+tslib_1.__exportStar(require("./v1ConfigMapEnvSource"), exports);
+tslib_1.__exportStar(require("./v1ConfigMapKeySelector"), exports);
+tslib_1.__exportStar(require("./v1ConfigMapList"), exports);
+tslib_1.__exportStar(require("./v1ConfigMapNodeConfigSource"), exports);
+tslib_1.__exportStar(require("./v1ConfigMapProjection"), exports);
+tslib_1.__exportStar(require("./v1ConfigMapVolumeSource"), exports);
+tslib_1.__exportStar(require("./v1Container"), exports);
+tslib_1.__exportStar(require("./v1ContainerImage"), exports);
+tslib_1.__exportStar(require("./v1ContainerPort"), exports);
+tslib_1.__exportStar(require("./v1ContainerState"), exports);
+tslib_1.__exportStar(require("./v1ContainerStateRunning"), exports);
+tslib_1.__exportStar(require("./v1ContainerStateTerminated"), exports);
+tslib_1.__exportStar(require("./v1ContainerStateWaiting"), exports);
+tslib_1.__exportStar(require("./v1ContainerStatus"), exports);
+tslib_1.__exportStar(require("./v1ControllerRevision"), exports);
+tslib_1.__exportStar(require("./v1ControllerRevisionList"), exports);
+tslib_1.__exportStar(require("./v1CrossVersionObjectReference"), exports);
+tslib_1.__exportStar(require("./v1DaemonEndpoint"), exports);
+tslib_1.__exportStar(require("./v1DaemonSet"), exports);
+tslib_1.__exportStar(require("./v1DaemonSetCondition"), exports);
+tslib_1.__exportStar(require("./v1DaemonSetList"), exports);
+tslib_1.__exportStar(require("./v1DaemonSetSpec"), exports);
+tslib_1.__exportStar(require("./v1DaemonSetStatus"), exports);
+tslib_1.__exportStar(require("./v1DaemonSetUpdateStrategy"), exports);
+tslib_1.__exportStar(require("./v1DeleteOptions"), exports);
+tslib_1.__exportStar(require("./v1Deployment"), exports);
+tslib_1.__exportStar(require("./v1DeploymentCondition"), exports);
+tslib_1.__exportStar(require("./v1DeploymentList"), exports);
+tslib_1.__exportStar(require("./v1DeploymentSpec"), exports);
+tslib_1.__exportStar(require("./v1DeploymentStatus"), exports);
+tslib_1.__exportStar(require("./v1DeploymentStrategy"), exports);
+tslib_1.__exportStar(require("./v1DownwardAPIProjection"), exports);
+tslib_1.__exportStar(require("./v1DownwardAPIVolumeFile"), exports);
+tslib_1.__exportStar(require("./v1DownwardAPIVolumeSource"), exports);
+tslib_1.__exportStar(require("./v1EmptyDirVolumeSource"), exports);
+tslib_1.__exportStar(require("./v1EndpointAddress"), exports);
+tslib_1.__exportStar(require("./v1EndpointPort"), exports);
+tslib_1.__exportStar(require("./v1EndpointSubset"), exports);
+tslib_1.__exportStar(require("./v1Endpoints"), exports);
+tslib_1.__exportStar(require("./v1EndpointsList"), exports);
+tslib_1.__exportStar(require("./v1EnvFromSource"), exports);
+tslib_1.__exportStar(require("./v1EnvVar"), exports);
+tslib_1.__exportStar(require("./v1EnvVarSource"), exports);
+tslib_1.__exportStar(require("./v1Event"), exports);
+tslib_1.__exportStar(require("./v1EventList"), exports);
+tslib_1.__exportStar(require("./v1EventSeries"), exports);
+tslib_1.__exportStar(require("./v1EventSource"), exports);
+tslib_1.__exportStar(require("./v1ExecAction"), exports);
+tslib_1.__exportStar(require("./v1FCVolumeSource"), exports);
+tslib_1.__exportStar(require("./v1FlexPersistentVolumeSource"), exports);
+tslib_1.__exportStar(require("./v1FlexVolumeSource"), exports);
+tslib_1.__exportStar(require("./v1FlockerVolumeSource"), exports);
+tslib_1.__exportStar(require("./v1GCEPersistentDiskVolumeSource"), exports);
+tslib_1.__exportStar(require("./v1GitRepoVolumeSource"), exports);
+tslib_1.__exportStar(require("./v1GlusterfsPersistentVolumeSource"), exports);
+tslib_1.__exportStar(require("./v1GlusterfsVolumeSource"), exports);
+tslib_1.__exportStar(require("./v1GroupVersionForDiscovery"), exports);
+tslib_1.__exportStar(require("./v1HTTPGetAction"), exports);
+tslib_1.__exportStar(require("./v1HTTPHeader"), exports);
+tslib_1.__exportStar(require("./v1Handler"), exports);
+tslib_1.__exportStar(require("./v1HorizontalPodAutoscaler"), exports);
+tslib_1.__exportStar(require("./v1HorizontalPodAutoscalerList"), exports);
+tslib_1.__exportStar(require("./v1HorizontalPodAutoscalerSpec"), exports);
+tslib_1.__exportStar(require("./v1HorizontalPodAutoscalerStatus"), exports);
+tslib_1.__exportStar(require("./v1HostAlias"), exports);
+tslib_1.__exportStar(require("./v1HostPathVolumeSource"), exports);
+tslib_1.__exportStar(require("./v1IPBlock"), exports);
+tslib_1.__exportStar(require("./v1ISCSIPersistentVolumeSource"), exports);
+tslib_1.__exportStar(require("./v1ISCSIVolumeSource"), exports);
+tslib_1.__exportStar(require("./v1Initializer"), exports);
+tslib_1.__exportStar(require("./v1Initializers"), exports);
+tslib_1.__exportStar(require("./v1Job"), exports);
+tslib_1.__exportStar(require("./v1JobCondition"), exports);
+tslib_1.__exportStar(require("./v1JobList"), exports);
+tslib_1.__exportStar(require("./v1JobSpec"), exports);
+tslib_1.__exportStar(require("./v1JobStatus"), exports);
+tslib_1.__exportStar(require("./v1KeyToPath"), exports);
+tslib_1.__exportStar(require("./v1LabelSelector"), exports);
+tslib_1.__exportStar(require("./v1LabelSelectorRequirement"), exports);
+tslib_1.__exportStar(require("./v1Lease"), exports);
+tslib_1.__exportStar(require("./v1LeaseList"), exports);
+tslib_1.__exportStar(require("./v1LeaseSpec"), exports);
+tslib_1.__exportStar(require("./v1Lifecycle"), exports);
+tslib_1.__exportStar(require("./v1LimitRange"), exports);
+tslib_1.__exportStar(require("./v1LimitRangeItem"), exports);
+tslib_1.__exportStar(require("./v1LimitRangeList"), exports);
+tslib_1.__exportStar(require("./v1LimitRangeSpec"), exports);
+tslib_1.__exportStar(require("./v1ListMeta"), exports);
+tslib_1.__exportStar(require("./v1LoadBalancerIngress"), exports);
+tslib_1.__exportStar(require("./v1LoadBalancerStatus"), exports);
+tslib_1.__exportStar(require("./v1LocalObjectReference"), exports);
+tslib_1.__exportStar(require("./v1LocalSubjectAccessReview"), exports);
+tslib_1.__exportStar(require("./v1LocalVolumeSource"), exports);
+tslib_1.__exportStar(require("./v1ManagedFieldsEntry"), exports);
+tslib_1.__exportStar(require("./v1NFSVolumeSource"), exports);
+tslib_1.__exportStar(require("./v1Namespace"), exports);
+tslib_1.__exportStar(require("./v1NamespaceList"), exports);
+tslib_1.__exportStar(require("./v1NamespaceSpec"), exports);
+tslib_1.__exportStar(require("./v1NamespaceStatus"), exports);
+tslib_1.__exportStar(require("./v1NetworkPolicy"), exports);
+tslib_1.__exportStar(require("./v1NetworkPolicyEgressRule"), exports);
+tslib_1.__exportStar(require("./v1NetworkPolicyIngressRule"), exports);
+tslib_1.__exportStar(require("./v1NetworkPolicyList"), exports);
+tslib_1.__exportStar(require("./v1NetworkPolicyPeer"), exports);
+tslib_1.__exportStar(require("./v1NetworkPolicyPort"), exports);
+tslib_1.__exportStar(require("./v1NetworkPolicySpec"), exports);
+tslib_1.__exportStar(require("./v1Node"), exports);
+tslib_1.__exportStar(require("./v1NodeAddress"), exports);
+tslib_1.__exportStar(require("./v1NodeAffinity"), exports);
+tslib_1.__exportStar(require("./v1NodeCondition"), exports);
+tslib_1.__exportStar(require("./v1NodeConfigSource"), exports);
+tslib_1.__exportStar(require("./v1NodeConfigStatus"), exports);
+tslib_1.__exportStar(require("./v1NodeDaemonEndpoints"), exports);
+tslib_1.__exportStar(require("./v1NodeList"), exports);
+tslib_1.__exportStar(require("./v1NodeSelector"), exports);
+tslib_1.__exportStar(require("./v1NodeSelectorRequirement"), exports);
+tslib_1.__exportStar(require("./v1NodeSelectorTerm"), exports);
+tslib_1.__exportStar(require("./v1NodeSpec"), exports);
+tslib_1.__exportStar(require("./v1NodeStatus"), exports);
+tslib_1.__exportStar(require("./v1NodeSystemInfo"), exports);
+tslib_1.__exportStar(require("./v1NonResourceAttributes"), exports);
+tslib_1.__exportStar(require("./v1NonResourceRule"), exports);
+tslib_1.__exportStar(require("./v1ObjectFieldSelector"), exports);
+tslib_1.__exportStar(require("./v1ObjectMeta"), exports);
+tslib_1.__exportStar(require("./v1ObjectReference"), exports);
+tslib_1.__exportStar(require("./v1OwnerReference"), exports);
+tslib_1.__exportStar(require("./v1PersistentVolume"), exports);
+tslib_1.__exportStar(require("./v1PersistentVolumeClaim"), exports);
+tslib_1.__exportStar(require("./v1PersistentVolumeClaimCondition"), exports);
+tslib_1.__exportStar(require("./v1PersistentVolumeClaimList"), exports);
+tslib_1.__exportStar(require("./v1PersistentVolumeClaimSpec"), exports);
+tslib_1.__exportStar(require("./v1PersistentVolumeClaimStatus"), exports);
+tslib_1.__exportStar(require("./v1PersistentVolumeClaimVolumeSource"), exports);
+tslib_1.__exportStar(require("./v1PersistentVolumeList"), exports);
+tslib_1.__exportStar(require("./v1PersistentVolumeSpec"), exports);
+tslib_1.__exportStar(require("./v1PersistentVolumeStatus"), exports);
+tslib_1.__exportStar(require("./v1PhotonPersistentDiskVolumeSource"), exports);
+tslib_1.__exportStar(require("./v1Pod"), exports);
+tslib_1.__exportStar(require("./v1PodAffinity"), exports);
+tslib_1.__exportStar(require("./v1PodAffinityTerm"), exports);
+tslib_1.__exportStar(require("./v1PodAntiAffinity"), exports);
+tslib_1.__exportStar(require("./v1PodCondition"), exports);
+tslib_1.__exportStar(require("./v1PodDNSConfig"), exports);
+tslib_1.__exportStar(require("./v1PodDNSConfigOption"), exports);
+tslib_1.__exportStar(require("./v1PodList"), exports);
+tslib_1.__exportStar(require("./v1PodReadinessGate"), exports);
+tslib_1.__exportStar(require("./v1PodSecurityContext"), exports);
+tslib_1.__exportStar(require("./v1PodSpec"), exports);
+tslib_1.__exportStar(require("./v1PodStatus"), exports);
+tslib_1.__exportStar(require("./v1PodTemplate"), exports);
+tslib_1.__exportStar(require("./v1PodTemplateList"), exports);
+tslib_1.__exportStar(require("./v1PodTemplateSpec"), exports);
+tslib_1.__exportStar(require("./v1PolicyRule"), exports);
+tslib_1.__exportStar(require("./v1PortworxVolumeSource"), exports);
+tslib_1.__exportStar(require("./v1Preconditions"), exports);
+tslib_1.__exportStar(require("./v1PreferredSchedulingTerm"), exports);
+tslib_1.__exportStar(require("./v1PriorityClass"), exports);
+tslib_1.__exportStar(require("./v1PriorityClassList"), exports);
+tslib_1.__exportStar(require("./v1Probe"), exports);
+tslib_1.__exportStar(require("./v1ProjectedVolumeSource"), exports);
+tslib_1.__exportStar(require("./v1QuobyteVolumeSource"), exports);
+tslib_1.__exportStar(require("./v1RBDPersistentVolumeSource"), exports);
+tslib_1.__exportStar(require("./v1RBDVolumeSource"), exports);
+tslib_1.__exportStar(require("./v1ReplicaSet"), exports);
+tslib_1.__exportStar(require("./v1ReplicaSetCondition"), exports);
+tslib_1.__exportStar(require("./v1ReplicaSetList"), exports);
+tslib_1.__exportStar(require("./v1ReplicaSetSpec"), exports);
+tslib_1.__exportStar(require("./v1ReplicaSetStatus"), exports);
+tslib_1.__exportStar(require("./v1ReplicationController"), exports);
+tslib_1.__exportStar(require("./v1ReplicationControllerCondition"), exports);
+tslib_1.__exportStar(require("./v1ReplicationControllerList"), exports);
+tslib_1.__exportStar(require("./v1ReplicationControllerSpec"), exports);
+tslib_1.__exportStar(require("./v1ReplicationControllerStatus"), exports);
+tslib_1.__exportStar(require("./v1ResourceAttributes"), exports);
+tslib_1.__exportStar(require("./v1ResourceFieldSelector"), exports);
+tslib_1.__exportStar(require("./v1ResourceQuota"), exports);
+tslib_1.__exportStar(require("./v1ResourceQuotaList"), exports);
+tslib_1.__exportStar(require("./v1ResourceQuotaSpec"), exports);
+tslib_1.__exportStar(require("./v1ResourceQuotaStatus"), exports);
+tslib_1.__exportStar(require("./v1ResourceRequirements"), exports);
+tslib_1.__exportStar(require("./v1ResourceRule"), exports);
+tslib_1.__exportStar(require("./v1Role"), exports);
+tslib_1.__exportStar(require("./v1RoleBinding"), exports);
+tslib_1.__exportStar(require("./v1RoleBindingList"), exports);
+tslib_1.__exportStar(require("./v1RoleList"), exports);
+tslib_1.__exportStar(require("./v1RoleRef"), exports);
+tslib_1.__exportStar(require("./v1RollingUpdateDaemonSet"), exports);
+tslib_1.__exportStar(require("./v1RollingUpdateDeployment"), exports);
+tslib_1.__exportStar(require("./v1RollingUpdateStatefulSetStrategy"), exports);
+tslib_1.__exportStar(require("./v1SELinuxOptions"), exports);
+tslib_1.__exportStar(require("./v1Scale"), exports);
+tslib_1.__exportStar(require("./v1ScaleIOPersistentVolumeSource"), exports);
+tslib_1.__exportStar(require("./v1ScaleIOVolumeSource"), exports);
+tslib_1.__exportStar(require("./v1ScaleSpec"), exports);
+tslib_1.__exportStar(require("./v1ScaleStatus"), exports);
+tslib_1.__exportStar(require("./v1ScopeSelector"), exports);
+tslib_1.__exportStar(require("./v1ScopedResourceSelectorRequirement"), exports);
+tslib_1.__exportStar(require("./v1Secret"), exports);
+tslib_1.__exportStar(require("./v1SecretEnvSource"), exports);
+tslib_1.__exportStar(require("./v1SecretKeySelector"), exports);
+tslib_1.__exportStar(require("./v1SecretList"), exports);
+tslib_1.__exportStar(require("./v1SecretProjection"), exports);
+tslib_1.__exportStar(require("./v1SecretReference"), exports);
+tslib_1.__exportStar(require("./v1SecretVolumeSource"), exports);
+tslib_1.__exportStar(require("./v1SecurityContext"), exports);
+tslib_1.__exportStar(require("./v1SelfSubjectAccessReview"), exports);
+tslib_1.__exportStar(require("./v1SelfSubjectAccessReviewSpec"), exports);
+tslib_1.__exportStar(require("./v1SelfSubjectRulesReview"), exports);
+tslib_1.__exportStar(require("./v1SelfSubjectRulesReviewSpec"), exports);
+tslib_1.__exportStar(require("./v1ServerAddressByClientCIDR"), exports);
+tslib_1.__exportStar(require("./v1Service"), exports);
+tslib_1.__exportStar(require("./v1ServiceAccount"), exports);
+tslib_1.__exportStar(require("./v1ServiceAccountList"), exports);
+tslib_1.__exportStar(require("./v1ServiceAccountTokenProjection"), exports);
+tslib_1.__exportStar(require("./v1ServiceList"), exports);
+tslib_1.__exportStar(require("./v1ServicePort"), exports);
+tslib_1.__exportStar(require("./v1ServiceReference"), exports);
+tslib_1.__exportStar(require("./v1ServiceSpec"), exports);
+tslib_1.__exportStar(require("./v1ServiceStatus"), exports);
+tslib_1.__exportStar(require("./v1SessionAffinityConfig"), exports);
+tslib_1.__exportStar(require("./v1StatefulSet"), exports);
+tslib_1.__exportStar(require("./v1StatefulSetCondition"), exports);
+tslib_1.__exportStar(require("./v1StatefulSetList"), exports);
+tslib_1.__exportStar(require("./v1StatefulSetSpec"), exports);
+tslib_1.__exportStar(require("./v1StatefulSetStatus"), exports);
+tslib_1.__exportStar(require("./v1StatefulSetUpdateStrategy"), exports);
+tslib_1.__exportStar(require("./v1Status"), exports);
+tslib_1.__exportStar(require("./v1StatusCause"), exports);
+tslib_1.__exportStar(require("./v1StatusDetails"), exports);
+tslib_1.__exportStar(require("./v1StorageClass"), exports);
+tslib_1.__exportStar(require("./v1StorageClassList"), exports);
+tslib_1.__exportStar(require("./v1StorageOSPersistentVolumeSource"), exports);
+tslib_1.__exportStar(require("./v1StorageOSVolumeSource"), exports);
+tslib_1.__exportStar(require("./v1Subject"), exports);
+tslib_1.__exportStar(require("./v1SubjectAccessReview"), exports);
+tslib_1.__exportStar(require("./v1SubjectAccessReviewSpec"), exports);
+tslib_1.__exportStar(require("./v1SubjectAccessReviewStatus"), exports);
+tslib_1.__exportStar(require("./v1SubjectRulesReviewStatus"), exports);
+tslib_1.__exportStar(require("./v1Sysctl"), exports);
+tslib_1.__exportStar(require("./v1TCPSocketAction"), exports);
+tslib_1.__exportStar(require("./v1Taint"), exports);
+tslib_1.__exportStar(require("./v1TokenReview"), exports);
+tslib_1.__exportStar(require("./v1TokenReviewSpec"), exports);
+tslib_1.__exportStar(require("./v1TokenReviewStatus"), exports);
+tslib_1.__exportStar(require("./v1Toleration"), exports);
+tslib_1.__exportStar(require("./v1TopologySelectorLabelRequirement"), exports);
+tslib_1.__exportStar(require("./v1TopologySelectorTerm"), exports);
+tslib_1.__exportStar(require("./v1TypedLocalObjectReference"), exports);
+tslib_1.__exportStar(require("./v1UserInfo"), exports);
+tslib_1.__exportStar(require("./v1Volume"), exports);
+tslib_1.__exportStar(require("./v1VolumeAttachment"), exports);
+tslib_1.__exportStar(require("./v1VolumeAttachmentList"), exports);
+tslib_1.__exportStar(require("./v1VolumeAttachmentSource"), exports);
+tslib_1.__exportStar(require("./v1VolumeAttachmentSpec"), exports);
+tslib_1.__exportStar(require("./v1VolumeAttachmentStatus"), exports);
+tslib_1.__exportStar(require("./v1VolumeDevice"), exports);
+tslib_1.__exportStar(require("./v1VolumeError"), exports);
+tslib_1.__exportStar(require("./v1VolumeMount"), exports);
+tslib_1.__exportStar(require("./v1VolumeNodeAffinity"), exports);
+tslib_1.__exportStar(require("./v1VolumeProjection"), exports);
+tslib_1.__exportStar(require("./v1VsphereVirtualDiskVolumeSource"), exports);
+tslib_1.__exportStar(require("./v1WatchEvent"), exports);
+tslib_1.__exportStar(require("./v1WeightedPodAffinityTerm"), exports);
+tslib_1.__exportStar(require("./v1WindowsSecurityContextOptions"), exports);
+tslib_1.__exportStar(require("./v1alpha1AggregationRule"), exports);
+tslib_1.__exportStar(require("./v1alpha1AuditSink"), exports);
+tslib_1.__exportStar(require("./v1alpha1AuditSinkList"), exports);
+tslib_1.__exportStar(require("./v1alpha1AuditSinkSpec"), exports);
+tslib_1.__exportStar(require("./v1alpha1ClusterRole"), exports);
+tslib_1.__exportStar(require("./v1alpha1ClusterRoleBinding"), exports);
+tslib_1.__exportStar(require("./v1alpha1ClusterRoleBindingList"), exports);
+tslib_1.__exportStar(require("./v1alpha1ClusterRoleList"), exports);
+tslib_1.__exportStar(require("./v1alpha1PodPreset"), exports);
+tslib_1.__exportStar(require("./v1alpha1PodPresetList"), exports);
+tslib_1.__exportStar(require("./v1alpha1PodPresetSpec"), exports);
+tslib_1.__exportStar(require("./v1alpha1Policy"), exports);
+tslib_1.__exportStar(require("./v1alpha1PolicyRule"), exports);
+tslib_1.__exportStar(require("./v1alpha1PriorityClass"), exports);
+tslib_1.__exportStar(require("./v1alpha1PriorityClassList"), exports);
+tslib_1.__exportStar(require("./v1alpha1Role"), exports);
+tslib_1.__exportStar(require("./v1alpha1RoleBinding"), exports);
+tslib_1.__exportStar(require("./v1alpha1RoleBindingList"), exports);
+tslib_1.__exportStar(require("./v1alpha1RoleList"), exports);
+tslib_1.__exportStar(require("./v1alpha1RoleRef"), exports);
+tslib_1.__exportStar(require("./v1alpha1RuntimeClass"), exports);
+tslib_1.__exportStar(require("./v1alpha1RuntimeClassList"), exports);
+tslib_1.__exportStar(require("./v1alpha1RuntimeClassSpec"), exports);
+tslib_1.__exportStar(require("./v1alpha1ServiceReference"), exports);
+tslib_1.__exportStar(require("./v1alpha1Subject"), exports);
+tslib_1.__exportStar(require("./v1alpha1VolumeAttachment"), exports);
+tslib_1.__exportStar(require("./v1alpha1VolumeAttachmentList"), exports);
+tslib_1.__exportStar(require("./v1alpha1VolumeAttachmentSource"), exports);
+tslib_1.__exportStar(require("./v1alpha1VolumeAttachmentSpec"), exports);
+tslib_1.__exportStar(require("./v1alpha1VolumeAttachmentStatus"), exports);
+tslib_1.__exportStar(require("./v1alpha1VolumeError"), exports);
+tslib_1.__exportStar(require("./v1alpha1Webhook"), exports);
+tslib_1.__exportStar(require("./v1alpha1WebhookClientConfig"), exports);
+tslib_1.__exportStar(require("./v1alpha1WebhookThrottleConfig"), exports);
+tslib_1.__exportStar(require("./v1beta1APIService"), exports);
+tslib_1.__exportStar(require("./v1beta1APIServiceCondition"), exports);
+tslib_1.__exportStar(require("./v1beta1APIServiceList"), exports);
+tslib_1.__exportStar(require("./v1beta1APIServiceSpec"), exports);
+tslib_1.__exportStar(require("./v1beta1APIServiceStatus"), exports);
+tslib_1.__exportStar(require("./v1beta1AggregationRule"), exports);
+tslib_1.__exportStar(require("./v1beta1CSIDriver"), exports);
+tslib_1.__exportStar(require("./v1beta1CSIDriverList"), exports);
+tslib_1.__exportStar(require("./v1beta1CSIDriverSpec"), exports);
+tslib_1.__exportStar(require("./v1beta1CSINode"), exports);
+tslib_1.__exportStar(require("./v1beta1CSINodeDriver"), exports);
+tslib_1.__exportStar(require("./v1beta1CSINodeList"), exports);
+tslib_1.__exportStar(require("./v1beta1CSINodeSpec"), exports);
+tslib_1.__exportStar(require("./v1beta1CertificateSigningRequest"), exports);
+tslib_1.__exportStar(require("./v1beta1CertificateSigningRequestCondition"), exports);
+tslib_1.__exportStar(require("./v1beta1CertificateSigningRequestList"), exports);
+tslib_1.__exportStar(require("./v1beta1CertificateSigningRequestSpec"), exports);
+tslib_1.__exportStar(require("./v1beta1CertificateSigningRequestStatus"), exports);
+tslib_1.__exportStar(require("./v1beta1ClusterRole"), exports);
+tslib_1.__exportStar(require("./v1beta1ClusterRoleBinding"), exports);
+tslib_1.__exportStar(require("./v1beta1ClusterRoleBindingList"), exports);
+tslib_1.__exportStar(require("./v1beta1ClusterRoleList"), exports);
+tslib_1.__exportStar(require("./v1beta1ControllerRevision"), exports);
+tslib_1.__exportStar(require("./v1beta1ControllerRevisionList"), exports);
+tslib_1.__exportStar(require("./v1beta1CronJob"), exports);
+tslib_1.__exportStar(require("./v1beta1CronJobList"), exports);
+tslib_1.__exportStar(require("./v1beta1CronJobSpec"), exports);
+tslib_1.__exportStar(require("./v1beta1CronJobStatus"), exports);
+tslib_1.__exportStar(require("./v1beta1CustomResourceColumnDefinition"), exports);
+tslib_1.__exportStar(require("./v1beta1CustomResourceConversion"), exports);
+tslib_1.__exportStar(require("./v1beta1CustomResourceDefinition"), exports);
+tslib_1.__exportStar(require("./v1beta1CustomResourceDefinitionCondition"), exports);
+tslib_1.__exportStar(require("./v1beta1CustomResourceDefinitionList"), exports);
+tslib_1.__exportStar(require("./v1beta1CustomResourceDefinitionNames"), exports);
+tslib_1.__exportStar(require("./v1beta1CustomResourceDefinitionSpec"), exports);
+tslib_1.__exportStar(require("./v1beta1CustomResourceDefinitionStatus"), exports);
+tslib_1.__exportStar(require("./v1beta1CustomResourceDefinitionVersion"), exports);
+tslib_1.__exportStar(require("./v1beta1CustomResourceSubresourceScale"), exports);
+tslib_1.__exportStar(require("./v1beta1CustomResourceSubresources"), exports);
+tslib_1.__exportStar(require("./v1beta1CustomResourceValidation"), exports);
+tslib_1.__exportStar(require("./v1beta1DaemonSet"), exports);
+tslib_1.__exportStar(require("./v1beta1DaemonSetCondition"), exports);
+tslib_1.__exportStar(require("./v1beta1DaemonSetList"), exports);
+tslib_1.__exportStar(require("./v1beta1DaemonSetSpec"), exports);
+tslib_1.__exportStar(require("./v1beta1DaemonSetStatus"), exports);
+tslib_1.__exportStar(require("./v1beta1DaemonSetUpdateStrategy"), exports);
+tslib_1.__exportStar(require("./v1beta1Event"), exports);
+tslib_1.__exportStar(require("./v1beta1EventList"), exports);
+tslib_1.__exportStar(require("./v1beta1EventSeries"), exports);
+tslib_1.__exportStar(require("./v1beta1Eviction"), exports);
+tslib_1.__exportStar(require("./v1beta1ExternalDocumentation"), exports);
+tslib_1.__exportStar(require("./v1beta1IPBlock"), exports);
+tslib_1.__exportStar(require("./v1beta1JSONSchemaProps"), exports);
+tslib_1.__exportStar(require("./v1beta1JobTemplateSpec"), exports);
+tslib_1.__exportStar(require("./v1beta1Lease"), exports);
+tslib_1.__exportStar(require("./v1beta1LeaseList"), exports);
+tslib_1.__exportStar(require("./v1beta1LeaseSpec"), exports);
+tslib_1.__exportStar(require("./v1beta1LocalSubjectAccessReview"), exports);
+tslib_1.__exportStar(require("./v1beta1MutatingWebhook"), exports);
+tslib_1.__exportStar(require("./v1beta1MutatingWebhookConfiguration"), exports);
+tslib_1.__exportStar(require("./v1beta1MutatingWebhookConfigurationList"), exports);
+tslib_1.__exportStar(require("./v1beta1NetworkPolicy"), exports);
+tslib_1.__exportStar(require("./v1beta1NetworkPolicyEgressRule"), exports);
+tslib_1.__exportStar(require("./v1beta1NetworkPolicyIngressRule"), exports);
+tslib_1.__exportStar(require("./v1beta1NetworkPolicyList"), exports);
+tslib_1.__exportStar(require("./v1beta1NetworkPolicyPeer"), exports);
+tslib_1.__exportStar(require("./v1beta1NetworkPolicyPort"), exports);
+tslib_1.__exportStar(require("./v1beta1NetworkPolicySpec"), exports);
+tslib_1.__exportStar(require("./v1beta1NonResourceAttributes"), exports);
+tslib_1.__exportStar(require("./v1beta1NonResourceRule"), exports);
+tslib_1.__exportStar(require("./v1beta1PodDisruptionBudget"), exports);
+tslib_1.__exportStar(require("./v1beta1PodDisruptionBudgetList"), exports);
+tslib_1.__exportStar(require("./v1beta1PodDisruptionBudgetSpec"), exports);
+tslib_1.__exportStar(require("./v1beta1PodDisruptionBudgetStatus"), exports);
+tslib_1.__exportStar(require("./v1beta1PolicyRule"), exports);
+tslib_1.__exportStar(require("./v1beta1PriorityClass"), exports);
+tslib_1.__exportStar(require("./v1beta1PriorityClassList"), exports);
+tslib_1.__exportStar(require("./v1beta1ReplicaSet"), exports);
+tslib_1.__exportStar(require("./v1beta1ReplicaSetCondition"), exports);
+tslib_1.__exportStar(require("./v1beta1ReplicaSetList"), exports);
+tslib_1.__exportStar(require("./v1beta1ReplicaSetSpec"), exports);
+tslib_1.__exportStar(require("./v1beta1ReplicaSetStatus"), exports);
+tslib_1.__exportStar(require("./v1beta1ResourceAttributes"), exports);
+tslib_1.__exportStar(require("./v1beta1ResourceRule"), exports);
+tslib_1.__exportStar(require("./v1beta1Role"), exports);
+tslib_1.__exportStar(require("./v1beta1RoleBinding"), exports);
+tslib_1.__exportStar(require("./v1beta1RoleBindingList"), exports);
+tslib_1.__exportStar(require("./v1beta1RoleList"), exports);
+tslib_1.__exportStar(require("./v1beta1RoleRef"), exports);
+tslib_1.__exportStar(require("./v1beta1RollingUpdateDaemonSet"), exports);
+tslib_1.__exportStar(require("./v1beta1RollingUpdateStatefulSetStrategy"), exports);
+tslib_1.__exportStar(require("./v1beta1RuleWithOperations"), exports);
+tslib_1.__exportStar(require("./v1beta1RuntimeClass"), exports);
+tslib_1.__exportStar(require("./v1beta1RuntimeClassList"), exports);
+tslib_1.__exportStar(require("./v1beta1SelfSubjectAccessReview"), exports);
+tslib_1.__exportStar(require("./v1beta1SelfSubjectAccessReviewSpec"), exports);
+tslib_1.__exportStar(require("./v1beta1SelfSubjectRulesReview"), exports);
+tslib_1.__exportStar(require("./v1beta1SelfSubjectRulesReviewSpec"), exports);
+tslib_1.__exportStar(require("./v1beta1StatefulSet"), exports);
+tslib_1.__exportStar(require("./v1beta1StatefulSetCondition"), exports);
+tslib_1.__exportStar(require("./v1beta1StatefulSetList"), exports);
+tslib_1.__exportStar(require("./v1beta1StatefulSetSpec"), exports);
+tslib_1.__exportStar(require("./v1beta1StatefulSetStatus"), exports);
+tslib_1.__exportStar(require("./v1beta1StatefulSetUpdateStrategy"), exports);
+tslib_1.__exportStar(require("./v1beta1StorageClass"), exports);
+tslib_1.__exportStar(require("./v1beta1StorageClassList"), exports);
+tslib_1.__exportStar(require("./v1beta1Subject"), exports);
+tslib_1.__exportStar(require("./v1beta1SubjectAccessReview"), exports);
+tslib_1.__exportStar(require("./v1beta1SubjectAccessReviewSpec"), exports);
+tslib_1.__exportStar(require("./v1beta1SubjectAccessReviewStatus"), exports);
+tslib_1.__exportStar(require("./v1beta1SubjectRulesReviewStatus"), exports);
+tslib_1.__exportStar(require("./v1beta1TokenReview"), exports);
+tslib_1.__exportStar(require("./v1beta1TokenReviewSpec"), exports);
+tslib_1.__exportStar(require("./v1beta1TokenReviewStatus"), exports);
+tslib_1.__exportStar(require("./v1beta1UserInfo"), exports);
+tslib_1.__exportStar(require("./v1beta1ValidatingWebhook"), exports);
+tslib_1.__exportStar(require("./v1beta1ValidatingWebhookConfiguration"), exports);
+tslib_1.__exportStar(require("./v1beta1ValidatingWebhookConfigurationList"), exports);
+tslib_1.__exportStar(require("./v1beta1VolumeAttachment"), exports);
+tslib_1.__exportStar(require("./v1beta1VolumeAttachmentList"), exports);
+tslib_1.__exportStar(require("./v1beta1VolumeAttachmentSource"), exports);
+tslib_1.__exportStar(require("./v1beta1VolumeAttachmentSpec"), exports);
+tslib_1.__exportStar(require("./v1beta1VolumeAttachmentStatus"), exports);
+tslib_1.__exportStar(require("./v1beta1VolumeError"), exports);
+tslib_1.__exportStar(require("./v1beta2ControllerRevision"), exports);
+tslib_1.__exportStar(require("./v1beta2ControllerRevisionList"), exports);
+tslib_1.__exportStar(require("./v1beta2DaemonSet"), exports);
+tslib_1.__exportStar(require("./v1beta2DaemonSetCondition"), exports);
+tslib_1.__exportStar(require("./v1beta2DaemonSetList"), exports);
+tslib_1.__exportStar(require("./v1beta2DaemonSetSpec"), exports);
+tslib_1.__exportStar(require("./v1beta2DaemonSetStatus"), exports);
+tslib_1.__exportStar(require("./v1beta2DaemonSetUpdateStrategy"), exports);
+tslib_1.__exportStar(require("./v1beta2Deployment"), exports);
+tslib_1.__exportStar(require("./v1beta2DeploymentCondition"), exports);
+tslib_1.__exportStar(require("./v1beta2DeploymentList"), exports);
+tslib_1.__exportStar(require("./v1beta2DeploymentSpec"), exports);
+tslib_1.__exportStar(require("./v1beta2DeploymentStatus"), exports);
+tslib_1.__exportStar(require("./v1beta2DeploymentStrategy"), exports);
+tslib_1.__exportStar(require("./v1beta2ReplicaSet"), exports);
+tslib_1.__exportStar(require("./v1beta2ReplicaSetCondition"), exports);
+tslib_1.__exportStar(require("./v1beta2ReplicaSetList"), exports);
+tslib_1.__exportStar(require("./v1beta2ReplicaSetSpec"), exports);
+tslib_1.__exportStar(require("./v1beta2ReplicaSetStatus"), exports);
+tslib_1.__exportStar(require("./v1beta2RollingUpdateDaemonSet"), exports);
+tslib_1.__exportStar(require("./v1beta2RollingUpdateDeployment"), exports);
+tslib_1.__exportStar(require("./v1beta2RollingUpdateStatefulSetStrategy"), exports);
+tslib_1.__exportStar(require("./v1beta2Scale"), exports);
+tslib_1.__exportStar(require("./v1beta2ScaleSpec"), exports);
+tslib_1.__exportStar(require("./v1beta2ScaleStatus"), exports);
+tslib_1.__exportStar(require("./v1beta2StatefulSet"), exports);
+tslib_1.__exportStar(require("./v1beta2StatefulSetCondition"), exports);
+tslib_1.__exportStar(require("./v1beta2StatefulSetList"), exports);
+tslib_1.__exportStar(require("./v1beta2StatefulSetSpec"), exports);
+tslib_1.__exportStar(require("./v1beta2StatefulSetStatus"), exports);
+tslib_1.__exportStar(require("./v1beta2StatefulSetUpdateStrategy"), exports);
+tslib_1.__exportStar(require("./v2alpha1CronJob"), exports);
+tslib_1.__exportStar(require("./v2alpha1CronJobList"), exports);
+tslib_1.__exportStar(require("./v2alpha1CronJobSpec"), exports);
+tslib_1.__exportStar(require("./v2alpha1CronJobStatus"), exports);
+tslib_1.__exportStar(require("./v2alpha1JobTemplateSpec"), exports);
+tslib_1.__exportStar(require("./v2beta1CrossVersionObjectReference"), exports);
+tslib_1.__exportStar(require("./v2beta1ExternalMetricSource"), exports);
+tslib_1.__exportStar(require("./v2beta1ExternalMetricStatus"), exports);
+tslib_1.__exportStar(require("./v2beta1HorizontalPodAutoscaler"), exports);
+tslib_1.__exportStar(require("./v2beta1HorizontalPodAutoscalerCondition"), exports);
+tslib_1.__exportStar(require("./v2beta1HorizontalPodAutoscalerList"), exports);
+tslib_1.__exportStar(require("./v2beta1HorizontalPodAutoscalerSpec"), exports);
+tslib_1.__exportStar(require("./v2beta1HorizontalPodAutoscalerStatus"), exports);
+tslib_1.__exportStar(require("./v2beta1MetricSpec"), exports);
+tslib_1.__exportStar(require("./v2beta1MetricStatus"), exports);
+tslib_1.__exportStar(require("./v2beta1ObjectMetricSource"), exports);
+tslib_1.__exportStar(require("./v2beta1ObjectMetricStatus"), exports);
+tslib_1.__exportStar(require("./v2beta1PodsMetricSource"), exports);
+tslib_1.__exportStar(require("./v2beta1PodsMetricStatus"), exports);
+tslib_1.__exportStar(require("./v2beta1ResourceMetricSource"), exports);
+tslib_1.__exportStar(require("./v2beta1ResourceMetricStatus"), exports);
+tslib_1.__exportStar(require("./v2beta2CrossVersionObjectReference"), exports);
+tslib_1.__exportStar(require("./v2beta2ExternalMetricSource"), exports);
+tslib_1.__exportStar(require("./v2beta2ExternalMetricStatus"), exports);
+tslib_1.__exportStar(require("./v2beta2HorizontalPodAutoscaler"), exports);
+tslib_1.__exportStar(require("./v2beta2HorizontalPodAutoscalerCondition"), exports);
+tslib_1.__exportStar(require("./v2beta2HorizontalPodAutoscalerList"), exports);
+tslib_1.__exportStar(require("./v2beta2HorizontalPodAutoscalerSpec"), exports);
+tslib_1.__exportStar(require("./v2beta2HorizontalPodAutoscalerStatus"), exports);
+tslib_1.__exportStar(require("./v2beta2MetricIdentifier"), exports);
+tslib_1.__exportStar(require("./v2beta2MetricSpec"), exports);
+tslib_1.__exportStar(require("./v2beta2MetricStatus"), exports);
+tslib_1.__exportStar(require("./v2beta2MetricTarget"), exports);
+tslib_1.__exportStar(require("./v2beta2MetricValueStatus"), exports);
+tslib_1.__exportStar(require("./v2beta2ObjectMetricSource"), exports);
+tslib_1.__exportStar(require("./v2beta2ObjectMetricStatus"), exports);
+tslib_1.__exportStar(require("./v2beta2PodsMetricSource"), exports);
+tslib_1.__exportStar(require("./v2beta2PodsMetricStatus"), exports);
+tslib_1.__exportStar(require("./v2beta2ResourceMetricSource"), exports);
+tslib_1.__exportStar(require("./v2beta2ResourceMetricStatus"), exports);
+tslib_1.__exportStar(require("./versionInfo"), exports);
+const admissionregistrationV1beta1ServiceReference_1 = require("./admissionregistrationV1beta1ServiceReference");
+const admissionregistrationV1beta1WebhookClientConfig_1 = require("./admissionregistrationV1beta1WebhookClientConfig");
+const apiextensionsV1beta1ServiceReference_1 = require("./apiextensionsV1beta1ServiceReference");
+const apiextensionsV1beta1WebhookClientConfig_1 = require("./apiextensionsV1beta1WebhookClientConfig");
+const apiregistrationV1beta1ServiceReference_1 = require("./apiregistrationV1beta1ServiceReference");
+const appsV1beta1Deployment_1 = require("./appsV1beta1Deployment");
+const appsV1beta1DeploymentCondition_1 = require("./appsV1beta1DeploymentCondition");
+const appsV1beta1DeploymentList_1 = require("./appsV1beta1DeploymentList");
+const appsV1beta1DeploymentRollback_1 = require("./appsV1beta1DeploymentRollback");
+const appsV1beta1DeploymentSpec_1 = require("./appsV1beta1DeploymentSpec");
+const appsV1beta1DeploymentStatus_1 = require("./appsV1beta1DeploymentStatus");
+const appsV1beta1DeploymentStrategy_1 = require("./appsV1beta1DeploymentStrategy");
+const appsV1beta1RollbackConfig_1 = require("./appsV1beta1RollbackConfig");
+const appsV1beta1RollingUpdateDeployment_1 = require("./appsV1beta1RollingUpdateDeployment");
+const appsV1beta1Scale_1 = require("./appsV1beta1Scale");
+const appsV1beta1ScaleSpec_1 = require("./appsV1beta1ScaleSpec");
+const appsV1beta1ScaleStatus_1 = require("./appsV1beta1ScaleStatus");
+const extensionsV1beta1AllowedCSIDriver_1 = require("./extensionsV1beta1AllowedCSIDriver");
+const extensionsV1beta1AllowedFlexVolume_1 = require("./extensionsV1beta1AllowedFlexVolume");
+const extensionsV1beta1AllowedHostPath_1 = require("./extensionsV1beta1AllowedHostPath");
+const extensionsV1beta1Deployment_1 = require("./extensionsV1beta1Deployment");
+const extensionsV1beta1DeploymentCondition_1 = require("./extensionsV1beta1DeploymentCondition");
+const extensionsV1beta1DeploymentList_1 = require("./extensionsV1beta1DeploymentList");
+const extensionsV1beta1DeploymentRollback_1 = require("./extensionsV1beta1DeploymentRollback");
+const extensionsV1beta1DeploymentSpec_1 = require("./extensionsV1beta1DeploymentSpec");
+const extensionsV1beta1DeploymentStatus_1 = require("./extensionsV1beta1DeploymentStatus");
+const extensionsV1beta1DeploymentStrategy_1 = require("./extensionsV1beta1DeploymentStrategy");
+const extensionsV1beta1FSGroupStrategyOptions_1 = require("./extensionsV1beta1FSGroupStrategyOptions");
+const extensionsV1beta1HTTPIngressPath_1 = require("./extensionsV1beta1HTTPIngressPath");
+const extensionsV1beta1HTTPIngressRuleValue_1 = require("./extensionsV1beta1HTTPIngressRuleValue");
+const extensionsV1beta1HostPortRange_1 = require("./extensionsV1beta1HostPortRange");
+const extensionsV1beta1IDRange_1 = require("./extensionsV1beta1IDRange");
+const extensionsV1beta1Ingress_1 = require("./extensionsV1beta1Ingress");
+const extensionsV1beta1IngressBackend_1 = require("./extensionsV1beta1IngressBackend");
+const extensionsV1beta1IngressList_1 = require("./extensionsV1beta1IngressList");
+const extensionsV1beta1IngressRule_1 = require("./extensionsV1beta1IngressRule");
+const extensionsV1beta1IngressSpec_1 = require("./extensionsV1beta1IngressSpec");
+const extensionsV1beta1IngressStatus_1 = require("./extensionsV1beta1IngressStatus");
+const extensionsV1beta1IngressTLS_1 = require("./extensionsV1beta1IngressTLS");
+const extensionsV1beta1PodSecurityPolicy_1 = require("./extensionsV1beta1PodSecurityPolicy");
+const extensionsV1beta1PodSecurityPolicyList_1 = require("./extensionsV1beta1PodSecurityPolicyList");
+const extensionsV1beta1PodSecurityPolicySpec_1 = require("./extensionsV1beta1PodSecurityPolicySpec");
+const extensionsV1beta1RollbackConfig_1 = require("./extensionsV1beta1RollbackConfig");
+const extensionsV1beta1RollingUpdateDeployment_1 = require("./extensionsV1beta1RollingUpdateDeployment");
+const extensionsV1beta1RunAsGroupStrategyOptions_1 = require("./extensionsV1beta1RunAsGroupStrategyOptions");
+const extensionsV1beta1RunAsUserStrategyOptions_1 = require("./extensionsV1beta1RunAsUserStrategyOptions");
+const extensionsV1beta1RuntimeClassStrategyOptions_1 = require("./extensionsV1beta1RuntimeClassStrategyOptions");
+const extensionsV1beta1SELinuxStrategyOptions_1 = require("./extensionsV1beta1SELinuxStrategyOptions");
+const extensionsV1beta1Scale_1 = require("./extensionsV1beta1Scale");
+const extensionsV1beta1ScaleSpec_1 = require("./extensionsV1beta1ScaleSpec");
+const extensionsV1beta1ScaleStatus_1 = require("./extensionsV1beta1ScaleStatus");
+const extensionsV1beta1SupplementalGroupsStrategyOptions_1 = require("./extensionsV1beta1SupplementalGroupsStrategyOptions");
+const networkingV1beta1HTTPIngressPath_1 = require("./networkingV1beta1HTTPIngressPath");
+const networkingV1beta1HTTPIngressRuleValue_1 = require("./networkingV1beta1HTTPIngressRuleValue");
+const networkingV1beta1Ingress_1 = require("./networkingV1beta1Ingress");
+const networkingV1beta1IngressBackend_1 = require("./networkingV1beta1IngressBackend");
+const networkingV1beta1IngressList_1 = require("./networkingV1beta1IngressList");
+const networkingV1beta1IngressRule_1 = require("./networkingV1beta1IngressRule");
+const networkingV1beta1IngressSpec_1 = require("./networkingV1beta1IngressSpec");
+const networkingV1beta1IngressStatus_1 = require("./networkingV1beta1IngressStatus");
+const networkingV1beta1IngressTLS_1 = require("./networkingV1beta1IngressTLS");
+const policyV1beta1AllowedCSIDriver_1 = require("./policyV1beta1AllowedCSIDriver");
+const policyV1beta1AllowedFlexVolume_1 = require("./policyV1beta1AllowedFlexVolume");
+const policyV1beta1AllowedHostPath_1 = require("./policyV1beta1AllowedHostPath");
+const policyV1beta1FSGroupStrategyOptions_1 = require("./policyV1beta1FSGroupStrategyOptions");
+const policyV1beta1HostPortRange_1 = require("./policyV1beta1HostPortRange");
+const policyV1beta1IDRange_1 = require("./policyV1beta1IDRange");
+const policyV1beta1PodSecurityPolicy_1 = require("./policyV1beta1PodSecurityPolicy");
+const policyV1beta1PodSecurityPolicyList_1 = require("./policyV1beta1PodSecurityPolicyList");
+const policyV1beta1PodSecurityPolicySpec_1 = require("./policyV1beta1PodSecurityPolicySpec");
+const policyV1beta1RunAsGroupStrategyOptions_1 = require("./policyV1beta1RunAsGroupStrategyOptions");
+const policyV1beta1RunAsUserStrategyOptions_1 = require("./policyV1beta1RunAsUserStrategyOptions");
+const policyV1beta1RuntimeClassStrategyOptions_1 = require("./policyV1beta1RuntimeClassStrategyOptions");
+const policyV1beta1SELinuxStrategyOptions_1 = require("./policyV1beta1SELinuxStrategyOptions");
+const policyV1beta1SupplementalGroupsStrategyOptions_1 = require("./policyV1beta1SupplementalGroupsStrategyOptions");
+const runtimeRawExtension_1 = require("./runtimeRawExtension");
+const v1APIGroup_1 = require("./v1APIGroup");
+const v1APIGroupList_1 = require("./v1APIGroupList");
+const v1APIResource_1 = require("./v1APIResource");
+const v1APIResourceList_1 = require("./v1APIResourceList");
+const v1APIService_1 = require("./v1APIService");
+const v1APIServiceCondition_1 = require("./v1APIServiceCondition");
+const v1APIServiceList_1 = require("./v1APIServiceList");
+const v1APIServiceSpec_1 = require("./v1APIServiceSpec");
+const v1APIServiceStatus_1 = require("./v1APIServiceStatus");
+const v1APIVersions_1 = require("./v1APIVersions");
+const v1AWSElasticBlockStoreVolumeSource_1 = require("./v1AWSElasticBlockStoreVolumeSource");
+const v1Affinity_1 = require("./v1Affinity");
+const v1AggregationRule_1 = require("./v1AggregationRule");
+const v1AttachedVolume_1 = require("./v1AttachedVolume");
+const v1AzureDiskVolumeSource_1 = require("./v1AzureDiskVolumeSource");
+const v1AzureFilePersistentVolumeSource_1 = require("./v1AzureFilePersistentVolumeSource");
+const v1AzureFileVolumeSource_1 = require("./v1AzureFileVolumeSource");
+const v1Binding_1 = require("./v1Binding");
+const v1CSIPersistentVolumeSource_1 = require("./v1CSIPersistentVolumeSource");
+const v1CSIVolumeSource_1 = require("./v1CSIVolumeSource");
+const v1Capabilities_1 = require("./v1Capabilities");
+const v1CephFSPersistentVolumeSource_1 = require("./v1CephFSPersistentVolumeSource");
+const v1CephFSVolumeSource_1 = require("./v1CephFSVolumeSource");
+const v1CinderPersistentVolumeSource_1 = require("./v1CinderPersistentVolumeSource");
+const v1CinderVolumeSource_1 = require("./v1CinderVolumeSource");
+const v1ClientIPConfig_1 = require("./v1ClientIPConfig");
+const v1ClusterRole_1 = require("./v1ClusterRole");
+const v1ClusterRoleBinding_1 = require("./v1ClusterRoleBinding");
+const v1ClusterRoleBindingList_1 = require("./v1ClusterRoleBindingList");
+const v1ClusterRoleList_1 = require("./v1ClusterRoleList");
+const v1ComponentCondition_1 = require("./v1ComponentCondition");
+const v1ComponentStatus_1 = require("./v1ComponentStatus");
+const v1ComponentStatusList_1 = require("./v1ComponentStatusList");
+const v1ConfigMap_1 = require("./v1ConfigMap");
+const v1ConfigMapEnvSource_1 = require("./v1ConfigMapEnvSource");
+const v1ConfigMapKeySelector_1 = require("./v1ConfigMapKeySelector");
+const v1ConfigMapList_1 = require("./v1ConfigMapList");
+const v1ConfigMapNodeConfigSource_1 = require("./v1ConfigMapNodeConfigSource");
+const v1ConfigMapProjection_1 = require("./v1ConfigMapProjection");
+const v1ConfigMapVolumeSource_1 = require("./v1ConfigMapVolumeSource");
+const v1Container_1 = require("./v1Container");
+const v1ContainerImage_1 = require("./v1ContainerImage");
+const v1ContainerPort_1 = require("./v1ContainerPort");
+const v1ContainerState_1 = require("./v1ContainerState");
+const v1ContainerStateRunning_1 = require("./v1ContainerStateRunning");
+const v1ContainerStateTerminated_1 = require("./v1ContainerStateTerminated");
+const v1ContainerStateWaiting_1 = require("./v1ContainerStateWaiting");
+const v1ContainerStatus_1 = require("./v1ContainerStatus");
+const v1ControllerRevision_1 = require("./v1ControllerRevision");
+const v1ControllerRevisionList_1 = require("./v1ControllerRevisionList");
+const v1CrossVersionObjectReference_1 = require("./v1CrossVersionObjectReference");
+const v1DaemonEndpoint_1 = require("./v1DaemonEndpoint");
+const v1DaemonSet_1 = require("./v1DaemonSet");
+const v1DaemonSetCondition_1 = require("./v1DaemonSetCondition");
+const v1DaemonSetList_1 = require("./v1DaemonSetList");
+const v1DaemonSetSpec_1 = require("./v1DaemonSetSpec");
+const v1DaemonSetStatus_1 = require("./v1DaemonSetStatus");
+const v1DaemonSetUpdateStrategy_1 = require("./v1DaemonSetUpdateStrategy");
+const v1DeleteOptions_1 = require("./v1DeleteOptions");
+const v1Deployment_1 = require("./v1Deployment");
+const v1DeploymentCondition_1 = require("./v1DeploymentCondition");
+const v1DeploymentList_1 = require("./v1DeploymentList");
+const v1DeploymentSpec_1 = require("./v1DeploymentSpec");
+const v1DeploymentStatus_1 = require("./v1DeploymentStatus");
+const v1DeploymentStrategy_1 = require("./v1DeploymentStrategy");
+const v1DownwardAPIProjection_1 = require("./v1DownwardAPIProjection");
+const v1DownwardAPIVolumeFile_1 = require("./v1DownwardAPIVolumeFile");
+const v1DownwardAPIVolumeSource_1 = require("./v1DownwardAPIVolumeSource");
+const v1EmptyDirVolumeSource_1 = require("./v1EmptyDirVolumeSource");
+const v1EndpointAddress_1 = require("./v1EndpointAddress");
+const v1EndpointPort_1 = require("./v1EndpointPort");
+const v1EndpointSubset_1 = require("./v1EndpointSubset");
+const v1Endpoints_1 = require("./v1Endpoints");
+const v1EndpointsList_1 = require("./v1EndpointsList");
+const v1EnvFromSource_1 = require("./v1EnvFromSource");
+const v1EnvVar_1 = require("./v1EnvVar");
+const v1EnvVarSource_1 = require("./v1EnvVarSource");
+const v1Event_1 = require("./v1Event");
+const v1EventList_1 = require("./v1EventList");
+const v1EventSeries_1 = require("./v1EventSeries");
+const v1EventSource_1 = require("./v1EventSource");
+const v1ExecAction_1 = require("./v1ExecAction");
+const v1FCVolumeSource_1 = require("./v1FCVolumeSource");
+const v1FlexPersistentVolumeSource_1 = require("./v1FlexPersistentVolumeSource");
+const v1FlexVolumeSource_1 = require("./v1FlexVolumeSource");
+const v1FlockerVolumeSource_1 = require("./v1FlockerVolumeSource");
+const v1GCEPersistentDiskVolumeSource_1 = require("./v1GCEPersistentDiskVolumeSource");
+const v1GitRepoVolumeSource_1 = require("./v1GitRepoVolumeSource");
+const v1GlusterfsPersistentVolumeSource_1 = require("./v1GlusterfsPersistentVolumeSource");
+const v1GlusterfsVolumeSource_1 = require("./v1GlusterfsVolumeSource");
+const v1GroupVersionForDiscovery_1 = require("./v1GroupVersionForDiscovery");
+const v1HTTPGetAction_1 = require("./v1HTTPGetAction");
+const v1HTTPHeader_1 = require("./v1HTTPHeader");
+const v1Handler_1 = require("./v1Handler");
+const v1HorizontalPodAutoscaler_1 = require("./v1HorizontalPodAutoscaler");
+const v1HorizontalPodAutoscalerList_1 = require("./v1HorizontalPodAutoscalerList");
+const v1HorizontalPodAutoscalerSpec_1 = require("./v1HorizontalPodAutoscalerSpec");
+const v1HorizontalPodAutoscalerStatus_1 = require("./v1HorizontalPodAutoscalerStatus");
+const v1HostAlias_1 = require("./v1HostAlias");
+const v1HostPathVolumeSource_1 = require("./v1HostPathVolumeSource");
+const v1IPBlock_1 = require("./v1IPBlock");
+const v1ISCSIPersistentVolumeSource_1 = require("./v1ISCSIPersistentVolumeSource");
+const v1ISCSIVolumeSource_1 = require("./v1ISCSIVolumeSource");
+const v1Initializer_1 = require("./v1Initializer");
+const v1Initializers_1 = require("./v1Initializers");
+const v1Job_1 = require("./v1Job");
+const v1JobCondition_1 = require("./v1JobCondition");
+const v1JobList_1 = require("./v1JobList");
+const v1JobSpec_1 = require("./v1JobSpec");
+const v1JobStatus_1 = require("./v1JobStatus");
+const v1KeyToPath_1 = require("./v1KeyToPath");
+const v1LabelSelector_1 = require("./v1LabelSelector");
+const v1LabelSelectorRequirement_1 = require("./v1LabelSelectorRequirement");
+const v1Lease_1 = require("./v1Lease");
+const v1LeaseList_1 = require("./v1LeaseList");
+const v1LeaseSpec_1 = require("./v1LeaseSpec");
+const v1Lifecycle_1 = require("./v1Lifecycle");
+const v1LimitRange_1 = require("./v1LimitRange");
+const v1LimitRangeItem_1 = require("./v1LimitRangeItem");
+const v1LimitRangeList_1 = require("./v1LimitRangeList");
+const v1LimitRangeSpec_1 = require("./v1LimitRangeSpec");
+const v1ListMeta_1 = require("./v1ListMeta");
+const v1LoadBalancerIngress_1 = require("./v1LoadBalancerIngress");
+const v1LoadBalancerStatus_1 = require("./v1LoadBalancerStatus");
+const v1LocalObjectReference_1 = require("./v1LocalObjectReference");
+const v1LocalSubjectAccessReview_1 = require("./v1LocalSubjectAccessReview");
+const v1LocalVolumeSource_1 = require("./v1LocalVolumeSource");
+const v1ManagedFieldsEntry_1 = require("./v1ManagedFieldsEntry");
+const v1NFSVolumeSource_1 = require("./v1NFSVolumeSource");
+const v1Namespace_1 = require("./v1Namespace");
+const v1NamespaceList_1 = require("./v1NamespaceList");
+const v1NamespaceSpec_1 = require("./v1NamespaceSpec");
+const v1NamespaceStatus_1 = require("./v1NamespaceStatus");
+const v1NetworkPolicy_1 = require("./v1NetworkPolicy");
+const v1NetworkPolicyEgressRule_1 = require("./v1NetworkPolicyEgressRule");
+const v1NetworkPolicyIngressRule_1 = require("./v1NetworkPolicyIngressRule");
+const v1NetworkPolicyList_1 = require("./v1NetworkPolicyList");
+const v1NetworkPolicyPeer_1 = require("./v1NetworkPolicyPeer");
+const v1NetworkPolicyPort_1 = require("./v1NetworkPolicyPort");
+const v1NetworkPolicySpec_1 = require("./v1NetworkPolicySpec");
+const v1Node_1 = require("./v1Node");
+const v1NodeAddress_1 = require("./v1NodeAddress");
+const v1NodeAffinity_1 = require("./v1NodeAffinity");
+const v1NodeCondition_1 = require("./v1NodeCondition");
+const v1NodeConfigSource_1 = require("./v1NodeConfigSource");
+const v1NodeConfigStatus_1 = require("./v1NodeConfigStatus");
+const v1NodeDaemonEndpoints_1 = require("./v1NodeDaemonEndpoints");
+const v1NodeList_1 = require("./v1NodeList");
+const v1NodeSelector_1 = require("./v1NodeSelector");
+const v1NodeSelectorRequirement_1 = require("./v1NodeSelectorRequirement");
+const v1NodeSelectorTerm_1 = require("./v1NodeSelectorTerm");
+const v1NodeSpec_1 = require("./v1NodeSpec");
+const v1NodeStatus_1 = require("./v1NodeStatus");
+const v1NodeSystemInfo_1 = require("./v1NodeSystemInfo");
+const v1NonResourceAttributes_1 = require("./v1NonResourceAttributes");
+const v1NonResourceRule_1 = require("./v1NonResourceRule");
+const v1ObjectFieldSelector_1 = require("./v1ObjectFieldSelector");
+const v1ObjectMeta_1 = require("./v1ObjectMeta");
+const v1ObjectReference_1 = require("./v1ObjectReference");
+const v1OwnerReference_1 = require("./v1OwnerReference");
+const v1PersistentVolume_1 = require("./v1PersistentVolume");
+const v1PersistentVolumeClaim_1 = require("./v1PersistentVolumeClaim");
+const v1PersistentVolumeClaimCondition_1 = require("./v1PersistentVolumeClaimCondition");
+const v1PersistentVolumeClaimList_1 = require("./v1PersistentVolumeClaimList");
+const v1PersistentVolumeClaimSpec_1 = require("./v1PersistentVolumeClaimSpec");
+const v1PersistentVolumeClaimStatus_1 = require("./v1PersistentVolumeClaimStatus");
+const v1PersistentVolumeClaimVolumeSource_1 = require("./v1PersistentVolumeClaimVolumeSource");
+const v1PersistentVolumeList_1 = require("./v1PersistentVolumeList");
+const v1PersistentVolumeSpec_1 = require("./v1PersistentVolumeSpec");
+const v1PersistentVolumeStatus_1 = require("./v1PersistentVolumeStatus");
+const v1PhotonPersistentDiskVolumeSource_1 = require("./v1PhotonPersistentDiskVolumeSource");
+const v1Pod_1 = require("./v1Pod");
+const v1PodAffinity_1 = require("./v1PodAffinity");
+const v1PodAffinityTerm_1 = require("./v1PodAffinityTerm");
+const v1PodAntiAffinity_1 = require("./v1PodAntiAffinity");
+const v1PodCondition_1 = require("./v1PodCondition");
+const v1PodDNSConfig_1 = require("./v1PodDNSConfig");
+const v1PodDNSConfigOption_1 = require("./v1PodDNSConfigOption");
+const v1PodList_1 = require("./v1PodList");
+const v1PodReadinessGate_1 = require("./v1PodReadinessGate");
+const v1PodSecurityContext_1 = require("./v1PodSecurityContext");
+const v1PodSpec_1 = require("./v1PodSpec");
+const v1PodStatus_1 = require("./v1PodStatus");
+const v1PodTemplate_1 = require("./v1PodTemplate");
+const v1PodTemplateList_1 = require("./v1PodTemplateList");
+const v1PodTemplateSpec_1 = require("./v1PodTemplateSpec");
+const v1PolicyRule_1 = require("./v1PolicyRule");
+const v1PortworxVolumeSource_1 = require("./v1PortworxVolumeSource");
+const v1Preconditions_1 = require("./v1Preconditions");
+const v1PreferredSchedulingTerm_1 = require("./v1PreferredSchedulingTerm");
+const v1PriorityClass_1 = require("./v1PriorityClass");
+const v1PriorityClassList_1 = require("./v1PriorityClassList");
+const v1Probe_1 = require("./v1Probe");
+const v1ProjectedVolumeSource_1 = require("./v1ProjectedVolumeSource");
+const v1QuobyteVolumeSource_1 = require("./v1QuobyteVolumeSource");
+const v1RBDPersistentVolumeSource_1 = require("./v1RBDPersistentVolumeSource");
+const v1RBDVolumeSource_1 = require("./v1RBDVolumeSource");
+const v1ReplicaSet_1 = require("./v1ReplicaSet");
+const v1ReplicaSetCondition_1 = require("./v1ReplicaSetCondition");
+const v1ReplicaSetList_1 = require("./v1ReplicaSetList");
+const v1ReplicaSetSpec_1 = require("./v1ReplicaSetSpec");
+const v1ReplicaSetStatus_1 = require("./v1ReplicaSetStatus");
+const v1ReplicationController_1 = require("./v1ReplicationController");
+const v1ReplicationControllerCondition_1 = require("./v1ReplicationControllerCondition");
+const v1ReplicationControllerList_1 = require("./v1ReplicationControllerList");
+const v1ReplicationControllerSpec_1 = require("./v1ReplicationControllerSpec");
+const v1ReplicationControllerStatus_1 = require("./v1ReplicationControllerStatus");
+const v1ResourceAttributes_1 = require("./v1ResourceAttributes");
+const v1ResourceFieldSelector_1 = require("./v1ResourceFieldSelector");
+const v1ResourceQuota_1 = require("./v1ResourceQuota");
+const v1ResourceQuotaList_1 = require("./v1ResourceQuotaList");
+const v1ResourceQuotaSpec_1 = require("./v1ResourceQuotaSpec");
+const v1ResourceQuotaStatus_1 = require("./v1ResourceQuotaStatus");
+const v1ResourceRequirements_1 = require("./v1ResourceRequirements");
+const v1ResourceRule_1 = require("./v1ResourceRule");
+const v1Role_1 = require("./v1Role");
+const v1RoleBinding_1 = require("./v1RoleBinding");
+const v1RoleBindingList_1 = require("./v1RoleBindingList");
+const v1RoleList_1 = require("./v1RoleList");
+const v1RoleRef_1 = require("./v1RoleRef");
+const v1RollingUpdateDaemonSet_1 = require("./v1RollingUpdateDaemonSet");
+const v1RollingUpdateDeployment_1 = require("./v1RollingUpdateDeployment");
+const v1RollingUpdateStatefulSetStrategy_1 = require("./v1RollingUpdateStatefulSetStrategy");
+const v1SELinuxOptions_1 = require("./v1SELinuxOptions");
+const v1Scale_1 = require("./v1Scale");
+const v1ScaleIOPersistentVolumeSource_1 = require("./v1ScaleIOPersistentVolumeSource");
+const v1ScaleIOVolumeSource_1 = require("./v1ScaleIOVolumeSource");
+const v1ScaleSpec_1 = require("./v1ScaleSpec");
+const v1ScaleStatus_1 = require("./v1ScaleStatus");
+const v1ScopeSelector_1 = require("./v1ScopeSelector");
+const v1ScopedResourceSelectorRequirement_1 = require("./v1ScopedResourceSelectorRequirement");
+const v1Secret_1 = require("./v1Secret");
+const v1SecretEnvSource_1 = require("./v1SecretEnvSource");
+const v1SecretKeySelector_1 = require("./v1SecretKeySelector");
+const v1SecretList_1 = require("./v1SecretList");
+const v1SecretProjection_1 = require("./v1SecretProjection");
+const v1SecretReference_1 = require("./v1SecretReference");
+const v1SecretVolumeSource_1 = require("./v1SecretVolumeSource");
+const v1SecurityContext_1 = require("./v1SecurityContext");
+const v1SelfSubjectAccessReview_1 = require("./v1SelfSubjectAccessReview");
+const v1SelfSubjectAccessReviewSpec_1 = require("./v1SelfSubjectAccessReviewSpec");
+const v1SelfSubjectRulesReview_1 = require("./v1SelfSubjectRulesReview");
+const v1SelfSubjectRulesReviewSpec_1 = require("./v1SelfSubjectRulesReviewSpec");
+const v1ServerAddressByClientCIDR_1 = require("./v1ServerAddressByClientCIDR");
+const v1Service_1 = require("./v1Service");
+const v1ServiceAccount_1 = require("./v1ServiceAccount");
+const v1ServiceAccountList_1 = require("./v1ServiceAccountList");
+const v1ServiceAccountTokenProjection_1 = require("./v1ServiceAccountTokenProjection");
+const v1ServiceList_1 = require("./v1ServiceList");
+const v1ServicePort_1 = require("./v1ServicePort");
+const v1ServiceReference_1 = require("./v1ServiceReference");
+const v1ServiceSpec_1 = require("./v1ServiceSpec");
+const v1ServiceStatus_1 = require("./v1ServiceStatus");
+const v1SessionAffinityConfig_1 = require("./v1SessionAffinityConfig");
+const v1StatefulSet_1 = require("./v1StatefulSet");
+const v1StatefulSetCondition_1 = require("./v1StatefulSetCondition");
+const v1StatefulSetList_1 = require("./v1StatefulSetList");
+const v1StatefulSetSpec_1 = require("./v1StatefulSetSpec");
+const v1StatefulSetStatus_1 = require("./v1StatefulSetStatus");
+const v1StatefulSetUpdateStrategy_1 = require("./v1StatefulSetUpdateStrategy");
+const v1Status_1 = require("./v1Status");
+const v1StatusCause_1 = require("./v1StatusCause");
+const v1StatusDetails_1 = require("./v1StatusDetails");
+const v1StorageClass_1 = require("./v1StorageClass");
+const v1StorageClassList_1 = require("./v1StorageClassList");
+const v1StorageOSPersistentVolumeSource_1 = require("./v1StorageOSPersistentVolumeSource");
+const v1StorageOSVolumeSource_1 = require("./v1StorageOSVolumeSource");
+const v1Subject_1 = require("./v1Subject");
+const v1SubjectAccessReview_1 = require("./v1SubjectAccessReview");
+const v1SubjectAccessReviewSpec_1 = require("./v1SubjectAccessReviewSpec");
+const v1SubjectAccessReviewStatus_1 = require("./v1SubjectAccessReviewStatus");
+const v1SubjectRulesReviewStatus_1 = require("./v1SubjectRulesReviewStatus");
+const v1Sysctl_1 = require("./v1Sysctl");
+const v1TCPSocketAction_1 = require("./v1TCPSocketAction");
+const v1Taint_1 = require("./v1Taint");
+const v1TokenReview_1 = require("./v1TokenReview");
+const v1TokenReviewSpec_1 = require("./v1TokenReviewSpec");
+const v1TokenReviewStatus_1 = require("./v1TokenReviewStatus");
+const v1Toleration_1 = require("./v1Toleration");
+const v1TopologySelectorLabelRequirement_1 = require("./v1TopologySelectorLabelRequirement");
+const v1TopologySelectorTerm_1 = require("./v1TopologySelectorTerm");
+const v1TypedLocalObjectReference_1 = require("./v1TypedLocalObjectReference");
+const v1UserInfo_1 = require("./v1UserInfo");
+const v1Volume_1 = require("./v1Volume");
+const v1VolumeAttachment_1 = require("./v1VolumeAttachment");
+const v1VolumeAttachmentList_1 = require("./v1VolumeAttachmentList");
+const v1VolumeAttachmentSource_1 = require("./v1VolumeAttachmentSource");
+const v1VolumeAttachmentSpec_1 = require("./v1VolumeAttachmentSpec");
+const v1VolumeAttachmentStatus_1 = require("./v1VolumeAttachmentStatus");
+const v1VolumeDevice_1 = require("./v1VolumeDevice");
+const v1VolumeError_1 = require("./v1VolumeError");
+const v1VolumeMount_1 = require("./v1VolumeMount");
+const v1VolumeNodeAffinity_1 = require("./v1VolumeNodeAffinity");
+const v1VolumeProjection_1 = require("./v1VolumeProjection");
+const v1VsphereVirtualDiskVolumeSource_1 = require("./v1VsphereVirtualDiskVolumeSource");
+const v1WatchEvent_1 = require("./v1WatchEvent");
+const v1WeightedPodAffinityTerm_1 = require("./v1WeightedPodAffinityTerm");
+const v1WindowsSecurityContextOptions_1 = require("./v1WindowsSecurityContextOptions");
+const v1alpha1AggregationRule_1 = require("./v1alpha1AggregationRule");
+const v1alpha1AuditSink_1 = require("./v1alpha1AuditSink");
+const v1alpha1AuditSinkList_1 = require("./v1alpha1AuditSinkList");
+const v1alpha1AuditSinkSpec_1 = require("./v1alpha1AuditSinkSpec");
+const v1alpha1ClusterRole_1 = require("./v1alpha1ClusterRole");
+const v1alpha1ClusterRoleBinding_1 = require("./v1alpha1ClusterRoleBinding");
+const v1alpha1ClusterRoleBindingList_1 = require("./v1alpha1ClusterRoleBindingList");
+const v1alpha1ClusterRoleList_1 = require("./v1alpha1ClusterRoleList");
+const v1alpha1PodPreset_1 = require("./v1alpha1PodPreset");
+const v1alpha1PodPresetList_1 = require("./v1alpha1PodPresetList");
+const v1alpha1PodPresetSpec_1 = require("./v1alpha1PodPresetSpec");
+const v1alpha1Policy_1 = require("./v1alpha1Policy");
+const v1alpha1PolicyRule_1 = require("./v1alpha1PolicyRule");
+const v1alpha1PriorityClass_1 = require("./v1alpha1PriorityClass");
+const v1alpha1PriorityClassList_1 = require("./v1alpha1PriorityClassList");
+const v1alpha1Role_1 = require("./v1alpha1Role");
+const v1alpha1RoleBinding_1 = require("./v1alpha1RoleBinding");
+const v1alpha1RoleBindingList_1 = require("./v1alpha1RoleBindingList");
+const v1alpha1RoleList_1 = require("./v1alpha1RoleList");
+const v1alpha1RoleRef_1 = require("./v1alpha1RoleRef");
+const v1alpha1RuntimeClass_1 = require("./v1alpha1RuntimeClass");
+const v1alpha1RuntimeClassList_1 = require("./v1alpha1RuntimeClassList");
+const v1alpha1RuntimeClassSpec_1 = require("./v1alpha1RuntimeClassSpec");
+const v1alpha1ServiceReference_1 = require("./v1alpha1ServiceReference");
+const v1alpha1Subject_1 = require("./v1alpha1Subject");
+const v1alpha1VolumeAttachment_1 = require("./v1alpha1VolumeAttachment");
+const v1alpha1VolumeAttachmentList_1 = require("./v1alpha1VolumeAttachmentList");
+const v1alpha1VolumeAttachmentSource_1 = require("./v1alpha1VolumeAttachmentSource");
+const v1alpha1VolumeAttachmentSpec_1 = require("./v1alpha1VolumeAttachmentSpec");
+const v1alpha1VolumeAttachmentStatus_1 = require("./v1alpha1VolumeAttachmentStatus");
+const v1alpha1VolumeError_1 = require("./v1alpha1VolumeError");
+const v1alpha1Webhook_1 = require("./v1alpha1Webhook");
+const v1alpha1WebhookClientConfig_1 = require("./v1alpha1WebhookClientConfig");
+const v1alpha1WebhookThrottleConfig_1 = require("./v1alpha1WebhookThrottleConfig");
+const v1beta1APIService_1 = require("./v1beta1APIService");
+const v1beta1APIServiceCondition_1 = require("./v1beta1APIServiceCondition");
+const v1beta1APIServiceList_1 = require("./v1beta1APIServiceList");
+const v1beta1APIServiceSpec_1 = require("./v1beta1APIServiceSpec");
+const v1beta1APIServiceStatus_1 = require("./v1beta1APIServiceStatus");
+const v1beta1AggregationRule_1 = require("./v1beta1AggregationRule");
+const v1beta1CSIDriver_1 = require("./v1beta1CSIDriver");
+const v1beta1CSIDriverList_1 = require("./v1beta1CSIDriverList");
+const v1beta1CSIDriverSpec_1 = require("./v1beta1CSIDriverSpec");
+const v1beta1CSINode_1 = require("./v1beta1CSINode");
+const v1beta1CSINodeDriver_1 = require("./v1beta1CSINodeDriver");
+const v1beta1CSINodeList_1 = require("./v1beta1CSINodeList");
+const v1beta1CSINodeSpec_1 = require("./v1beta1CSINodeSpec");
+const v1beta1CertificateSigningRequest_1 = require("./v1beta1CertificateSigningRequest");
+const v1beta1CertificateSigningRequestCondition_1 = require("./v1beta1CertificateSigningRequestCondition");
+const v1beta1CertificateSigningRequestList_1 = require("./v1beta1CertificateSigningRequestList");
+const v1beta1CertificateSigningRequestSpec_1 = require("./v1beta1CertificateSigningRequestSpec");
+const v1beta1CertificateSigningRequestStatus_1 = require("./v1beta1CertificateSigningRequestStatus");
+const v1beta1ClusterRole_1 = require("./v1beta1ClusterRole");
+const v1beta1ClusterRoleBinding_1 = require("./v1beta1ClusterRoleBinding");
+const v1beta1ClusterRoleBindingList_1 = require("./v1beta1ClusterRoleBindingList");
+const v1beta1ClusterRoleList_1 = require("./v1beta1ClusterRoleList");
+const v1beta1ControllerRevision_1 = require("./v1beta1ControllerRevision");
+const v1beta1ControllerRevisionList_1 = require("./v1beta1ControllerRevisionList");
+const v1beta1CronJob_1 = require("./v1beta1CronJob");
+const v1beta1CronJobList_1 = require("./v1beta1CronJobList");
+const v1beta1CronJobSpec_1 = require("./v1beta1CronJobSpec");
+const v1beta1CronJobStatus_1 = require("./v1beta1CronJobStatus");
+const v1beta1CustomResourceColumnDefinition_1 = require("./v1beta1CustomResourceColumnDefinition");
+const v1beta1CustomResourceConversion_1 = require("./v1beta1CustomResourceConversion");
+const v1beta1CustomResourceDefinition_1 = require("./v1beta1CustomResourceDefinition");
+const v1beta1CustomResourceDefinitionCondition_1 = require("./v1beta1CustomResourceDefinitionCondition");
+const v1beta1CustomResourceDefinitionList_1 = require("./v1beta1CustomResourceDefinitionList");
+const v1beta1CustomResourceDefinitionNames_1 = require("./v1beta1CustomResourceDefinitionNames");
+const v1beta1CustomResourceDefinitionSpec_1 = require("./v1beta1CustomResourceDefinitionSpec");
+const v1beta1CustomResourceDefinitionStatus_1 = require("./v1beta1CustomResourceDefinitionStatus");
+const v1beta1CustomResourceDefinitionVersion_1 = require("./v1beta1CustomResourceDefinitionVersion");
+const v1beta1CustomResourceSubresourceScale_1 = require("./v1beta1CustomResourceSubresourceScale");
+const v1beta1CustomResourceSubresources_1 = require("./v1beta1CustomResourceSubresources");
+const v1beta1CustomResourceValidation_1 = require("./v1beta1CustomResourceValidation");
+const v1beta1DaemonSet_1 = require("./v1beta1DaemonSet");
+const v1beta1DaemonSetCondition_1 = require("./v1beta1DaemonSetCondition");
+const v1beta1DaemonSetList_1 = require("./v1beta1DaemonSetList");
+const v1beta1DaemonSetSpec_1 = require("./v1beta1DaemonSetSpec");
+const v1beta1DaemonSetStatus_1 = require("./v1beta1DaemonSetStatus");
+const v1beta1DaemonSetUpdateStrategy_1 = require("./v1beta1DaemonSetUpdateStrategy");
+const v1beta1Event_1 = require("./v1beta1Event");
+const v1beta1EventList_1 = require("./v1beta1EventList");
+const v1beta1EventSeries_1 = require("./v1beta1EventSeries");
+const v1beta1Eviction_1 = require("./v1beta1Eviction");
+const v1beta1ExternalDocumentation_1 = require("./v1beta1ExternalDocumentation");
+const v1beta1IPBlock_1 = require("./v1beta1IPBlock");
+const v1beta1JSONSchemaProps_1 = require("./v1beta1JSONSchemaProps");
+const v1beta1JobTemplateSpec_1 = require("./v1beta1JobTemplateSpec");
+const v1beta1Lease_1 = require("./v1beta1Lease");
+const v1beta1LeaseList_1 = require("./v1beta1LeaseList");
+const v1beta1LeaseSpec_1 = require("./v1beta1LeaseSpec");
+const v1beta1LocalSubjectAccessReview_1 = require("./v1beta1LocalSubjectAccessReview");
+const v1beta1MutatingWebhook_1 = require("./v1beta1MutatingWebhook");
+const v1beta1MutatingWebhookConfiguration_1 = require("./v1beta1MutatingWebhookConfiguration");
+const v1beta1MutatingWebhookConfigurationList_1 = require("./v1beta1MutatingWebhookConfigurationList");
+const v1beta1NetworkPolicy_1 = require("./v1beta1NetworkPolicy");
+const v1beta1NetworkPolicyEgressRule_1 = require("./v1beta1NetworkPolicyEgressRule");
+const v1beta1NetworkPolicyIngressRule_1 = require("./v1beta1NetworkPolicyIngressRule");
+const v1beta1NetworkPolicyList_1 = require("./v1beta1NetworkPolicyList");
+const v1beta1NetworkPolicyPeer_1 = require("./v1beta1NetworkPolicyPeer");
+const v1beta1NetworkPolicyPort_1 = require("./v1beta1NetworkPolicyPort");
+const v1beta1NetworkPolicySpec_1 = require("./v1beta1NetworkPolicySpec");
+const v1beta1NonResourceAttributes_1 = require("./v1beta1NonResourceAttributes");
+const v1beta1NonResourceRule_1 = require("./v1beta1NonResourceRule");
+const v1beta1PodDisruptionBudget_1 = require("./v1beta1PodDisruptionBudget");
+const v1beta1PodDisruptionBudgetList_1 = require("./v1beta1PodDisruptionBudgetList");
+const v1beta1PodDisruptionBudgetSpec_1 = require("./v1beta1PodDisruptionBudgetSpec");
+const v1beta1PodDisruptionBudgetStatus_1 = require("./v1beta1PodDisruptionBudgetStatus");
+const v1beta1PolicyRule_1 = require("./v1beta1PolicyRule");
+const v1beta1PriorityClass_1 = require("./v1beta1PriorityClass");
+const v1beta1PriorityClassList_1 = require("./v1beta1PriorityClassList");
+const v1beta1ReplicaSet_1 = require("./v1beta1ReplicaSet");
+const v1beta1ReplicaSetCondition_1 = require("./v1beta1ReplicaSetCondition");
+const v1beta1ReplicaSetList_1 = require("./v1beta1ReplicaSetList");
+const v1beta1ReplicaSetSpec_1 = require("./v1beta1ReplicaSetSpec");
+const v1beta1ReplicaSetStatus_1 = require("./v1beta1ReplicaSetStatus");
+const v1beta1ResourceAttributes_1 = require("./v1beta1ResourceAttributes");
+const v1beta1ResourceRule_1 = require("./v1beta1ResourceRule");
+const v1beta1Role_1 = require("./v1beta1Role");
+const v1beta1RoleBinding_1 = require("./v1beta1RoleBinding");
+const v1beta1RoleBindingList_1 = require("./v1beta1RoleBindingList");
+const v1beta1RoleList_1 = require("./v1beta1RoleList");
+const v1beta1RoleRef_1 = require("./v1beta1RoleRef");
+const v1beta1RollingUpdateDaemonSet_1 = require("./v1beta1RollingUpdateDaemonSet");
+const v1beta1RollingUpdateStatefulSetStrategy_1 = require("./v1beta1RollingUpdateStatefulSetStrategy");
+const v1beta1RuleWithOperations_1 = require("./v1beta1RuleWithOperations");
+const v1beta1RuntimeClass_1 = require("./v1beta1RuntimeClass");
+const v1beta1RuntimeClassList_1 = require("./v1beta1RuntimeClassList");
+const v1beta1SelfSubjectAccessReview_1 = require("./v1beta1SelfSubjectAccessReview");
+const v1beta1SelfSubjectAccessReviewSpec_1 = require("./v1beta1SelfSubjectAccessReviewSpec");
+const v1beta1SelfSubjectRulesReview_1 = require("./v1beta1SelfSubjectRulesReview");
+const v1beta1SelfSubjectRulesReviewSpec_1 = require("./v1beta1SelfSubjectRulesReviewSpec");
+const v1beta1StatefulSet_1 = require("./v1beta1StatefulSet");
+const v1beta1StatefulSetCondition_1 = require("./v1beta1StatefulSetCondition");
+const v1beta1StatefulSetList_1 = require("./v1beta1StatefulSetList");
+const v1beta1StatefulSetSpec_1 = require("./v1beta1StatefulSetSpec");
+const v1beta1StatefulSetStatus_1 = require("./v1beta1StatefulSetStatus");
+const v1beta1StatefulSetUpdateStrategy_1 = require("./v1beta1StatefulSetUpdateStrategy");
+const v1beta1StorageClass_1 = require("./v1beta1StorageClass");
+const v1beta1StorageClassList_1 = require("./v1beta1StorageClassList");
+const v1beta1Subject_1 = require("./v1beta1Subject");
+const v1beta1SubjectAccessReview_1 = require("./v1beta1SubjectAccessReview");
+const v1beta1SubjectAccessReviewSpec_1 = require("./v1beta1SubjectAccessReviewSpec");
+const v1beta1SubjectAccessReviewStatus_1 = require("./v1beta1SubjectAccessReviewStatus");
+const v1beta1SubjectRulesReviewStatus_1 = require("./v1beta1SubjectRulesReviewStatus");
+const v1beta1TokenReview_1 = require("./v1beta1TokenReview");
+const v1beta1TokenReviewSpec_1 = require("./v1beta1TokenReviewSpec");
+const v1beta1TokenReviewStatus_1 = require("./v1beta1TokenReviewStatus");
+const v1beta1UserInfo_1 = require("./v1beta1UserInfo");
+const v1beta1ValidatingWebhook_1 = require("./v1beta1ValidatingWebhook");
+const v1beta1ValidatingWebhookConfiguration_1 = require("./v1beta1ValidatingWebhookConfiguration");
+const v1beta1ValidatingWebhookConfigurationList_1 = require("./v1beta1ValidatingWebhookConfigurationList");
+const v1beta1VolumeAttachment_1 = require("./v1beta1VolumeAttachment");
+const v1beta1VolumeAttachmentList_1 = require("./v1beta1VolumeAttachmentList");
+const v1beta1VolumeAttachmentSource_1 = require("./v1beta1VolumeAttachmentSource");
+const v1beta1VolumeAttachmentSpec_1 = require("./v1beta1VolumeAttachmentSpec");
+const v1beta1VolumeAttachmentStatus_1 = require("./v1beta1VolumeAttachmentStatus");
+const v1beta1VolumeError_1 = require("./v1beta1VolumeError");
+const v1beta2ControllerRevision_1 = require("./v1beta2ControllerRevision");
+const v1beta2ControllerRevisionList_1 = require("./v1beta2ControllerRevisionList");
+const v1beta2DaemonSet_1 = require("./v1beta2DaemonSet");
+const v1beta2DaemonSetCondition_1 = require("./v1beta2DaemonSetCondition");
+const v1beta2DaemonSetList_1 = require("./v1beta2DaemonSetList");
+const v1beta2DaemonSetSpec_1 = require("./v1beta2DaemonSetSpec");
+const v1beta2DaemonSetStatus_1 = require("./v1beta2DaemonSetStatus");
+const v1beta2DaemonSetUpdateStrategy_1 = require("./v1beta2DaemonSetUpdateStrategy");
+const v1beta2Deployment_1 = require("./v1beta2Deployment");
+const v1beta2DeploymentCondition_1 = require("./v1beta2DeploymentCondition");
+const v1beta2DeploymentList_1 = require("./v1beta2DeploymentList");
+const v1beta2DeploymentSpec_1 = require("./v1beta2DeploymentSpec");
+const v1beta2DeploymentStatus_1 = require("./v1beta2DeploymentStatus");
+const v1beta2DeploymentStrategy_1 = require("./v1beta2DeploymentStrategy");
+const v1beta2ReplicaSet_1 = require("./v1beta2ReplicaSet");
+const v1beta2ReplicaSetCondition_1 = require("./v1beta2ReplicaSetCondition");
+const v1beta2ReplicaSetList_1 = require("./v1beta2ReplicaSetList");
+const v1beta2ReplicaSetSpec_1 = require("./v1beta2ReplicaSetSpec");
+const v1beta2ReplicaSetStatus_1 = require("./v1beta2ReplicaSetStatus");
+const v1beta2RollingUpdateDaemonSet_1 = require("./v1beta2RollingUpdateDaemonSet");
+const v1beta2RollingUpdateDeployment_1 = require("./v1beta2RollingUpdateDeployment");
+const v1beta2RollingUpdateStatefulSetStrategy_1 = require("./v1beta2RollingUpdateStatefulSetStrategy");
+const v1beta2Scale_1 = require("./v1beta2Scale");
+const v1beta2ScaleSpec_1 = require("./v1beta2ScaleSpec");
+const v1beta2ScaleStatus_1 = require("./v1beta2ScaleStatus");
+const v1beta2StatefulSet_1 = require("./v1beta2StatefulSet");
+const v1beta2StatefulSetCondition_1 = require("./v1beta2StatefulSetCondition");
+const v1beta2StatefulSetList_1 = require("./v1beta2StatefulSetList");
+const v1beta2StatefulSetSpec_1 = require("./v1beta2StatefulSetSpec");
+const v1beta2StatefulSetStatus_1 = require("./v1beta2StatefulSetStatus");
+const v1beta2StatefulSetUpdateStrategy_1 = require("./v1beta2StatefulSetUpdateStrategy");
+const v2alpha1CronJob_1 = require("./v2alpha1CronJob");
+const v2alpha1CronJobList_1 = require("./v2alpha1CronJobList");
+const v2alpha1CronJobSpec_1 = require("./v2alpha1CronJobSpec");
+const v2alpha1CronJobStatus_1 = require("./v2alpha1CronJobStatus");
+const v2alpha1JobTemplateSpec_1 = require("./v2alpha1JobTemplateSpec");
+const v2beta1CrossVersionObjectReference_1 = require("./v2beta1CrossVersionObjectReference");
+const v2beta1ExternalMetricSource_1 = require("./v2beta1ExternalMetricSource");
+const v2beta1ExternalMetricStatus_1 = require("./v2beta1ExternalMetricStatus");
+const v2beta1HorizontalPodAutoscaler_1 = require("./v2beta1HorizontalPodAutoscaler");
+const v2beta1HorizontalPodAutoscalerCondition_1 = require("./v2beta1HorizontalPodAutoscalerCondition");
+const v2beta1HorizontalPodAutoscalerList_1 = require("./v2beta1HorizontalPodAutoscalerList");
+const v2beta1HorizontalPodAutoscalerSpec_1 = require("./v2beta1HorizontalPodAutoscalerSpec");
+const v2beta1HorizontalPodAutoscalerStatus_1 = require("./v2beta1HorizontalPodAutoscalerStatus");
+const v2beta1MetricSpec_1 = require("./v2beta1MetricSpec");
+const v2beta1MetricStatus_1 = require("./v2beta1MetricStatus");
+const v2beta1ObjectMetricSource_1 = require("./v2beta1ObjectMetricSource");
+const v2beta1ObjectMetricStatus_1 = require("./v2beta1ObjectMetricStatus");
+const v2beta1PodsMetricSource_1 = require("./v2beta1PodsMetricSource");
+const v2beta1PodsMetricStatus_1 = require("./v2beta1PodsMetricStatus");
+const v2beta1ResourceMetricSource_1 = require("./v2beta1ResourceMetricSource");
+const v2beta1ResourceMetricStatus_1 = require("./v2beta1ResourceMetricStatus");
+const v2beta2CrossVersionObjectReference_1 = require("./v2beta2CrossVersionObjectReference");
+const v2beta2ExternalMetricSource_1 = require("./v2beta2ExternalMetricSource");
+const v2beta2ExternalMetricStatus_1 = require("./v2beta2ExternalMetricStatus");
+const v2beta2HorizontalPodAutoscaler_1 = require("./v2beta2HorizontalPodAutoscaler");
+const v2beta2HorizontalPodAutoscalerCondition_1 = require("./v2beta2HorizontalPodAutoscalerCondition");
+const v2beta2HorizontalPodAutoscalerList_1 = require("./v2beta2HorizontalPodAutoscalerList");
+const v2beta2HorizontalPodAutoscalerSpec_1 = require("./v2beta2HorizontalPodAutoscalerSpec");
+const v2beta2HorizontalPodAutoscalerStatus_1 = require("./v2beta2HorizontalPodAutoscalerStatus");
+const v2beta2MetricIdentifier_1 = require("./v2beta2MetricIdentifier");
+const v2beta2MetricSpec_1 = require("./v2beta2MetricSpec");
+const v2beta2MetricStatus_1 = require("./v2beta2MetricStatus");
+const v2beta2MetricTarget_1 = require("./v2beta2MetricTarget");
+const v2beta2MetricValueStatus_1 = require("./v2beta2MetricValueStatus");
+const v2beta2ObjectMetricSource_1 = require("./v2beta2ObjectMetricSource");
+const v2beta2ObjectMetricStatus_1 = require("./v2beta2ObjectMetricStatus");
+const v2beta2PodsMetricSource_1 = require("./v2beta2PodsMetricSource");
+const v2beta2PodsMetricStatus_1 = require("./v2beta2PodsMetricStatus");
+const v2beta2ResourceMetricSource_1 = require("./v2beta2ResourceMetricSource");
+const v2beta2ResourceMetricStatus_1 = require("./v2beta2ResourceMetricStatus");
+const versionInfo_1 = require("./versionInfo");
+/* tslint:disable:no-unused-variable */
+let primitives = [
+ "string",
+ "boolean",
+ "double",
+ "integer",
+ "long",
+ "float",
+ "number",
+ "any"
+];
+let enumsMap = {};
+let typeMap = {
+ "AdmissionregistrationV1beta1ServiceReference": admissionregistrationV1beta1ServiceReference_1.AdmissionregistrationV1beta1ServiceReference,
+ "AdmissionregistrationV1beta1WebhookClientConfig": admissionregistrationV1beta1WebhookClientConfig_1.AdmissionregistrationV1beta1WebhookClientConfig,
+ "ApiextensionsV1beta1ServiceReference": apiextensionsV1beta1ServiceReference_1.ApiextensionsV1beta1ServiceReference,
+ "ApiextensionsV1beta1WebhookClientConfig": apiextensionsV1beta1WebhookClientConfig_1.ApiextensionsV1beta1WebhookClientConfig,
+ "ApiregistrationV1beta1ServiceReference": apiregistrationV1beta1ServiceReference_1.ApiregistrationV1beta1ServiceReference,
+ "AppsV1beta1Deployment": appsV1beta1Deployment_1.AppsV1beta1Deployment,
+ "AppsV1beta1DeploymentCondition": appsV1beta1DeploymentCondition_1.AppsV1beta1DeploymentCondition,
+ "AppsV1beta1DeploymentList": appsV1beta1DeploymentList_1.AppsV1beta1DeploymentList,
+ "AppsV1beta1DeploymentRollback": appsV1beta1DeploymentRollback_1.AppsV1beta1DeploymentRollback,
+ "AppsV1beta1DeploymentSpec": appsV1beta1DeploymentSpec_1.AppsV1beta1DeploymentSpec,
+ "AppsV1beta1DeploymentStatus": appsV1beta1DeploymentStatus_1.AppsV1beta1DeploymentStatus,
+ "AppsV1beta1DeploymentStrategy": appsV1beta1DeploymentStrategy_1.AppsV1beta1DeploymentStrategy,
+ "AppsV1beta1RollbackConfig": appsV1beta1RollbackConfig_1.AppsV1beta1RollbackConfig,
+ "AppsV1beta1RollingUpdateDeployment": appsV1beta1RollingUpdateDeployment_1.AppsV1beta1RollingUpdateDeployment,
+ "AppsV1beta1Scale": appsV1beta1Scale_1.AppsV1beta1Scale,
+ "AppsV1beta1ScaleSpec": appsV1beta1ScaleSpec_1.AppsV1beta1ScaleSpec,
+ "AppsV1beta1ScaleStatus": appsV1beta1ScaleStatus_1.AppsV1beta1ScaleStatus,
+ "ExtensionsV1beta1AllowedCSIDriver": extensionsV1beta1AllowedCSIDriver_1.ExtensionsV1beta1AllowedCSIDriver,
+ "ExtensionsV1beta1AllowedFlexVolume": extensionsV1beta1AllowedFlexVolume_1.ExtensionsV1beta1AllowedFlexVolume,
+ "ExtensionsV1beta1AllowedHostPath": extensionsV1beta1AllowedHostPath_1.ExtensionsV1beta1AllowedHostPath,
+ "ExtensionsV1beta1Deployment": extensionsV1beta1Deployment_1.ExtensionsV1beta1Deployment,
+ "ExtensionsV1beta1DeploymentCondition": extensionsV1beta1DeploymentCondition_1.ExtensionsV1beta1DeploymentCondition,
+ "ExtensionsV1beta1DeploymentList": extensionsV1beta1DeploymentList_1.ExtensionsV1beta1DeploymentList,
+ "ExtensionsV1beta1DeploymentRollback": extensionsV1beta1DeploymentRollback_1.ExtensionsV1beta1DeploymentRollback,
+ "ExtensionsV1beta1DeploymentSpec": extensionsV1beta1DeploymentSpec_1.ExtensionsV1beta1DeploymentSpec,
+ "ExtensionsV1beta1DeploymentStatus": extensionsV1beta1DeploymentStatus_1.ExtensionsV1beta1DeploymentStatus,
+ "ExtensionsV1beta1DeploymentStrategy": extensionsV1beta1DeploymentStrategy_1.ExtensionsV1beta1DeploymentStrategy,
+ "ExtensionsV1beta1FSGroupStrategyOptions": extensionsV1beta1FSGroupStrategyOptions_1.ExtensionsV1beta1FSGroupStrategyOptions,
+ "ExtensionsV1beta1HTTPIngressPath": extensionsV1beta1HTTPIngressPath_1.ExtensionsV1beta1HTTPIngressPath,
+ "ExtensionsV1beta1HTTPIngressRuleValue": extensionsV1beta1HTTPIngressRuleValue_1.ExtensionsV1beta1HTTPIngressRuleValue,
+ "ExtensionsV1beta1HostPortRange": extensionsV1beta1HostPortRange_1.ExtensionsV1beta1HostPortRange,
+ "ExtensionsV1beta1IDRange": extensionsV1beta1IDRange_1.ExtensionsV1beta1IDRange,
+ "ExtensionsV1beta1Ingress": extensionsV1beta1Ingress_1.ExtensionsV1beta1Ingress,
+ "ExtensionsV1beta1IngressBackend": extensionsV1beta1IngressBackend_1.ExtensionsV1beta1IngressBackend,
+ "ExtensionsV1beta1IngressList": extensionsV1beta1IngressList_1.ExtensionsV1beta1IngressList,
+ "ExtensionsV1beta1IngressRule": extensionsV1beta1IngressRule_1.ExtensionsV1beta1IngressRule,
+ "ExtensionsV1beta1IngressSpec": extensionsV1beta1IngressSpec_1.ExtensionsV1beta1IngressSpec,
+ "ExtensionsV1beta1IngressStatus": extensionsV1beta1IngressStatus_1.ExtensionsV1beta1IngressStatus,
+ "ExtensionsV1beta1IngressTLS": extensionsV1beta1IngressTLS_1.ExtensionsV1beta1IngressTLS,
+ "ExtensionsV1beta1PodSecurityPolicy": extensionsV1beta1PodSecurityPolicy_1.ExtensionsV1beta1PodSecurityPolicy,
+ "ExtensionsV1beta1PodSecurityPolicyList": extensionsV1beta1PodSecurityPolicyList_1.ExtensionsV1beta1PodSecurityPolicyList,
+ "ExtensionsV1beta1PodSecurityPolicySpec": extensionsV1beta1PodSecurityPolicySpec_1.ExtensionsV1beta1PodSecurityPolicySpec,
+ "ExtensionsV1beta1RollbackConfig": extensionsV1beta1RollbackConfig_1.ExtensionsV1beta1RollbackConfig,
+ "ExtensionsV1beta1RollingUpdateDeployment": extensionsV1beta1RollingUpdateDeployment_1.ExtensionsV1beta1RollingUpdateDeployment,
+ "ExtensionsV1beta1RunAsGroupStrategyOptions": extensionsV1beta1RunAsGroupStrategyOptions_1.ExtensionsV1beta1RunAsGroupStrategyOptions,
+ "ExtensionsV1beta1RunAsUserStrategyOptions": extensionsV1beta1RunAsUserStrategyOptions_1.ExtensionsV1beta1RunAsUserStrategyOptions,
+ "ExtensionsV1beta1RuntimeClassStrategyOptions": extensionsV1beta1RuntimeClassStrategyOptions_1.ExtensionsV1beta1RuntimeClassStrategyOptions,
+ "ExtensionsV1beta1SELinuxStrategyOptions": extensionsV1beta1SELinuxStrategyOptions_1.ExtensionsV1beta1SELinuxStrategyOptions,
+ "ExtensionsV1beta1Scale": extensionsV1beta1Scale_1.ExtensionsV1beta1Scale,
+ "ExtensionsV1beta1ScaleSpec": extensionsV1beta1ScaleSpec_1.ExtensionsV1beta1ScaleSpec,
+ "ExtensionsV1beta1ScaleStatus": extensionsV1beta1ScaleStatus_1.ExtensionsV1beta1ScaleStatus,
+ "ExtensionsV1beta1SupplementalGroupsStrategyOptions": extensionsV1beta1SupplementalGroupsStrategyOptions_1.ExtensionsV1beta1SupplementalGroupsStrategyOptions,
+ "NetworkingV1beta1HTTPIngressPath": networkingV1beta1HTTPIngressPath_1.NetworkingV1beta1HTTPIngressPath,
+ "NetworkingV1beta1HTTPIngressRuleValue": networkingV1beta1HTTPIngressRuleValue_1.NetworkingV1beta1HTTPIngressRuleValue,
+ "NetworkingV1beta1Ingress": networkingV1beta1Ingress_1.NetworkingV1beta1Ingress,
+ "NetworkingV1beta1IngressBackend": networkingV1beta1IngressBackend_1.NetworkingV1beta1IngressBackend,
+ "NetworkingV1beta1IngressList": networkingV1beta1IngressList_1.NetworkingV1beta1IngressList,
+ "NetworkingV1beta1IngressRule": networkingV1beta1IngressRule_1.NetworkingV1beta1IngressRule,
+ "NetworkingV1beta1IngressSpec": networkingV1beta1IngressSpec_1.NetworkingV1beta1IngressSpec,
+ "NetworkingV1beta1IngressStatus": networkingV1beta1IngressStatus_1.NetworkingV1beta1IngressStatus,
+ "NetworkingV1beta1IngressTLS": networkingV1beta1IngressTLS_1.NetworkingV1beta1IngressTLS,
+ "PolicyV1beta1AllowedCSIDriver": policyV1beta1AllowedCSIDriver_1.PolicyV1beta1AllowedCSIDriver,
+ "PolicyV1beta1AllowedFlexVolume": policyV1beta1AllowedFlexVolume_1.PolicyV1beta1AllowedFlexVolume,
+ "PolicyV1beta1AllowedHostPath": policyV1beta1AllowedHostPath_1.PolicyV1beta1AllowedHostPath,
+ "PolicyV1beta1FSGroupStrategyOptions": policyV1beta1FSGroupStrategyOptions_1.PolicyV1beta1FSGroupStrategyOptions,
+ "PolicyV1beta1HostPortRange": policyV1beta1HostPortRange_1.PolicyV1beta1HostPortRange,
+ "PolicyV1beta1IDRange": policyV1beta1IDRange_1.PolicyV1beta1IDRange,
+ "PolicyV1beta1PodSecurityPolicy": policyV1beta1PodSecurityPolicy_1.PolicyV1beta1PodSecurityPolicy,
+ "PolicyV1beta1PodSecurityPolicyList": policyV1beta1PodSecurityPolicyList_1.PolicyV1beta1PodSecurityPolicyList,
+ "PolicyV1beta1PodSecurityPolicySpec": policyV1beta1PodSecurityPolicySpec_1.PolicyV1beta1PodSecurityPolicySpec,
+ "PolicyV1beta1RunAsGroupStrategyOptions": policyV1beta1RunAsGroupStrategyOptions_1.PolicyV1beta1RunAsGroupStrategyOptions,
+ "PolicyV1beta1RunAsUserStrategyOptions": policyV1beta1RunAsUserStrategyOptions_1.PolicyV1beta1RunAsUserStrategyOptions,
+ "PolicyV1beta1RuntimeClassStrategyOptions": policyV1beta1RuntimeClassStrategyOptions_1.PolicyV1beta1RuntimeClassStrategyOptions,
+ "PolicyV1beta1SELinuxStrategyOptions": policyV1beta1SELinuxStrategyOptions_1.PolicyV1beta1SELinuxStrategyOptions,
+ "PolicyV1beta1SupplementalGroupsStrategyOptions": policyV1beta1SupplementalGroupsStrategyOptions_1.PolicyV1beta1SupplementalGroupsStrategyOptions,
+ "RuntimeRawExtension": runtimeRawExtension_1.RuntimeRawExtension,
+ "V1APIGroup": v1APIGroup_1.V1APIGroup,
+ "V1APIGroupList": v1APIGroupList_1.V1APIGroupList,
+ "V1APIResource": v1APIResource_1.V1APIResource,
+ "V1APIResourceList": v1APIResourceList_1.V1APIResourceList,
+ "V1APIService": v1APIService_1.V1APIService,
+ "V1APIServiceCondition": v1APIServiceCondition_1.V1APIServiceCondition,
+ "V1APIServiceList": v1APIServiceList_1.V1APIServiceList,
+ "V1APIServiceSpec": v1APIServiceSpec_1.V1APIServiceSpec,
+ "V1APIServiceStatus": v1APIServiceStatus_1.V1APIServiceStatus,
+ "V1APIVersions": v1APIVersions_1.V1APIVersions,
+ "V1AWSElasticBlockStoreVolumeSource": v1AWSElasticBlockStoreVolumeSource_1.V1AWSElasticBlockStoreVolumeSource,
+ "V1Affinity": v1Affinity_1.V1Affinity,
+ "V1AggregationRule": v1AggregationRule_1.V1AggregationRule,
+ "V1AttachedVolume": v1AttachedVolume_1.V1AttachedVolume,
+ "V1AzureDiskVolumeSource": v1AzureDiskVolumeSource_1.V1AzureDiskVolumeSource,
+ "V1AzureFilePersistentVolumeSource": v1AzureFilePersistentVolumeSource_1.V1AzureFilePersistentVolumeSource,
+ "V1AzureFileVolumeSource": v1AzureFileVolumeSource_1.V1AzureFileVolumeSource,
+ "V1Binding": v1Binding_1.V1Binding,
+ "V1CSIPersistentVolumeSource": v1CSIPersistentVolumeSource_1.V1CSIPersistentVolumeSource,
+ "V1CSIVolumeSource": v1CSIVolumeSource_1.V1CSIVolumeSource,
+ "V1Capabilities": v1Capabilities_1.V1Capabilities,
+ "V1CephFSPersistentVolumeSource": v1CephFSPersistentVolumeSource_1.V1CephFSPersistentVolumeSource,
+ "V1CephFSVolumeSource": v1CephFSVolumeSource_1.V1CephFSVolumeSource,
+ "V1CinderPersistentVolumeSource": v1CinderPersistentVolumeSource_1.V1CinderPersistentVolumeSource,
+ "V1CinderVolumeSource": v1CinderVolumeSource_1.V1CinderVolumeSource,
+ "V1ClientIPConfig": v1ClientIPConfig_1.V1ClientIPConfig,
+ "V1ClusterRole": v1ClusterRole_1.V1ClusterRole,
+ "V1ClusterRoleBinding": v1ClusterRoleBinding_1.V1ClusterRoleBinding,
+ "V1ClusterRoleBindingList": v1ClusterRoleBindingList_1.V1ClusterRoleBindingList,
+ "V1ClusterRoleList": v1ClusterRoleList_1.V1ClusterRoleList,
+ "V1ComponentCondition": v1ComponentCondition_1.V1ComponentCondition,
+ "V1ComponentStatus": v1ComponentStatus_1.V1ComponentStatus,
+ "V1ComponentStatusList": v1ComponentStatusList_1.V1ComponentStatusList,
+ "V1ConfigMap": v1ConfigMap_1.V1ConfigMap,
+ "V1ConfigMapEnvSource": v1ConfigMapEnvSource_1.V1ConfigMapEnvSource,
+ "V1ConfigMapKeySelector": v1ConfigMapKeySelector_1.V1ConfigMapKeySelector,
+ "V1ConfigMapList": v1ConfigMapList_1.V1ConfigMapList,
+ "V1ConfigMapNodeConfigSource": v1ConfigMapNodeConfigSource_1.V1ConfigMapNodeConfigSource,
+ "V1ConfigMapProjection": v1ConfigMapProjection_1.V1ConfigMapProjection,
+ "V1ConfigMapVolumeSource": v1ConfigMapVolumeSource_1.V1ConfigMapVolumeSource,
+ "V1Container": v1Container_1.V1Container,
+ "V1ContainerImage": v1ContainerImage_1.V1ContainerImage,
+ "V1ContainerPort": v1ContainerPort_1.V1ContainerPort,
+ "V1ContainerState": v1ContainerState_1.V1ContainerState,
+ "V1ContainerStateRunning": v1ContainerStateRunning_1.V1ContainerStateRunning,
+ "V1ContainerStateTerminated": v1ContainerStateTerminated_1.V1ContainerStateTerminated,
+ "V1ContainerStateWaiting": v1ContainerStateWaiting_1.V1ContainerStateWaiting,
+ "V1ContainerStatus": v1ContainerStatus_1.V1ContainerStatus,
+ "V1ControllerRevision": v1ControllerRevision_1.V1ControllerRevision,
+ "V1ControllerRevisionList": v1ControllerRevisionList_1.V1ControllerRevisionList,
+ "V1CrossVersionObjectReference": v1CrossVersionObjectReference_1.V1CrossVersionObjectReference,
+ "V1DaemonEndpoint": v1DaemonEndpoint_1.V1DaemonEndpoint,
+ "V1DaemonSet": v1DaemonSet_1.V1DaemonSet,
+ "V1DaemonSetCondition": v1DaemonSetCondition_1.V1DaemonSetCondition,
+ "V1DaemonSetList": v1DaemonSetList_1.V1DaemonSetList,
+ "V1DaemonSetSpec": v1DaemonSetSpec_1.V1DaemonSetSpec,
+ "V1DaemonSetStatus": v1DaemonSetStatus_1.V1DaemonSetStatus,
+ "V1DaemonSetUpdateStrategy": v1DaemonSetUpdateStrategy_1.V1DaemonSetUpdateStrategy,
+ "V1DeleteOptions": v1DeleteOptions_1.V1DeleteOptions,
+ "V1Deployment": v1Deployment_1.V1Deployment,
+ "V1DeploymentCondition": v1DeploymentCondition_1.V1DeploymentCondition,
+ "V1DeploymentList": v1DeploymentList_1.V1DeploymentList,
+ "V1DeploymentSpec": v1DeploymentSpec_1.V1DeploymentSpec,
+ "V1DeploymentStatus": v1DeploymentStatus_1.V1DeploymentStatus,
+ "V1DeploymentStrategy": v1DeploymentStrategy_1.V1DeploymentStrategy,
+ "V1DownwardAPIProjection": v1DownwardAPIProjection_1.V1DownwardAPIProjection,
+ "V1DownwardAPIVolumeFile": v1DownwardAPIVolumeFile_1.V1DownwardAPIVolumeFile,
+ "V1DownwardAPIVolumeSource": v1DownwardAPIVolumeSource_1.V1DownwardAPIVolumeSource,
+ "V1EmptyDirVolumeSource": v1EmptyDirVolumeSource_1.V1EmptyDirVolumeSource,
+ "V1EndpointAddress": v1EndpointAddress_1.V1EndpointAddress,
+ "V1EndpointPort": v1EndpointPort_1.V1EndpointPort,
+ "V1EndpointSubset": v1EndpointSubset_1.V1EndpointSubset,
+ "V1Endpoints": v1Endpoints_1.V1Endpoints,
+ "V1EndpointsList": v1EndpointsList_1.V1EndpointsList,
+ "V1EnvFromSource": v1EnvFromSource_1.V1EnvFromSource,
+ "V1EnvVar": v1EnvVar_1.V1EnvVar,
+ "V1EnvVarSource": v1EnvVarSource_1.V1EnvVarSource,
+ "V1Event": v1Event_1.V1Event,
+ "V1EventList": v1EventList_1.V1EventList,
+ "V1EventSeries": v1EventSeries_1.V1EventSeries,
+ "V1EventSource": v1EventSource_1.V1EventSource,
+ "V1ExecAction": v1ExecAction_1.V1ExecAction,
+ "V1FCVolumeSource": v1FCVolumeSource_1.V1FCVolumeSource,
+ "V1FlexPersistentVolumeSource": v1FlexPersistentVolumeSource_1.V1FlexPersistentVolumeSource,
+ "V1FlexVolumeSource": v1FlexVolumeSource_1.V1FlexVolumeSource,
+ "V1FlockerVolumeSource": v1FlockerVolumeSource_1.V1FlockerVolumeSource,
+ "V1GCEPersistentDiskVolumeSource": v1GCEPersistentDiskVolumeSource_1.V1GCEPersistentDiskVolumeSource,
+ "V1GitRepoVolumeSource": v1GitRepoVolumeSource_1.V1GitRepoVolumeSource,
+ "V1GlusterfsPersistentVolumeSource": v1GlusterfsPersistentVolumeSource_1.V1GlusterfsPersistentVolumeSource,
+ "V1GlusterfsVolumeSource": v1GlusterfsVolumeSource_1.V1GlusterfsVolumeSource,
+ "V1GroupVersionForDiscovery": v1GroupVersionForDiscovery_1.V1GroupVersionForDiscovery,
+ "V1HTTPGetAction": v1HTTPGetAction_1.V1HTTPGetAction,
+ "V1HTTPHeader": v1HTTPHeader_1.V1HTTPHeader,
+ "V1Handler": v1Handler_1.V1Handler,
+ "V1HorizontalPodAutoscaler": v1HorizontalPodAutoscaler_1.V1HorizontalPodAutoscaler,
+ "V1HorizontalPodAutoscalerList": v1HorizontalPodAutoscalerList_1.V1HorizontalPodAutoscalerList,
+ "V1HorizontalPodAutoscalerSpec": v1HorizontalPodAutoscalerSpec_1.V1HorizontalPodAutoscalerSpec,
+ "V1HorizontalPodAutoscalerStatus": v1HorizontalPodAutoscalerStatus_1.V1HorizontalPodAutoscalerStatus,
+ "V1HostAlias": v1HostAlias_1.V1HostAlias,
+ "V1HostPathVolumeSource": v1HostPathVolumeSource_1.V1HostPathVolumeSource,
+ "V1IPBlock": v1IPBlock_1.V1IPBlock,
+ "V1ISCSIPersistentVolumeSource": v1ISCSIPersistentVolumeSource_1.V1ISCSIPersistentVolumeSource,
+ "V1ISCSIVolumeSource": v1ISCSIVolumeSource_1.V1ISCSIVolumeSource,
+ "V1Initializer": v1Initializer_1.V1Initializer,
+ "V1Initializers": v1Initializers_1.V1Initializers,
+ "V1Job": v1Job_1.V1Job,
+ "V1JobCondition": v1JobCondition_1.V1JobCondition,
+ "V1JobList": v1JobList_1.V1JobList,
+ "V1JobSpec": v1JobSpec_1.V1JobSpec,
+ "V1JobStatus": v1JobStatus_1.V1JobStatus,
+ "V1KeyToPath": v1KeyToPath_1.V1KeyToPath,
+ "V1LabelSelector": v1LabelSelector_1.V1LabelSelector,
+ "V1LabelSelectorRequirement": v1LabelSelectorRequirement_1.V1LabelSelectorRequirement,
+ "V1Lease": v1Lease_1.V1Lease,
+ "V1LeaseList": v1LeaseList_1.V1LeaseList,
+ "V1LeaseSpec": v1LeaseSpec_1.V1LeaseSpec,
+ "V1Lifecycle": v1Lifecycle_1.V1Lifecycle,
+ "V1LimitRange": v1LimitRange_1.V1LimitRange,
+ "V1LimitRangeItem": v1LimitRangeItem_1.V1LimitRangeItem,
+ "V1LimitRangeList": v1LimitRangeList_1.V1LimitRangeList,
+ "V1LimitRangeSpec": v1LimitRangeSpec_1.V1LimitRangeSpec,
+ "V1ListMeta": v1ListMeta_1.V1ListMeta,
+ "V1LoadBalancerIngress": v1LoadBalancerIngress_1.V1LoadBalancerIngress,
+ "V1LoadBalancerStatus": v1LoadBalancerStatus_1.V1LoadBalancerStatus,
+ "V1LocalObjectReference": v1LocalObjectReference_1.V1LocalObjectReference,
+ "V1LocalSubjectAccessReview": v1LocalSubjectAccessReview_1.V1LocalSubjectAccessReview,
+ "V1LocalVolumeSource": v1LocalVolumeSource_1.V1LocalVolumeSource,
+ "V1ManagedFieldsEntry": v1ManagedFieldsEntry_1.V1ManagedFieldsEntry,
+ "V1NFSVolumeSource": v1NFSVolumeSource_1.V1NFSVolumeSource,
+ "V1Namespace": v1Namespace_1.V1Namespace,
+ "V1NamespaceList": v1NamespaceList_1.V1NamespaceList,
+ "V1NamespaceSpec": v1NamespaceSpec_1.V1NamespaceSpec,
+ "V1NamespaceStatus": v1NamespaceStatus_1.V1NamespaceStatus,
+ "V1NetworkPolicy": v1NetworkPolicy_1.V1NetworkPolicy,
+ "V1NetworkPolicyEgressRule": v1NetworkPolicyEgressRule_1.V1NetworkPolicyEgressRule,
+ "V1NetworkPolicyIngressRule": v1NetworkPolicyIngressRule_1.V1NetworkPolicyIngressRule,
+ "V1NetworkPolicyList": v1NetworkPolicyList_1.V1NetworkPolicyList,
+ "V1NetworkPolicyPeer": v1NetworkPolicyPeer_1.V1NetworkPolicyPeer,
+ "V1NetworkPolicyPort": v1NetworkPolicyPort_1.V1NetworkPolicyPort,
+ "V1NetworkPolicySpec": v1NetworkPolicySpec_1.V1NetworkPolicySpec,
+ "V1Node": v1Node_1.V1Node,
+ "V1NodeAddress": v1NodeAddress_1.V1NodeAddress,
+ "V1NodeAffinity": v1NodeAffinity_1.V1NodeAffinity,
+ "V1NodeCondition": v1NodeCondition_1.V1NodeCondition,
+ "V1NodeConfigSource": v1NodeConfigSource_1.V1NodeConfigSource,
+ "V1NodeConfigStatus": v1NodeConfigStatus_1.V1NodeConfigStatus,
+ "V1NodeDaemonEndpoints": v1NodeDaemonEndpoints_1.V1NodeDaemonEndpoints,
+ "V1NodeList": v1NodeList_1.V1NodeList,
+ "V1NodeSelector": v1NodeSelector_1.V1NodeSelector,
+ "V1NodeSelectorRequirement": v1NodeSelectorRequirement_1.V1NodeSelectorRequirement,
+ "V1NodeSelectorTerm": v1NodeSelectorTerm_1.V1NodeSelectorTerm,
+ "V1NodeSpec": v1NodeSpec_1.V1NodeSpec,
+ "V1NodeStatus": v1NodeStatus_1.V1NodeStatus,
+ "V1NodeSystemInfo": v1NodeSystemInfo_1.V1NodeSystemInfo,
+ "V1NonResourceAttributes": v1NonResourceAttributes_1.V1NonResourceAttributes,
+ "V1NonResourceRule": v1NonResourceRule_1.V1NonResourceRule,
+ "V1ObjectFieldSelector": v1ObjectFieldSelector_1.V1ObjectFieldSelector,
+ "V1ObjectMeta": v1ObjectMeta_1.V1ObjectMeta,
+ "V1ObjectReference": v1ObjectReference_1.V1ObjectReference,
+ "V1OwnerReference": v1OwnerReference_1.V1OwnerReference,
+ "V1PersistentVolume": v1PersistentVolume_1.V1PersistentVolume,
+ "V1PersistentVolumeClaim": v1PersistentVolumeClaim_1.V1PersistentVolumeClaim,
+ "V1PersistentVolumeClaimCondition": v1PersistentVolumeClaimCondition_1.V1PersistentVolumeClaimCondition,
+ "V1PersistentVolumeClaimList": v1PersistentVolumeClaimList_1.V1PersistentVolumeClaimList,
+ "V1PersistentVolumeClaimSpec": v1PersistentVolumeClaimSpec_1.V1PersistentVolumeClaimSpec,
+ "V1PersistentVolumeClaimStatus": v1PersistentVolumeClaimStatus_1.V1PersistentVolumeClaimStatus,
+ "V1PersistentVolumeClaimVolumeSource": v1PersistentVolumeClaimVolumeSource_1.V1PersistentVolumeClaimVolumeSource,
+ "V1PersistentVolumeList": v1PersistentVolumeList_1.V1PersistentVolumeList,
+ "V1PersistentVolumeSpec": v1PersistentVolumeSpec_1.V1PersistentVolumeSpec,
+ "V1PersistentVolumeStatus": v1PersistentVolumeStatus_1.V1PersistentVolumeStatus,
+ "V1PhotonPersistentDiskVolumeSource": v1PhotonPersistentDiskVolumeSource_1.V1PhotonPersistentDiskVolumeSource,
+ "V1Pod": v1Pod_1.V1Pod,
+ "V1PodAffinity": v1PodAffinity_1.V1PodAffinity,
+ "V1PodAffinityTerm": v1PodAffinityTerm_1.V1PodAffinityTerm,
+ "V1PodAntiAffinity": v1PodAntiAffinity_1.V1PodAntiAffinity,
+ "V1PodCondition": v1PodCondition_1.V1PodCondition,
+ "V1PodDNSConfig": v1PodDNSConfig_1.V1PodDNSConfig,
+ "V1PodDNSConfigOption": v1PodDNSConfigOption_1.V1PodDNSConfigOption,
+ "V1PodList": v1PodList_1.V1PodList,
+ "V1PodReadinessGate": v1PodReadinessGate_1.V1PodReadinessGate,
+ "V1PodSecurityContext": v1PodSecurityContext_1.V1PodSecurityContext,
+ "V1PodSpec": v1PodSpec_1.V1PodSpec,
+ "V1PodStatus": v1PodStatus_1.V1PodStatus,
+ "V1PodTemplate": v1PodTemplate_1.V1PodTemplate,
+ "V1PodTemplateList": v1PodTemplateList_1.V1PodTemplateList,
+ "V1PodTemplateSpec": v1PodTemplateSpec_1.V1PodTemplateSpec,
+ "V1PolicyRule": v1PolicyRule_1.V1PolicyRule,
+ "V1PortworxVolumeSource": v1PortworxVolumeSource_1.V1PortworxVolumeSource,
+ "V1Preconditions": v1Preconditions_1.V1Preconditions,
+ "V1PreferredSchedulingTerm": v1PreferredSchedulingTerm_1.V1PreferredSchedulingTerm,
+ "V1PriorityClass": v1PriorityClass_1.V1PriorityClass,
+ "V1PriorityClassList": v1PriorityClassList_1.V1PriorityClassList,
+ "V1Probe": v1Probe_1.V1Probe,
+ "V1ProjectedVolumeSource": v1ProjectedVolumeSource_1.V1ProjectedVolumeSource,
+ "V1QuobyteVolumeSource": v1QuobyteVolumeSource_1.V1QuobyteVolumeSource,
+ "V1RBDPersistentVolumeSource": v1RBDPersistentVolumeSource_1.V1RBDPersistentVolumeSource,
+ "V1RBDVolumeSource": v1RBDVolumeSource_1.V1RBDVolumeSource,
+ "V1ReplicaSet": v1ReplicaSet_1.V1ReplicaSet,
+ "V1ReplicaSetCondition": v1ReplicaSetCondition_1.V1ReplicaSetCondition,
+ "V1ReplicaSetList": v1ReplicaSetList_1.V1ReplicaSetList,
+ "V1ReplicaSetSpec": v1ReplicaSetSpec_1.V1ReplicaSetSpec,
+ "V1ReplicaSetStatus": v1ReplicaSetStatus_1.V1ReplicaSetStatus,
+ "V1ReplicationController": v1ReplicationController_1.V1ReplicationController,
+ "V1ReplicationControllerCondition": v1ReplicationControllerCondition_1.V1ReplicationControllerCondition,
+ "V1ReplicationControllerList": v1ReplicationControllerList_1.V1ReplicationControllerList,
+ "V1ReplicationControllerSpec": v1ReplicationControllerSpec_1.V1ReplicationControllerSpec,
+ "V1ReplicationControllerStatus": v1ReplicationControllerStatus_1.V1ReplicationControllerStatus,
+ "V1ResourceAttributes": v1ResourceAttributes_1.V1ResourceAttributes,
+ "V1ResourceFieldSelector": v1ResourceFieldSelector_1.V1ResourceFieldSelector,
+ "V1ResourceQuota": v1ResourceQuota_1.V1ResourceQuota,
+ "V1ResourceQuotaList": v1ResourceQuotaList_1.V1ResourceQuotaList,
+ "V1ResourceQuotaSpec": v1ResourceQuotaSpec_1.V1ResourceQuotaSpec,
+ "V1ResourceQuotaStatus": v1ResourceQuotaStatus_1.V1ResourceQuotaStatus,
+ "V1ResourceRequirements": v1ResourceRequirements_1.V1ResourceRequirements,
+ "V1ResourceRule": v1ResourceRule_1.V1ResourceRule,
+ "V1Role": v1Role_1.V1Role,
+ "V1RoleBinding": v1RoleBinding_1.V1RoleBinding,
+ "V1RoleBindingList": v1RoleBindingList_1.V1RoleBindingList,
+ "V1RoleList": v1RoleList_1.V1RoleList,
+ "V1RoleRef": v1RoleRef_1.V1RoleRef,
+ "V1RollingUpdateDaemonSet": v1RollingUpdateDaemonSet_1.V1RollingUpdateDaemonSet,
+ "V1RollingUpdateDeployment": v1RollingUpdateDeployment_1.V1RollingUpdateDeployment,
+ "V1RollingUpdateStatefulSetStrategy": v1RollingUpdateStatefulSetStrategy_1.V1RollingUpdateStatefulSetStrategy,
+ "V1SELinuxOptions": v1SELinuxOptions_1.V1SELinuxOptions,
+ "V1Scale": v1Scale_1.V1Scale,
+ "V1ScaleIOPersistentVolumeSource": v1ScaleIOPersistentVolumeSource_1.V1ScaleIOPersistentVolumeSource,
+ "V1ScaleIOVolumeSource": v1ScaleIOVolumeSource_1.V1ScaleIOVolumeSource,
+ "V1ScaleSpec": v1ScaleSpec_1.V1ScaleSpec,
+ "V1ScaleStatus": v1ScaleStatus_1.V1ScaleStatus,
+ "V1ScopeSelector": v1ScopeSelector_1.V1ScopeSelector,
+ "V1ScopedResourceSelectorRequirement": v1ScopedResourceSelectorRequirement_1.V1ScopedResourceSelectorRequirement,
+ "V1Secret": v1Secret_1.V1Secret,
+ "V1SecretEnvSource": v1SecretEnvSource_1.V1SecretEnvSource,
+ "V1SecretKeySelector": v1SecretKeySelector_1.V1SecretKeySelector,
+ "V1SecretList": v1SecretList_1.V1SecretList,
+ "V1SecretProjection": v1SecretProjection_1.V1SecretProjection,
+ "V1SecretReference": v1SecretReference_1.V1SecretReference,
+ "V1SecretVolumeSource": v1SecretVolumeSource_1.V1SecretVolumeSource,
+ "V1SecurityContext": v1SecurityContext_1.V1SecurityContext,
+ "V1SelfSubjectAccessReview": v1SelfSubjectAccessReview_1.V1SelfSubjectAccessReview,
+ "V1SelfSubjectAccessReviewSpec": v1SelfSubjectAccessReviewSpec_1.V1SelfSubjectAccessReviewSpec,
+ "V1SelfSubjectRulesReview": v1SelfSubjectRulesReview_1.V1SelfSubjectRulesReview,
+ "V1SelfSubjectRulesReviewSpec": v1SelfSubjectRulesReviewSpec_1.V1SelfSubjectRulesReviewSpec,
+ "V1ServerAddressByClientCIDR": v1ServerAddressByClientCIDR_1.V1ServerAddressByClientCIDR,
+ "V1Service": v1Service_1.V1Service,
+ "V1ServiceAccount": v1ServiceAccount_1.V1ServiceAccount,
+ "V1ServiceAccountList": v1ServiceAccountList_1.V1ServiceAccountList,
+ "V1ServiceAccountTokenProjection": v1ServiceAccountTokenProjection_1.V1ServiceAccountTokenProjection,
+ "V1ServiceList": v1ServiceList_1.V1ServiceList,
+ "V1ServicePort": v1ServicePort_1.V1ServicePort,
+ "V1ServiceReference": v1ServiceReference_1.V1ServiceReference,
+ "V1ServiceSpec": v1ServiceSpec_1.V1ServiceSpec,
+ "V1ServiceStatus": v1ServiceStatus_1.V1ServiceStatus,
+ "V1SessionAffinityConfig": v1SessionAffinityConfig_1.V1SessionAffinityConfig,
+ "V1StatefulSet": v1StatefulSet_1.V1StatefulSet,
+ "V1StatefulSetCondition": v1StatefulSetCondition_1.V1StatefulSetCondition,
+ "V1StatefulSetList": v1StatefulSetList_1.V1StatefulSetList,
+ "V1StatefulSetSpec": v1StatefulSetSpec_1.V1StatefulSetSpec,
+ "V1StatefulSetStatus": v1StatefulSetStatus_1.V1StatefulSetStatus,
+ "V1StatefulSetUpdateStrategy": v1StatefulSetUpdateStrategy_1.V1StatefulSetUpdateStrategy,
+ "V1Status": v1Status_1.V1Status,
+ "V1StatusCause": v1StatusCause_1.V1StatusCause,
+ "V1StatusDetails": v1StatusDetails_1.V1StatusDetails,
+ "V1StorageClass": v1StorageClass_1.V1StorageClass,
+ "V1StorageClassList": v1StorageClassList_1.V1StorageClassList,
+ "V1StorageOSPersistentVolumeSource": v1StorageOSPersistentVolumeSource_1.V1StorageOSPersistentVolumeSource,
+ "V1StorageOSVolumeSource": v1StorageOSVolumeSource_1.V1StorageOSVolumeSource,
+ "V1Subject": v1Subject_1.V1Subject,
+ "V1SubjectAccessReview": v1SubjectAccessReview_1.V1SubjectAccessReview,
+ "V1SubjectAccessReviewSpec": v1SubjectAccessReviewSpec_1.V1SubjectAccessReviewSpec,
+ "V1SubjectAccessReviewStatus": v1SubjectAccessReviewStatus_1.V1SubjectAccessReviewStatus,
+ "V1SubjectRulesReviewStatus": v1SubjectRulesReviewStatus_1.V1SubjectRulesReviewStatus,
+ "V1Sysctl": v1Sysctl_1.V1Sysctl,
+ "V1TCPSocketAction": v1TCPSocketAction_1.V1TCPSocketAction,
+ "V1Taint": v1Taint_1.V1Taint,
+ "V1TokenReview": v1TokenReview_1.V1TokenReview,
+ "V1TokenReviewSpec": v1TokenReviewSpec_1.V1TokenReviewSpec,
+ "V1TokenReviewStatus": v1TokenReviewStatus_1.V1TokenReviewStatus,
+ "V1Toleration": v1Toleration_1.V1Toleration,
+ "V1TopologySelectorLabelRequirement": v1TopologySelectorLabelRequirement_1.V1TopologySelectorLabelRequirement,
+ "V1TopologySelectorTerm": v1TopologySelectorTerm_1.V1TopologySelectorTerm,
+ "V1TypedLocalObjectReference": v1TypedLocalObjectReference_1.V1TypedLocalObjectReference,
+ "V1UserInfo": v1UserInfo_1.V1UserInfo,
+ "V1Volume": v1Volume_1.V1Volume,
+ "V1VolumeAttachment": v1VolumeAttachment_1.V1VolumeAttachment,
+ "V1VolumeAttachmentList": v1VolumeAttachmentList_1.V1VolumeAttachmentList,
+ "V1VolumeAttachmentSource": v1VolumeAttachmentSource_1.V1VolumeAttachmentSource,
+ "V1VolumeAttachmentSpec": v1VolumeAttachmentSpec_1.V1VolumeAttachmentSpec,
+ "V1VolumeAttachmentStatus": v1VolumeAttachmentStatus_1.V1VolumeAttachmentStatus,
+ "V1VolumeDevice": v1VolumeDevice_1.V1VolumeDevice,
+ "V1VolumeError": v1VolumeError_1.V1VolumeError,
+ "V1VolumeMount": v1VolumeMount_1.V1VolumeMount,
+ "V1VolumeNodeAffinity": v1VolumeNodeAffinity_1.V1VolumeNodeAffinity,
+ "V1VolumeProjection": v1VolumeProjection_1.V1VolumeProjection,
+ "V1VsphereVirtualDiskVolumeSource": v1VsphereVirtualDiskVolumeSource_1.V1VsphereVirtualDiskVolumeSource,
+ "V1WatchEvent": v1WatchEvent_1.V1WatchEvent,
+ "V1WeightedPodAffinityTerm": v1WeightedPodAffinityTerm_1.V1WeightedPodAffinityTerm,
+ "V1WindowsSecurityContextOptions": v1WindowsSecurityContextOptions_1.V1WindowsSecurityContextOptions,
+ "V1alpha1AggregationRule": v1alpha1AggregationRule_1.V1alpha1AggregationRule,
+ "V1alpha1AuditSink": v1alpha1AuditSink_1.V1alpha1AuditSink,
+ "V1alpha1AuditSinkList": v1alpha1AuditSinkList_1.V1alpha1AuditSinkList,
+ "V1alpha1AuditSinkSpec": v1alpha1AuditSinkSpec_1.V1alpha1AuditSinkSpec,
+ "V1alpha1ClusterRole": v1alpha1ClusterRole_1.V1alpha1ClusterRole,
+ "V1alpha1ClusterRoleBinding": v1alpha1ClusterRoleBinding_1.V1alpha1ClusterRoleBinding,
+ "V1alpha1ClusterRoleBindingList": v1alpha1ClusterRoleBindingList_1.V1alpha1ClusterRoleBindingList,
+ "V1alpha1ClusterRoleList": v1alpha1ClusterRoleList_1.V1alpha1ClusterRoleList,
+ "V1alpha1PodPreset": v1alpha1PodPreset_1.V1alpha1PodPreset,
+ "V1alpha1PodPresetList": v1alpha1PodPresetList_1.V1alpha1PodPresetList,
+ "V1alpha1PodPresetSpec": v1alpha1PodPresetSpec_1.V1alpha1PodPresetSpec,
+ "V1alpha1Policy": v1alpha1Policy_1.V1alpha1Policy,
+ "V1alpha1PolicyRule": v1alpha1PolicyRule_1.V1alpha1PolicyRule,
+ "V1alpha1PriorityClass": v1alpha1PriorityClass_1.V1alpha1PriorityClass,
+ "V1alpha1PriorityClassList": v1alpha1PriorityClassList_1.V1alpha1PriorityClassList,
+ "V1alpha1Role": v1alpha1Role_1.V1alpha1Role,
+ "V1alpha1RoleBinding": v1alpha1RoleBinding_1.V1alpha1RoleBinding,
+ "V1alpha1RoleBindingList": v1alpha1RoleBindingList_1.V1alpha1RoleBindingList,
+ "V1alpha1RoleList": v1alpha1RoleList_1.V1alpha1RoleList,
+ "V1alpha1RoleRef": v1alpha1RoleRef_1.V1alpha1RoleRef,
+ "V1alpha1RuntimeClass": v1alpha1RuntimeClass_1.V1alpha1RuntimeClass,
+ "V1alpha1RuntimeClassList": v1alpha1RuntimeClassList_1.V1alpha1RuntimeClassList,
+ "V1alpha1RuntimeClassSpec": v1alpha1RuntimeClassSpec_1.V1alpha1RuntimeClassSpec,
+ "V1alpha1ServiceReference": v1alpha1ServiceReference_1.V1alpha1ServiceReference,
+ "V1alpha1Subject": v1alpha1Subject_1.V1alpha1Subject,
+ "V1alpha1VolumeAttachment": v1alpha1VolumeAttachment_1.V1alpha1VolumeAttachment,
+ "V1alpha1VolumeAttachmentList": v1alpha1VolumeAttachmentList_1.V1alpha1VolumeAttachmentList,
+ "V1alpha1VolumeAttachmentSource": v1alpha1VolumeAttachmentSource_1.V1alpha1VolumeAttachmentSource,
+ "V1alpha1VolumeAttachmentSpec": v1alpha1VolumeAttachmentSpec_1.V1alpha1VolumeAttachmentSpec,
+ "V1alpha1VolumeAttachmentStatus": v1alpha1VolumeAttachmentStatus_1.V1alpha1VolumeAttachmentStatus,
+ "V1alpha1VolumeError": v1alpha1VolumeError_1.V1alpha1VolumeError,
+ "V1alpha1Webhook": v1alpha1Webhook_1.V1alpha1Webhook,
+ "V1alpha1WebhookClientConfig": v1alpha1WebhookClientConfig_1.V1alpha1WebhookClientConfig,
+ "V1alpha1WebhookThrottleConfig": v1alpha1WebhookThrottleConfig_1.V1alpha1WebhookThrottleConfig,
+ "V1beta1APIService": v1beta1APIService_1.V1beta1APIService,
+ "V1beta1APIServiceCondition": v1beta1APIServiceCondition_1.V1beta1APIServiceCondition,
+ "V1beta1APIServiceList": v1beta1APIServiceList_1.V1beta1APIServiceList,
+ "V1beta1APIServiceSpec": v1beta1APIServiceSpec_1.V1beta1APIServiceSpec,
+ "V1beta1APIServiceStatus": v1beta1APIServiceStatus_1.V1beta1APIServiceStatus,
+ "V1beta1AggregationRule": v1beta1AggregationRule_1.V1beta1AggregationRule,
+ "V1beta1CSIDriver": v1beta1CSIDriver_1.V1beta1CSIDriver,
+ "V1beta1CSIDriverList": v1beta1CSIDriverList_1.V1beta1CSIDriverList,
+ "V1beta1CSIDriverSpec": v1beta1CSIDriverSpec_1.V1beta1CSIDriverSpec,
+ "V1beta1CSINode": v1beta1CSINode_1.V1beta1CSINode,
+ "V1beta1CSINodeDriver": v1beta1CSINodeDriver_1.V1beta1CSINodeDriver,
+ "V1beta1CSINodeList": v1beta1CSINodeList_1.V1beta1CSINodeList,
+ "V1beta1CSINodeSpec": v1beta1CSINodeSpec_1.V1beta1CSINodeSpec,
+ "V1beta1CertificateSigningRequest": v1beta1CertificateSigningRequest_1.V1beta1CertificateSigningRequest,
+ "V1beta1CertificateSigningRequestCondition": v1beta1CertificateSigningRequestCondition_1.V1beta1CertificateSigningRequestCondition,
+ "V1beta1CertificateSigningRequestList": v1beta1CertificateSigningRequestList_1.V1beta1CertificateSigningRequestList,
+ "V1beta1CertificateSigningRequestSpec": v1beta1CertificateSigningRequestSpec_1.V1beta1CertificateSigningRequestSpec,
+ "V1beta1CertificateSigningRequestStatus": v1beta1CertificateSigningRequestStatus_1.V1beta1CertificateSigningRequestStatus,
+ "V1beta1ClusterRole": v1beta1ClusterRole_1.V1beta1ClusterRole,
+ "V1beta1ClusterRoleBinding": v1beta1ClusterRoleBinding_1.V1beta1ClusterRoleBinding,
+ "V1beta1ClusterRoleBindingList": v1beta1ClusterRoleBindingList_1.V1beta1ClusterRoleBindingList,
+ "V1beta1ClusterRoleList": v1beta1ClusterRoleList_1.V1beta1ClusterRoleList,
+ "V1beta1ControllerRevision": v1beta1ControllerRevision_1.V1beta1ControllerRevision,
+ "V1beta1ControllerRevisionList": v1beta1ControllerRevisionList_1.V1beta1ControllerRevisionList,
+ "V1beta1CronJob": v1beta1CronJob_1.V1beta1CronJob,
+ "V1beta1CronJobList": v1beta1CronJobList_1.V1beta1CronJobList,
+ "V1beta1CronJobSpec": v1beta1CronJobSpec_1.V1beta1CronJobSpec,
+ "V1beta1CronJobStatus": v1beta1CronJobStatus_1.V1beta1CronJobStatus,
+ "V1beta1CustomResourceColumnDefinition": v1beta1CustomResourceColumnDefinition_1.V1beta1CustomResourceColumnDefinition,
+ "V1beta1CustomResourceConversion": v1beta1CustomResourceConversion_1.V1beta1CustomResourceConversion,
+ "V1beta1CustomResourceDefinition": v1beta1CustomResourceDefinition_1.V1beta1CustomResourceDefinition,
+ "V1beta1CustomResourceDefinitionCondition": v1beta1CustomResourceDefinitionCondition_1.V1beta1CustomResourceDefinitionCondition,
+ "V1beta1CustomResourceDefinitionList": v1beta1CustomResourceDefinitionList_1.V1beta1CustomResourceDefinitionList,
+ "V1beta1CustomResourceDefinitionNames": v1beta1CustomResourceDefinitionNames_1.V1beta1CustomResourceDefinitionNames,
+ "V1beta1CustomResourceDefinitionSpec": v1beta1CustomResourceDefinitionSpec_1.V1beta1CustomResourceDefinitionSpec,
+ "V1beta1CustomResourceDefinitionStatus": v1beta1CustomResourceDefinitionStatus_1.V1beta1CustomResourceDefinitionStatus,
+ "V1beta1CustomResourceDefinitionVersion": v1beta1CustomResourceDefinitionVersion_1.V1beta1CustomResourceDefinitionVersion,
+ "V1beta1CustomResourceSubresourceScale": v1beta1CustomResourceSubresourceScale_1.V1beta1CustomResourceSubresourceScale,
+ "V1beta1CustomResourceSubresources": v1beta1CustomResourceSubresources_1.V1beta1CustomResourceSubresources,
+ "V1beta1CustomResourceValidation": v1beta1CustomResourceValidation_1.V1beta1CustomResourceValidation,
+ "V1beta1DaemonSet": v1beta1DaemonSet_1.V1beta1DaemonSet,
+ "V1beta1DaemonSetCondition": v1beta1DaemonSetCondition_1.V1beta1DaemonSetCondition,
+ "V1beta1DaemonSetList": v1beta1DaemonSetList_1.V1beta1DaemonSetList,
+ "V1beta1DaemonSetSpec": v1beta1DaemonSetSpec_1.V1beta1DaemonSetSpec,
+ "V1beta1DaemonSetStatus": v1beta1DaemonSetStatus_1.V1beta1DaemonSetStatus,
+ "V1beta1DaemonSetUpdateStrategy": v1beta1DaemonSetUpdateStrategy_1.V1beta1DaemonSetUpdateStrategy,
+ "V1beta1Event": v1beta1Event_1.V1beta1Event,
+ "V1beta1EventList": v1beta1EventList_1.V1beta1EventList,
+ "V1beta1EventSeries": v1beta1EventSeries_1.V1beta1EventSeries,
+ "V1beta1Eviction": v1beta1Eviction_1.V1beta1Eviction,
+ "V1beta1ExternalDocumentation": v1beta1ExternalDocumentation_1.V1beta1ExternalDocumentation,
+ "V1beta1IPBlock": v1beta1IPBlock_1.V1beta1IPBlock,
+ "V1beta1JSONSchemaProps": v1beta1JSONSchemaProps_1.V1beta1JSONSchemaProps,
+ "V1beta1JobTemplateSpec": v1beta1JobTemplateSpec_1.V1beta1JobTemplateSpec,
+ "V1beta1Lease": v1beta1Lease_1.V1beta1Lease,
+ "V1beta1LeaseList": v1beta1LeaseList_1.V1beta1LeaseList,
+ "V1beta1LeaseSpec": v1beta1LeaseSpec_1.V1beta1LeaseSpec,
+ "V1beta1LocalSubjectAccessReview": v1beta1LocalSubjectAccessReview_1.V1beta1LocalSubjectAccessReview,
+ "V1beta1MutatingWebhook": v1beta1MutatingWebhook_1.V1beta1MutatingWebhook,
+ "V1beta1MutatingWebhookConfiguration": v1beta1MutatingWebhookConfiguration_1.V1beta1MutatingWebhookConfiguration,
+ "V1beta1MutatingWebhookConfigurationList": v1beta1MutatingWebhookConfigurationList_1.V1beta1MutatingWebhookConfigurationList,
+ "V1beta1NetworkPolicy": v1beta1NetworkPolicy_1.V1beta1NetworkPolicy,
+ "V1beta1NetworkPolicyEgressRule": v1beta1NetworkPolicyEgressRule_1.V1beta1NetworkPolicyEgressRule,
+ "V1beta1NetworkPolicyIngressRule": v1beta1NetworkPolicyIngressRule_1.V1beta1NetworkPolicyIngressRule,
+ "V1beta1NetworkPolicyList": v1beta1NetworkPolicyList_1.V1beta1NetworkPolicyList,
+ "V1beta1NetworkPolicyPeer": v1beta1NetworkPolicyPeer_1.V1beta1NetworkPolicyPeer,
+ "V1beta1NetworkPolicyPort": v1beta1NetworkPolicyPort_1.V1beta1NetworkPolicyPort,
+ "V1beta1NetworkPolicySpec": v1beta1NetworkPolicySpec_1.V1beta1NetworkPolicySpec,
+ "V1beta1NonResourceAttributes": v1beta1NonResourceAttributes_1.V1beta1NonResourceAttributes,
+ "V1beta1NonResourceRule": v1beta1NonResourceRule_1.V1beta1NonResourceRule,
+ "V1beta1PodDisruptionBudget": v1beta1PodDisruptionBudget_1.V1beta1PodDisruptionBudget,
+ "V1beta1PodDisruptionBudgetList": v1beta1PodDisruptionBudgetList_1.V1beta1PodDisruptionBudgetList,
+ "V1beta1PodDisruptionBudgetSpec": v1beta1PodDisruptionBudgetSpec_1.V1beta1PodDisruptionBudgetSpec,
+ "V1beta1PodDisruptionBudgetStatus": v1beta1PodDisruptionBudgetStatus_1.V1beta1PodDisruptionBudgetStatus,
+ "V1beta1PolicyRule": v1beta1PolicyRule_1.V1beta1PolicyRule,
+ "V1beta1PriorityClass": v1beta1PriorityClass_1.V1beta1PriorityClass,
+ "V1beta1PriorityClassList": v1beta1PriorityClassList_1.V1beta1PriorityClassList,
+ "V1beta1ReplicaSet": v1beta1ReplicaSet_1.V1beta1ReplicaSet,
+ "V1beta1ReplicaSetCondition": v1beta1ReplicaSetCondition_1.V1beta1ReplicaSetCondition,
+ "V1beta1ReplicaSetList": v1beta1ReplicaSetList_1.V1beta1ReplicaSetList,
+ "V1beta1ReplicaSetSpec": v1beta1ReplicaSetSpec_1.V1beta1ReplicaSetSpec,
+ "V1beta1ReplicaSetStatus": v1beta1ReplicaSetStatus_1.V1beta1ReplicaSetStatus,
+ "V1beta1ResourceAttributes": v1beta1ResourceAttributes_1.V1beta1ResourceAttributes,
+ "V1beta1ResourceRule": v1beta1ResourceRule_1.V1beta1ResourceRule,
+ "V1beta1Role": v1beta1Role_1.V1beta1Role,
+ "V1beta1RoleBinding": v1beta1RoleBinding_1.V1beta1RoleBinding,
+ "V1beta1RoleBindingList": v1beta1RoleBindingList_1.V1beta1RoleBindingList,
+ "V1beta1RoleList": v1beta1RoleList_1.V1beta1RoleList,
+ "V1beta1RoleRef": v1beta1RoleRef_1.V1beta1RoleRef,
+ "V1beta1RollingUpdateDaemonSet": v1beta1RollingUpdateDaemonSet_1.V1beta1RollingUpdateDaemonSet,
+ "V1beta1RollingUpdateStatefulSetStrategy": v1beta1RollingUpdateStatefulSetStrategy_1.V1beta1RollingUpdateStatefulSetStrategy,
+ "V1beta1RuleWithOperations": v1beta1RuleWithOperations_1.V1beta1RuleWithOperations,
+ "V1beta1RuntimeClass": v1beta1RuntimeClass_1.V1beta1RuntimeClass,
+ "V1beta1RuntimeClassList": v1beta1RuntimeClassList_1.V1beta1RuntimeClassList,
+ "V1beta1SelfSubjectAccessReview": v1beta1SelfSubjectAccessReview_1.V1beta1SelfSubjectAccessReview,
+ "V1beta1SelfSubjectAccessReviewSpec": v1beta1SelfSubjectAccessReviewSpec_1.V1beta1SelfSubjectAccessReviewSpec,
+ "V1beta1SelfSubjectRulesReview": v1beta1SelfSubjectRulesReview_1.V1beta1SelfSubjectRulesReview,
+ "V1beta1SelfSubjectRulesReviewSpec": v1beta1SelfSubjectRulesReviewSpec_1.V1beta1SelfSubjectRulesReviewSpec,
+ "V1beta1StatefulSet": v1beta1StatefulSet_1.V1beta1StatefulSet,
+ "V1beta1StatefulSetCondition": v1beta1StatefulSetCondition_1.V1beta1StatefulSetCondition,
+ "V1beta1StatefulSetList": v1beta1StatefulSetList_1.V1beta1StatefulSetList,
+ "V1beta1StatefulSetSpec": v1beta1StatefulSetSpec_1.V1beta1StatefulSetSpec,
+ "V1beta1StatefulSetStatus": v1beta1StatefulSetStatus_1.V1beta1StatefulSetStatus,
+ "V1beta1StatefulSetUpdateStrategy": v1beta1StatefulSetUpdateStrategy_1.V1beta1StatefulSetUpdateStrategy,
+ "V1beta1StorageClass": v1beta1StorageClass_1.V1beta1StorageClass,
+ "V1beta1StorageClassList": v1beta1StorageClassList_1.V1beta1StorageClassList,
+ "V1beta1Subject": v1beta1Subject_1.V1beta1Subject,
+ "V1beta1SubjectAccessReview": v1beta1SubjectAccessReview_1.V1beta1SubjectAccessReview,
+ "V1beta1SubjectAccessReviewSpec": v1beta1SubjectAccessReviewSpec_1.V1beta1SubjectAccessReviewSpec,
+ "V1beta1SubjectAccessReviewStatus": v1beta1SubjectAccessReviewStatus_1.V1beta1SubjectAccessReviewStatus,
+ "V1beta1SubjectRulesReviewStatus": v1beta1SubjectRulesReviewStatus_1.V1beta1SubjectRulesReviewStatus,
+ "V1beta1TokenReview": v1beta1TokenReview_1.V1beta1TokenReview,
+ "V1beta1TokenReviewSpec": v1beta1TokenReviewSpec_1.V1beta1TokenReviewSpec,
+ "V1beta1TokenReviewStatus": v1beta1TokenReviewStatus_1.V1beta1TokenReviewStatus,
+ "V1beta1UserInfo": v1beta1UserInfo_1.V1beta1UserInfo,
+ "V1beta1ValidatingWebhook": v1beta1ValidatingWebhook_1.V1beta1ValidatingWebhook,
+ "V1beta1ValidatingWebhookConfiguration": v1beta1ValidatingWebhookConfiguration_1.V1beta1ValidatingWebhookConfiguration,
+ "V1beta1ValidatingWebhookConfigurationList": v1beta1ValidatingWebhookConfigurationList_1.V1beta1ValidatingWebhookConfigurationList,
+ "V1beta1VolumeAttachment": v1beta1VolumeAttachment_1.V1beta1VolumeAttachment,
+ "V1beta1VolumeAttachmentList": v1beta1VolumeAttachmentList_1.V1beta1VolumeAttachmentList,
+ "V1beta1VolumeAttachmentSource": v1beta1VolumeAttachmentSource_1.V1beta1VolumeAttachmentSource,
+ "V1beta1VolumeAttachmentSpec": v1beta1VolumeAttachmentSpec_1.V1beta1VolumeAttachmentSpec,
+ "V1beta1VolumeAttachmentStatus": v1beta1VolumeAttachmentStatus_1.V1beta1VolumeAttachmentStatus,
+ "V1beta1VolumeError": v1beta1VolumeError_1.V1beta1VolumeError,
+ "V1beta2ControllerRevision": v1beta2ControllerRevision_1.V1beta2ControllerRevision,
+ "V1beta2ControllerRevisionList": v1beta2ControllerRevisionList_1.V1beta2ControllerRevisionList,
+ "V1beta2DaemonSet": v1beta2DaemonSet_1.V1beta2DaemonSet,
+ "V1beta2DaemonSetCondition": v1beta2DaemonSetCondition_1.V1beta2DaemonSetCondition,
+ "V1beta2DaemonSetList": v1beta2DaemonSetList_1.V1beta2DaemonSetList,
+ "V1beta2DaemonSetSpec": v1beta2DaemonSetSpec_1.V1beta2DaemonSetSpec,
+ "V1beta2DaemonSetStatus": v1beta2DaemonSetStatus_1.V1beta2DaemonSetStatus,
+ "V1beta2DaemonSetUpdateStrategy": v1beta2DaemonSetUpdateStrategy_1.V1beta2DaemonSetUpdateStrategy,
+ "V1beta2Deployment": v1beta2Deployment_1.V1beta2Deployment,
+ "V1beta2DeploymentCondition": v1beta2DeploymentCondition_1.V1beta2DeploymentCondition,
+ "V1beta2DeploymentList": v1beta2DeploymentList_1.V1beta2DeploymentList,
+ "V1beta2DeploymentSpec": v1beta2DeploymentSpec_1.V1beta2DeploymentSpec,
+ "V1beta2DeploymentStatus": v1beta2DeploymentStatus_1.V1beta2DeploymentStatus,
+ "V1beta2DeploymentStrategy": v1beta2DeploymentStrategy_1.V1beta2DeploymentStrategy,
+ "V1beta2ReplicaSet": v1beta2ReplicaSet_1.V1beta2ReplicaSet,
+ "V1beta2ReplicaSetCondition": v1beta2ReplicaSetCondition_1.V1beta2ReplicaSetCondition,
+ "V1beta2ReplicaSetList": v1beta2ReplicaSetList_1.V1beta2ReplicaSetList,
+ "V1beta2ReplicaSetSpec": v1beta2ReplicaSetSpec_1.V1beta2ReplicaSetSpec,
+ "V1beta2ReplicaSetStatus": v1beta2ReplicaSetStatus_1.V1beta2ReplicaSetStatus,
+ "V1beta2RollingUpdateDaemonSet": v1beta2RollingUpdateDaemonSet_1.V1beta2RollingUpdateDaemonSet,
+ "V1beta2RollingUpdateDeployment": v1beta2RollingUpdateDeployment_1.V1beta2RollingUpdateDeployment,
+ "V1beta2RollingUpdateStatefulSetStrategy": v1beta2RollingUpdateStatefulSetStrategy_1.V1beta2RollingUpdateStatefulSetStrategy,
+ "V1beta2Scale": v1beta2Scale_1.V1beta2Scale,
+ "V1beta2ScaleSpec": v1beta2ScaleSpec_1.V1beta2ScaleSpec,
+ "V1beta2ScaleStatus": v1beta2ScaleStatus_1.V1beta2ScaleStatus,
+ "V1beta2StatefulSet": v1beta2StatefulSet_1.V1beta2StatefulSet,
+ "V1beta2StatefulSetCondition": v1beta2StatefulSetCondition_1.V1beta2StatefulSetCondition,
+ "V1beta2StatefulSetList": v1beta2StatefulSetList_1.V1beta2StatefulSetList,
+ "V1beta2StatefulSetSpec": v1beta2StatefulSetSpec_1.V1beta2StatefulSetSpec,
+ "V1beta2StatefulSetStatus": v1beta2StatefulSetStatus_1.V1beta2StatefulSetStatus,
+ "V1beta2StatefulSetUpdateStrategy": v1beta2StatefulSetUpdateStrategy_1.V1beta2StatefulSetUpdateStrategy,
+ "V2alpha1CronJob": v2alpha1CronJob_1.V2alpha1CronJob,
+ "V2alpha1CronJobList": v2alpha1CronJobList_1.V2alpha1CronJobList,
+ "V2alpha1CronJobSpec": v2alpha1CronJobSpec_1.V2alpha1CronJobSpec,
+ "V2alpha1CronJobStatus": v2alpha1CronJobStatus_1.V2alpha1CronJobStatus,
+ "V2alpha1JobTemplateSpec": v2alpha1JobTemplateSpec_1.V2alpha1JobTemplateSpec,
+ "V2beta1CrossVersionObjectReference": v2beta1CrossVersionObjectReference_1.V2beta1CrossVersionObjectReference,
+ "V2beta1ExternalMetricSource": v2beta1ExternalMetricSource_1.V2beta1ExternalMetricSource,
+ "V2beta1ExternalMetricStatus": v2beta1ExternalMetricStatus_1.V2beta1ExternalMetricStatus,
+ "V2beta1HorizontalPodAutoscaler": v2beta1HorizontalPodAutoscaler_1.V2beta1HorizontalPodAutoscaler,
+ "V2beta1HorizontalPodAutoscalerCondition": v2beta1HorizontalPodAutoscalerCondition_1.V2beta1HorizontalPodAutoscalerCondition,
+ "V2beta1HorizontalPodAutoscalerList": v2beta1HorizontalPodAutoscalerList_1.V2beta1HorizontalPodAutoscalerList,
+ "V2beta1HorizontalPodAutoscalerSpec": v2beta1HorizontalPodAutoscalerSpec_1.V2beta1HorizontalPodAutoscalerSpec,
+ "V2beta1HorizontalPodAutoscalerStatus": v2beta1HorizontalPodAutoscalerStatus_1.V2beta1HorizontalPodAutoscalerStatus,
+ "V2beta1MetricSpec": v2beta1MetricSpec_1.V2beta1MetricSpec,
+ "V2beta1MetricStatus": v2beta1MetricStatus_1.V2beta1MetricStatus,
+ "V2beta1ObjectMetricSource": v2beta1ObjectMetricSource_1.V2beta1ObjectMetricSource,
+ "V2beta1ObjectMetricStatus": v2beta1ObjectMetricStatus_1.V2beta1ObjectMetricStatus,
+ "V2beta1PodsMetricSource": v2beta1PodsMetricSource_1.V2beta1PodsMetricSource,
+ "V2beta1PodsMetricStatus": v2beta1PodsMetricStatus_1.V2beta1PodsMetricStatus,
+ "V2beta1ResourceMetricSource": v2beta1ResourceMetricSource_1.V2beta1ResourceMetricSource,
+ "V2beta1ResourceMetricStatus": v2beta1ResourceMetricStatus_1.V2beta1ResourceMetricStatus,
+ "V2beta2CrossVersionObjectReference": v2beta2CrossVersionObjectReference_1.V2beta2CrossVersionObjectReference,
+ "V2beta2ExternalMetricSource": v2beta2ExternalMetricSource_1.V2beta2ExternalMetricSource,
+ "V2beta2ExternalMetricStatus": v2beta2ExternalMetricStatus_1.V2beta2ExternalMetricStatus,
+ "V2beta2HorizontalPodAutoscaler": v2beta2HorizontalPodAutoscaler_1.V2beta2HorizontalPodAutoscaler,
+ "V2beta2HorizontalPodAutoscalerCondition": v2beta2HorizontalPodAutoscalerCondition_1.V2beta2HorizontalPodAutoscalerCondition,
+ "V2beta2HorizontalPodAutoscalerList": v2beta2HorizontalPodAutoscalerList_1.V2beta2HorizontalPodAutoscalerList,
+ "V2beta2HorizontalPodAutoscalerSpec": v2beta2HorizontalPodAutoscalerSpec_1.V2beta2HorizontalPodAutoscalerSpec,
+ "V2beta2HorizontalPodAutoscalerStatus": v2beta2HorizontalPodAutoscalerStatus_1.V2beta2HorizontalPodAutoscalerStatus,
+ "V2beta2MetricIdentifier": v2beta2MetricIdentifier_1.V2beta2MetricIdentifier,
+ "V2beta2MetricSpec": v2beta2MetricSpec_1.V2beta2MetricSpec,
+ "V2beta2MetricStatus": v2beta2MetricStatus_1.V2beta2MetricStatus,
+ "V2beta2MetricTarget": v2beta2MetricTarget_1.V2beta2MetricTarget,
+ "V2beta2MetricValueStatus": v2beta2MetricValueStatus_1.V2beta2MetricValueStatus,
+ "V2beta2ObjectMetricSource": v2beta2ObjectMetricSource_1.V2beta2ObjectMetricSource,
+ "V2beta2ObjectMetricStatus": v2beta2ObjectMetricStatus_1.V2beta2ObjectMetricStatus,
+ "V2beta2PodsMetricSource": v2beta2PodsMetricSource_1.V2beta2PodsMetricSource,
+ "V2beta2PodsMetricStatus": v2beta2PodsMetricStatus_1.V2beta2PodsMetricStatus,
+ "V2beta2ResourceMetricSource": v2beta2ResourceMetricSource_1.V2beta2ResourceMetricSource,
+ "V2beta2ResourceMetricStatus": v2beta2ResourceMetricStatus_1.V2beta2ResourceMetricStatus,
+ "VersionInfo": versionInfo_1.VersionInfo,
+};
+class ObjectSerializer {
+ static findCorrectType(data, expectedType) {
+ if (data == undefined) {
+ return expectedType;
+ }
+ else if (primitives.indexOf(expectedType.toLowerCase()) !== -1) {
+ return expectedType;
+ }
+ else if (expectedType === "Date") {
+ return expectedType;
+ }
+ else {
+ if (enumsMap[expectedType]) {
+ return expectedType;
+ }
+ if (!typeMap[expectedType]) {
+ return expectedType; // w/e we don't know the type
+ }
+ // Check the discriminator
+ let discriminatorProperty = typeMap[expectedType].discriminator;
+ if (discriminatorProperty == null) {
+ return expectedType; // the type does not have a discriminator. use it.
+ }
+ else {
+ if (data[discriminatorProperty]) {
+ var discriminatorType = data[discriminatorProperty];
+ if (typeMap[discriminatorType]) {
+ return discriminatorType; // use the type given in the discriminator
+ }
+ else {
+ return expectedType; // discriminator did not map to a type
+ }
+ }
+ else {
+ return expectedType; // discriminator was not present (or an empty string)
+ }
+ }
+ }
+ }
+ static serialize(data, type) {
+ if (data == undefined) {
+ return data;
+ }
+ else if (primitives.indexOf(type.toLowerCase()) !== -1) {
+ return data;
+ }
+ else if (type.lastIndexOf("Array<", 0) === 0) { // string.startsWith pre es6
+ let subType = type.replace("Array<", ""); // Array => Type>
+ subType = subType.substring(0, subType.length - 1); // Type> => Type
+ let transformedData = [];
+ for (let index in data) {
+ let date = data[index];
+ transformedData.push(ObjectSerializer.serialize(date, subType));
+ }
+ return transformedData;
+ }
+ else if (type === "Date") {
+ return data.toISOString();
+ }
+ else {
+ if (enumsMap[type]) {
+ return data;
+ }
+ if (!typeMap[type]) { // in case we dont know the type
+ return data;
+ }
+ // Get the actual type of this object
+ type = this.findCorrectType(data, type);
+ // get the map for the correct type.
+ let attributeTypes = typeMap[type].getAttributeTypeMap();
+ let instance = {};
+ for (let index in attributeTypes) {
+ let attributeType = attributeTypes[index];
+ instance[attributeType.baseName] = ObjectSerializer.serialize(data[attributeType.name], attributeType.type);
+ }
+ return instance;
+ }
+ }
+ static deserialize(data, type) {
+ // polymorphism may change the actual type.
+ type = ObjectSerializer.findCorrectType(data, type);
+ if (data == undefined) {
+ return data;
+ }
+ else if (primitives.indexOf(type.toLowerCase()) !== -1) {
+ return data;
+ }
+ else if (type.lastIndexOf("Array<", 0) === 0) { // string.startsWith pre es6
+ let subType = type.replace("Array<", ""); // Array => Type>
+ subType = subType.substring(0, subType.length - 1); // Type> => Type
+ let transformedData = [];
+ for (let index in data) {
+ let date = data[index];
+ transformedData.push(ObjectSerializer.deserialize(date, subType));
+ }
+ return transformedData;
+ }
+ else if (type === "Date") {
+ return new Date(data);
+ }
+ else {
+ if (enumsMap[type]) { // is Enum
+ return data;
+ }
+ if (!typeMap[type]) { // dont know the type
+ return data;
+ }
+ let instance = new typeMap[type]();
+ let attributeTypes = typeMap[type].getAttributeTypeMap();
+ for (let index in attributeTypes) {
+ let attributeType = attributeTypes[index];
+ instance[attributeType.name] = ObjectSerializer.deserialize(data[attributeType.baseName], attributeType.type);
+ }
+ return instance;
+ }
+ }
+}
+exports.ObjectSerializer = ObjectSerializer;
+class HttpBasicAuth {
+ constructor() {
+ this.username = '';
+ this.password = '';
+ }
+ applyToRequest(requestOptions) {
+ requestOptions.auth = {
+ username: this.username, password: this.password
+ };
+ }
+}
+exports.HttpBasicAuth = HttpBasicAuth;
+class ApiKeyAuth {
+ constructor(location, paramName) {
+ this.location = location;
+ this.paramName = paramName;
+ this.apiKey = '';
+ }
+ applyToRequest(requestOptions) {
+ if (this.location == "query") {
+ requestOptions.qs[this.paramName] = this.apiKey;
+ }
+ else if (this.location == "header" && requestOptions && requestOptions.headers) {
+ requestOptions.headers[this.paramName] = this.apiKey;
+ }
+ }
+}
+exports.ApiKeyAuth = ApiKeyAuth;
+class OAuth {
+ constructor() {
+ this.accessToken = '';
+ }
+ applyToRequest(requestOptions) {
+ if (requestOptions && requestOptions.headers) {
+ requestOptions.headers["Authorization"] = "Bearer " + this.accessToken;
+ }
+ }
+}
+exports.OAuth = OAuth;
+class VoidAuth {
+ constructor() {
+ this.username = '';
+ this.password = '';
+ }
+ applyToRequest(_) {
+ // Do nothing
+ }
+}
+exports.VoidAuth = VoidAuth;
+//# sourceMappingURL=models.js.map
\ No newline at end of file
diff --git a/dist/gen/model/models.js.map b/dist/gen/model/models.js.map
new file mode 100644
index 0000000000..55cc827edb
--- /dev/null
+++ b/dist/gen/model/models.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"models.js","sourceRoot":"","sources":["../../../src/gen/model/models.ts"],"names":[],"mappings":";;;AAAA,yFAA+D;AAC/D,4FAAkE;AAClE,iFAAuD;AACvD,oFAA0D;AAC1D,mFAAyD;AACzD,kEAAwC;AACxC,2EAAiD;AACjD,sEAA4C;AAC5C,0EAAgD;AAChD,sEAA4C;AAC5C,wEAA8C;AAC9C,0EAAgD;AAChD,sEAA4C;AAC5C,+EAAqD;AACrD,6DAAmC;AACnC,iEAAuC;AACvC,mEAAyC;AACzC,8EAAoD;AACpD,+EAAqD;AACrD,6EAAmD;AACnD,wEAA8C;AAC9C,iFAAuD;AACvD,4EAAkD;AAClD,gFAAsD;AACtD,4EAAkD;AAClD,8EAAoD;AACpD,gFAAsD;AACtD,oFAA0D;AAC1D,6EAAmD;AACnD,kFAAwD;AACxD,2EAAiD;AACjD,qEAA2C;AAC3C,qEAA2C;AAC3C,4EAAkD;AAClD,yEAA+C;AAC/C,yEAA+C;AAC/C,yEAA+C;AAC/C,2EAAiD;AACjD,wEAA8C;AAC9C,+EAAqD;AACrD,mFAAyD;AACzD,mFAAyD;AACzD,4EAAkD;AAClD,qFAA2D;AAC3D,uFAA6D;AAC7D,sFAA4D;AAC5D,yFAA+D;AAC/D,oFAA0D;AAC1D,mEAAyC;AACzC,uEAA6C;AAC7C,yEAA+C;AAC/C,+FAAqE;AACrE,6EAAmD;AACnD,kFAAwD;AACxD,qEAA2C;AAC3C,4EAAkD;AAClD,yEAA+C;AAC/C,yEAA+C;AAC/C,yEAA+C;AAC/C,2EAAiD;AACjD,wEAA8C;AAC9C,0EAAgD;AAChD,2EAAiD;AACjD,yEAA+C;AAC/C,gFAAsD;AACtD,uEAA6C;AAC7C,iEAAuC;AACvC,2EAAiD;AACjD,+EAAqD;AACrD,+EAAqD;AACrD,mFAAyD;AACzD,kFAAwD;AACxD,qFAA2D;AAC3D,gFAAsD;AACtD,2FAAiE;AACjE,gEAAsC;AACtC,uDAA6B;AAC7B,2DAAiC;AACjC,0DAAgC;AAChC,8DAAoC;AACpC,yDAA+B;AAC/B,kEAAwC;AACxC,6DAAmC;AACnC,6DAAmC;AACnC,+DAAqC;AACrC,0DAAgC;AAChC,+EAAqD;AACrD,uDAA6B;AAC7B,8DAAoC;AACpC,6DAAmC;AACnC,oEAA0C;AAC1C,8EAAoD;AACpD,oEAA0C;AAC1C,sDAA4B;AAC5B,wEAA8C;AAC9C,8DAAoC;AACpC,2DAAiC;AACjC,2EAAiD;AACjD,iEAAuC;AACvC,2EAAiD;AACjD,iEAAuC;AACvC,6DAAmC;AACnC,0DAAgC;AAChC,iEAAuC;AACvC,qEAA2C;AAC3C,8DAAoC;AACpC,iEAAuC;AACvC,8DAAoC;AACpC,kEAAwC;AACxC,wDAA8B;AAC9B,iEAAuC;AACvC,mEAAyC;AACzC,4DAAkC;AAClC,wEAA8C;AAC9C,kEAAwC;AACxC,oEAA0C;AAC1C,wDAA8B;AAC9B,6DAAmC;AACnC,4DAAkC;AAClC,6DAAmC;AACnC,oEAA0C;AAC1C,uEAA6C;AAC7C,oEAA0C;AAC1C,8DAAoC;AACpC,iEAAuC;AACvC,qEAA2C;AAC3C,0EAAgD;AAChD,6DAAmC;AACnC,wDAA8B;AAC9B,iEAAuC;AACvC,4DAAkC;AAClC,4DAAkC;AAClC,8DAAoC;AACpC,sEAA4C;AAC5C,4DAAkC;AAClC,yDAA+B;AAC/B,kEAAwC;AACxC,6DAAmC;AACnC,6DAAmC;AACnC,+DAAqC;AACrC,iEAAuC;AACvC,oEAA0C;AAC1C,oEAA0C;AAC1C,sEAA4C;AAC5C,mEAAyC;AACzC,8DAAoC;AACpC,2DAAiC;AACjC,6DAAmC;AACnC,wDAA8B;AAC9B,4DAAkC;AAClC,4DAAkC;AAClC,qDAA2B;AAC3B,2DAAiC;AACjC,oDAA0B;AAC1B,wDAA8B;AAC9B,0DAAgC;AAChC,0DAAgC;AAChC,yDAA+B;AAC/B,6DAAmC;AACnC,yEAA+C;AAC/C,+DAAqC;AACrC,kEAAwC;AACxC,4EAAkD;AAClD,kEAAwC;AACxC,8EAAoD;AACpD,oEAA0C;AAC1C,uEAA6C;AAC7C,4DAAkC;AAClC,yDAA+B;AAC/B,sDAA4B;AAC5B,sEAA4C;AAC5C,0EAAgD;AAChD,0EAAgD;AAChD,4EAAkD;AAClD,wDAA8B;AAC9B,mEAAyC;AACzC,sDAA4B;AAC5B,0EAAgD;AAChD,gEAAsC;AACtC,0DAAgC;AAChC,2DAAiC;AACjC,kDAAwB;AACxB,2DAAiC;AACjC,sDAA4B;AAC5B,sDAA4B;AAC5B,wDAA8B;AAC9B,wDAA8B;AAC9B,4DAAkC;AAClC,uEAA6C;AAC7C,oDAA0B;AAC1B,wDAA8B;AAC9B,wDAA8B;AAC9B,wDAA8B;AAC9B,yDAA+B;AAC/B,6DAAmC;AACnC,6DAAmC;AACnC,6DAAmC;AACnC,uDAA6B;AAC7B,kEAAwC;AACxC,iEAAuC;AACvC,mEAAyC;AACzC,uEAA6C;AAC7C,gEAAsC;AACtC,iEAAuC;AACvC,8DAAoC;AACpC,wDAA8B;AAC9B,4DAAkC;AAClC,4DAAkC;AAClC,8DAAoC;AACpC,4DAAkC;AAClC,sEAA4C;AAC5C,uEAA6C;AAC7C,gEAAsC;AACtC,gEAAsC;AACtC,gEAAsC;AACtC,gEAAsC;AACtC,mDAAyB;AACzB,0DAAgC;AAChC,2DAAiC;AACjC,4DAAkC;AAClC,+DAAqC;AACrC,+DAAqC;AACrC,kEAAwC;AACxC,uDAA6B;AAC7B,2DAAiC;AACjC,sEAA4C;AAC5C,+DAAqC;AACrC,uDAA6B;AAC7B,yDAA+B;AAC/B,6DAAmC;AACnC,oEAA0C;AAC1C,8DAAoC;AACpC,kEAAwC;AACxC,yDAA+B;AAC/B,8DAAoC;AACpC,6DAAmC;AACnC,+DAAqC;AACrC,oEAA0C;AAC1C,6EAAmD;AACnD,wEAA8C;AAC9C,wEAA8C;AAC9C,0EAAgD;AAChD,gFAAsD;AACtD,mEAAyC;AACzC,mEAAyC;AACzC,qEAA2C;AAC3C,+EAAqD;AACrD,kDAAwB;AACxB,0DAAgC;AAChC,8DAAoC;AACpC,8DAAoC;AACpC,2DAAiC;AACjC,2DAAiC;AACjC,iEAAuC;AACvC,sDAA4B;AAC5B,+DAAqC;AACrC,iEAAuC;AACvC,sDAA4B;AAC5B,wDAA8B;AAC9B,0DAAgC;AAChC,8DAAoC;AACpC,8DAAoC;AACpC,yDAA+B;AAC/B,mEAAyC;AACzC,4DAAkC;AAClC,sEAA4C;AAC5C,4DAAkC;AAClC,gEAAsC;AACtC,oDAA0B;AAC1B,oEAA0C;AAC1C,kEAAwC;AACxC,wEAA8C;AAC9C,8DAAoC;AACpC,yDAA+B;AAC/B,kEAAwC;AACxC,6DAAmC;AACnC,6DAAmC;AACnC,+DAAqC;AACrC,oEAA0C;AAC1C,6EAAmD;AACnD,wEAA8C;AAC9C,wEAA8C;AAC9C,0EAAgD;AAChD,iEAAuC;AACvC,oEAA0C;AAC1C,4DAAkC;AAClC,gEAAsC;AACtC,gEAAsC;AACtC,kEAAwC;AACxC,mEAAyC;AACzC,2DAAiC;AACjC,mDAAyB;AACzB,0DAAgC;AAChC,8DAAoC;AACpC,uDAA6B;AAC7B,sDAA4B;AAC5B,qEAA2C;AAC3C,sEAA4C;AAC5C,+EAAqD;AACrD,6DAAmC;AACnC,oDAA0B;AAC1B,4EAAkD;AAClD,kEAAwC;AACxC,wDAA8B;AAC9B,0DAAgC;AAChC,4DAAkC;AAClC,gFAAsD;AACtD,qDAA2B;AAC3B,8DAAoC;AACpC,gEAAsC;AACtC,yDAA+B;AAC/B,+DAAqC;AACrC,8DAAoC;AACpC,iEAAuC;AACvC,8DAAoC;AACpC,sEAA4C;AAC5C,0EAAgD;AAChD,qEAA2C;AAC3C,yEAA+C;AAC/C,wEAA8C;AAC9C,sDAA4B;AAC5B,6DAAmC;AACnC,iEAAuC;AACvC,4EAAkD;AAClD,0DAAgC;AAChC,0DAAgC;AAChC,+DAAqC;AACrC,0DAAgC;AAChC,4DAAkC;AAClC,oEAA0C;AAC1C,0DAAgC;AAChC,mEAAyC;AACzC,8DAAoC;AACpC,8DAAoC;AACpC,gEAAsC;AACtC,wEAA8C;AAC9C,qDAA2B;AAC3B,0DAAgC;AAChC,4DAAkC;AAClC,2DAAiC;AACjC,+DAAqC;AACrC,8EAAoD;AACpD,oEAA0C;AAC1C,sDAA4B;AAC5B,kEAAwC;AACxC,sEAA4C;AAC5C,wEAA8C;AAC9C,uEAA6C;AAC7C,qDAA2B;AAC3B,8DAAoC;AACpC,oDAA0B;AAC1B,0DAAgC;AAChC,8DAAoC;AACpC,gEAAsC;AACtC,yDAA+B;AAC/B,+EAAqD;AACrD,mEAAyC;AACzC,wEAA8C;AAC9C,uDAA6B;AAC7B,qDAA2B;AAC3B,+DAAqC;AACrC,mEAAyC;AACzC,qEAA2C;AAC3C,mEAAyC;AACzC,qEAA2C;AAC3C,2DAAiC;AACjC,0DAAgC;AAChC,0DAAgC;AAChC,iEAAuC;AACvC,+DAAqC;AACrC,6EAAmD;AACnD,yDAA+B;AAC/B,sEAA4C;AAC5C,4EAAkD;AAClD,oEAA0C;AAC1C,8DAAoC;AACpC,kEAAwC;AACxC,kEAAwC;AACxC,gEAAsC;AACtC,uEAA6C;AAC7C,2EAAiD;AACjD,oEAA0C;AAC1C,8DAAoC;AACpC,kEAAwC;AACxC,kEAAwC;AACxC,2DAAiC;AACjC,+DAAqC;AACrC,kEAAwC;AACxC,sEAA4C;AAC5C,yDAA+B;AAC/B,gEAAsC;AACtC,oEAA0C;AAC1C,6DAAmC;AACnC,4DAAkC;AAClC,iEAAuC;AACvC,qEAA2C;AAC3C,qEAA2C;AAC3C,qEAA2C;AAC3C,4DAAkC;AAClC,qEAA2C;AAC3C,yEAA+C;AAC/C,2EAAiD;AACjD,yEAA+C;AAC/C,2EAAiD;AACjD,gEAAsC;AACtC,4DAAkC;AAClC,wEAA8C;AAC9C,0EAAgD;AAChD,8DAAoC;AACpC,uEAA6C;AAC7C,kEAAwC;AACxC,kEAAwC;AACxC,oEAA0C;AAC1C,mEAAyC;AACzC,6DAAmC;AACnC,iEAAuC;AACvC,iEAAuC;AACvC,2DAAiC;AACjC,iEAAuC;AACvC,+DAAqC;AACrC,+DAAqC;AACrC,6EAAmD;AACnD,sFAA4D;AAC5D,iFAAuD;AACvD,iFAAuD;AACvD,mFAAyD;AACzD,+DAAqC;AACrC,sEAA4C;AAC5C,0EAAgD;AAChD,mEAAyC;AACzC,sEAA4C;AAC5C,0EAAgD;AAChD,2DAAiC;AACjC,+DAAqC;AACrC,+DAAqC;AACrC,iEAAuC;AACvC,kFAAwD;AACxD,4EAAkD;AAClD,4EAAkD;AAClD,qFAA2D;AAC3D,gFAAsD;AACtD,iFAAuD;AACvD,gFAAsD;AACtD,kFAAwD;AACxD,mFAAyD;AACzD,kFAAwD;AACxD,8EAAoD;AACpD,4EAAkD;AAClD,6DAAmC;AACnC,sEAA4C;AAC5C,iEAAuC;AACvC,iEAAuC;AACvC,mEAAyC;AACzC,2EAAiD;AACjD,yDAA+B;AAC/B,6DAAmC;AACnC,+DAAqC;AACrC,4DAAkC;AAClC,yEAA+C;AAC/C,2DAAiC;AACjC,mEAAyC;AACzC,mEAAyC;AACzC,yDAA+B;AAC/B,6DAAmC;AACnC,6DAAmC;AACnC,4EAAkD;AAClD,mEAAyC;AACzC,gFAAsD;AACtD,oFAA0D;AAC1D,iEAAuC;AACvC,2EAAiD;AACjD,4EAAkD;AAClD,qEAA2C;AAC3C,qEAA2C;AAC3C,qEAA2C;AAC3C,qEAA2C;AAC3C,yEAA+C;AAC/C,mEAAyC;AACzC,uEAA6C;AAC7C,2EAAiD;AACjD,2EAAiD;AACjD,6EAAmD;AACnD,8DAAoC;AACpC,iEAAuC;AACvC,qEAA2C;AAC3C,8DAAoC;AACpC,uEAA6C;AAC7C,kEAAwC;AACxC,kEAAwC;AACxC,oEAA0C;AAC1C,sEAA4C;AAC5C,gEAAsC;AACtC,wDAA8B;AAC9B,+DAAqC;AACrC,mEAAyC;AACzC,4DAAkC;AAClC,2DAAiC;AACjC,0EAAgD;AAChD,oFAA0D;AAC1D,sEAA4C;AAC5C,gEAAsC;AACtC,oEAA0C;AAC1C,2EAAiD;AACjD,+EAAqD;AACrD,0EAAgD;AAChD,8EAAoD;AACpD,+DAAqC;AACrC,wEAA8C;AAC9C,mEAAyC;AACzC,mEAAyC;AACzC,qEAA2C;AAC3C,6EAAmD;AACnD,gEAAsC;AACtC,oEAA0C;AAC1C,2DAAiC;AACjC,uEAA6C;AAC7C,2EAAiD;AACjD,6EAAmD;AACnD,4EAAkD;AAClD,+DAAqC;AACrC,mEAAyC;AACzC,qEAA2C;AAC3C,4DAAkC;AAClC,qEAA2C;AAC3C,kFAAwD;AACxD,sFAA4D;AAC5D,oEAA0C;AAC1C,wEAA8C;AAC9C,0EAAgD;AAChD,wEAA8C;AAC9C,0EAAgD;AAChD,+DAAqC;AACrC,sEAA4C;AAC5C,0EAAgD;AAChD,6DAAmC;AACnC,sEAA4C;AAC5C,iEAAuC;AACvC,iEAAuC;AACvC,mEAAyC;AACzC,2EAAiD;AACjD,8DAAoC;AACpC,uEAA6C;AAC7C,kEAAwC;AACxC,kEAAwC;AACxC,oEAA0C;AAC1C,sEAA4C;AAC5C,8DAAoC;AACpC,uEAA6C;AAC7C,kEAAwC;AACxC,kEAAwC;AACxC,oEAA0C;AAC1C,0EAAgD;AAChD,2EAAiD;AACjD,oFAA0D;AAC1D,yDAA+B;AAC/B,6DAAmC;AACnC,+DAAqC;AACrC,+DAAqC;AACrC,wEAA8C;AAC9C,mEAAyC;AACzC,mEAAyC;AACzC,qEAA2C;AAC3C,6EAAmD;AACnD,4DAAkC;AAClC,gEAAsC;AACtC,gEAAsC;AACtC,kEAAwC;AACxC,oEAA0C;AAC1C,+EAAqD;AACrD,wEAA8C;AAC9C,wEAA8C;AAC9C,2EAAiD;AACjD,oFAA0D;AAC1D,+EAAqD;AACrD,+EAAqD;AACrD,iFAAuD;AACvD,8DAAoC;AACpC,gEAAsC;AACtC,sEAA4C;AAC5C,sEAA4C;AAC5C,oEAA0C;AAC1C,oEAA0C;AAC1C,wEAA8C;AAC9C,wEAA8C;AAC9C,+EAAqD;AACrD,wEAA8C;AAC9C,wEAA8C;AAC9C,2EAAiD;AACjD,oFAA0D;AAC1D,+EAAqD;AACrD,+EAAqD;AACrD,iFAAuD;AACvD,oEAA0C;AAC1C,8DAAoC;AACpC,gEAAsC;AACtC,gEAAsC;AACtC,qEAA2C;AAC3C,sEAA4C;AAC5C,sEAA4C;AAC5C,oEAA0C;AAC1C,oEAA0C;AAC1C,wEAA8C;AAC9C,wEAA8C;AAC9C,wDAA8B;AAI9B,iHAA8G;AAC9G,uHAAoH;AACpH,iGAA8F;AAC9F,uGAAoG;AACpG,qGAAkG;AAClG,mEAAgE;AAChE,qFAAkF;AAClF,2EAAwE;AACxE,mFAAgF;AAChF,2EAAwE;AACxE,+EAA4E;AAC5E,mFAAgF;AAChF,2EAAwE;AACxE,6FAA0F;AAC1F,yDAAsD;AACtD,iEAA8D;AAC9D,qEAAkE;AAClE,2FAAwF;AACxF,6FAA0F;AAC1F,yFAAsF;AACtF,+EAA4E;AAC5E,iGAA8F;AAC9F,uFAAoF;AACpF,+FAA4F;AAC5F,uFAAoF;AACpF,2FAAwF;AACxF,+FAA4F;AAC5F,uGAAoG;AACpG,yFAAsF;AACtF,mGAAgG;AAChG,qFAAkF;AAClF,yEAAsE;AACtE,yEAAsE;AACtE,uFAAoF;AACpF,iFAA8E;AAC9E,iFAA8E;AAC9E,iFAA8E;AAC9E,qFAAkF;AAClF,+EAA4E;AAC5E,6FAA0F;AAC1F,qGAAkG;AAClG,qGAAkG;AAClG,uFAAoF;AACpF,yGAAsG;AACtG,6GAA0G;AAC1G,2GAAwG;AACxG,iHAA8G;AAC9G,uGAAoG;AACpG,qEAAkE;AAClE,6EAA0E;AAC1E,iFAA8E;AAC9E,6HAA0H;AAC1H,yFAAsF;AACtF,mGAAgG;AAChG,yEAAsE;AACtE,uFAAoF;AACpF,iFAA8E;AAC9E,iFAA8E;AAC9E,iFAA8E;AAC9E,qFAAkF;AAClF,+EAA4E;AAC5E,mFAAgF;AAChF,qFAAkF;AAClF,iFAA8E;AAC9E,+FAA4F;AAC5F,6EAA0E;AAC1E,iEAA8D;AAC9D,qFAAkF;AAClF,6FAA0F;AAC1F,6FAA0F;AAC1F,qGAAkG;AAClG,mGAAgG;AAChG,yGAAsG;AACtG,+FAA4F;AAC5F,qHAAkH;AAClH,+DAA4D;AAC5D,6CAA0C;AAC1C,qDAAkD;AAClD,mDAAgD;AAChD,2DAAwD;AACxD,iDAA8C;AAC9C,mEAAgE;AAChE,yDAAsD;AACtD,yDAAsD;AACtD,6DAA0D;AAC1D,mDAAgD;AAChD,6FAA0F;AAC1F,6CAA0C;AAC1C,2DAAwD;AACxD,yDAAsD;AACtD,uEAAoE;AACpE,2FAAwF;AACxF,uEAAoE;AACpE,2CAAwC;AACxC,+EAA4E;AAC5E,2DAAwD;AACxD,qDAAkD;AAClD,qFAAkF;AAClF,iEAA8D;AAC9D,qFAAkF;AAClF,iEAA8D;AAC9D,yDAAsD;AACtD,mDAAgD;AAChD,iEAA8D;AAC9D,yEAAsE;AACtE,2DAAwD;AACxD,iEAA8D;AAC9D,2DAAwD;AACxD,mEAAgE;AAChE,+CAA4C;AAC5C,iEAA8D;AAC9D,qEAAkE;AAClE,uDAAoD;AACpD,+EAA4E;AAC5E,mEAAgE;AAChE,uEAAoE;AACpE,+CAA4C;AAC5C,yDAAsD;AACtD,uDAAoD;AACpD,yDAAsD;AACtD,uEAAoE;AACpE,6EAA0E;AAC1E,uEAAoE;AACpE,2DAAwD;AACxD,iEAA8D;AAC9D,yEAAsE;AACtE,mFAAgF;AAChF,yDAAsD;AACtD,+CAA4C;AAC5C,iEAA8D;AAC9D,uDAAoD;AACpD,uDAAoD;AACpD,2DAAwD;AACxD,2EAAwE;AACxE,uDAAoD;AACpD,iDAA8C;AAC9C,mEAAgE;AAChE,yDAAsD;AACtD,yDAAsD;AACtD,6DAA0D;AAC1D,iEAA8D;AAC9D,uEAAoE;AACpE,uEAAoE;AACpE,2EAAwE;AACxE,qEAAkE;AAClE,2DAAwD;AACxD,qDAAkD;AAClD,yDAAsD;AACtD,+CAA4C;AAC5C,uDAAoD;AACpD,uDAAoD;AACpD,yCAAsC;AACtC,qDAAkD;AAClD,uCAAoC;AACpC,+CAA4C;AAC5C,mDAAgD;AAChD,mDAAgD;AAChD,iDAA8C;AAC9C,yDAAsD;AACtD,iFAA8E;AAC9E,6DAA0D;AAC1D,mEAAgE;AAChE,uFAAoF;AACpF,mEAAgE;AAChE,2FAAwF;AACxF,uEAAoE;AACpE,6EAA0E;AAC1E,uDAAoD;AACpD,iDAA8C;AAC9C,2CAAwC;AACxC,2EAAwE;AACxE,mFAAgF;AAChF,mFAAgF;AAChF,uFAAoF;AACpF,+CAA4C;AAC5C,qEAAkE;AAClE,2CAAwC;AACxC,mFAAgF;AAChF,+DAA4D;AAC5D,mDAAgD;AAChD,qDAAkD;AAClD,mCAAgC;AAChC,qDAAkD;AAClD,2CAAwC;AACxC,2CAAwC;AACxC,+CAA4C;AAC5C,+CAA4C;AAC5C,uDAAoD;AACpD,6EAA0E;AAC1E,uCAAoC;AACpC,+CAA4C;AAC5C,+CAA4C;AAC5C,+CAA4C;AAC5C,iDAA8C;AAC9C,yDAAsD;AACtD,yDAAsD;AACtD,yDAAsD;AACtD,6CAA0C;AAC1C,mEAAgE;AAChE,iEAA8D;AAC9D,qEAAkE;AAClE,6EAA0E;AAC1E,+DAA4D;AAC5D,iEAA8D;AAC9D,2DAAwD;AACxD,+CAA4C;AAC5C,uDAAoD;AACpD,uDAAoD;AACpD,2DAAwD;AACxD,uDAAoD;AACpD,2EAAwE;AACxE,6EAA0E;AAC1E,+DAA4D;AAC5D,+DAA4D;AAC5D,+DAA4D;AAC5D,+DAA4D;AAC5D,qCAAkC;AAClC,mDAAgD;AAChD,qDAAkD;AAClD,uDAAoD;AACpD,6DAA0D;AAC1D,6DAA0D;AAC1D,mEAAgE;AAChE,6CAA0C;AAC1C,qDAAkD;AAClD,2EAAwE;AACxE,6DAA0D;AAC1D,6CAA0C;AAC1C,iDAA8C;AAC9C,yDAAsD;AACtD,uEAAoE;AACpE,2DAAwD;AACxD,mEAAgE;AAChE,iDAA8C;AAC9C,2DAAwD;AACxD,yDAAsD;AACtD,6DAA0D;AAC1D,uEAAoE;AACpE,yFAAsF;AACtF,+EAA4E;AAC5E,+EAA4E;AAC5E,mFAAgF;AAChF,+FAA4F;AAC5F,qEAAkE;AAClE,qEAAkE;AAClE,yEAAsE;AACtE,6FAA0F;AAC1F,mCAAgC;AAChC,mDAAgD;AAChD,2DAAwD;AACxD,2DAAwD;AACxD,qDAAkD;AAClD,qDAAkD;AAClD,iEAA8D;AAC9D,2CAAwC;AACxC,6DAA0D;AAC1D,iEAA8D;AAC9D,2CAAwC;AACxC,+CAA4C;AAC5C,mDAAgD;AAChD,2DAAwD;AACxD,2DAAwD;AACxD,iDAA8C;AAC9C,qEAAkE;AAClE,uDAAoD;AACpD,2EAAwE;AACxE,uDAAoD;AACpD,+DAA4D;AAC5D,uCAAoC;AACpC,uEAAoE;AACpE,mEAAgE;AAChE,+EAA4E;AAC5E,2DAAwD;AACxD,iDAA8C;AAC9C,mEAAgE;AAChE,yDAAsD;AACtD,yDAAsD;AACtD,6DAA0D;AAC1D,uEAAoE;AACpE,yFAAsF;AACtF,+EAA4E;AAC5E,+EAA4E;AAC5E,mFAAgF;AAChF,iEAA8D;AAC9D,uEAAoE;AACpE,uDAAoD;AACpD,+DAA4D;AAC5D,+DAA4D;AAC5D,mEAAgE;AAChE,qEAAkE;AAClE,qDAAkD;AAClD,qCAAkC;AAClC,mDAAgD;AAChD,2DAAwD;AACxD,6CAA0C;AAC1C,2CAAwC;AACxC,yEAAsE;AACtE,2EAAwE;AACxE,6FAA0F;AAC1F,yDAAsD;AACtD,uCAAoC;AACpC,uFAAoF;AACpF,mEAAgE;AAChE,+CAA4C;AAC5C,mDAAgD;AAChD,uDAAoD;AACpD,+FAA4F;AAC5F,yCAAsC;AACtC,2DAAwD;AACxD,+DAA4D;AAC5D,iDAA8C;AAC9C,6DAA0D;AAC1D,2DAAwD;AACxD,iEAA8D;AAC9D,2DAAwD;AACxD,2EAAwE;AACxE,mFAAgF;AAChF,yEAAsE;AACtE,iFAA8E;AAC9E,+EAA4E;AAC5E,2CAAwC;AACxC,yDAAsD;AACtD,iEAA8D;AAC9D,uFAAoF;AACpF,mDAAgD;AAChD,mDAAgD;AAChD,6DAA0D;AAC1D,mDAAgD;AAChD,uDAAoD;AACpD,uEAAoE;AACpE,mDAAgD;AAChD,qEAAkE;AAClE,2DAAwD;AACxD,2DAAwD;AACxD,+DAA4D;AAC5D,+EAA4E;AAC5E,yCAAsC;AACtC,mDAAgD;AAChD,uDAAoD;AACpD,qDAAkD;AAClD,6DAA0D;AAC1D,2FAAwF;AACxF,uEAAoE;AACpE,2CAAwC;AACxC,mEAAgE;AAChE,2EAAwE;AACxE,+EAA4E;AAC5E,6EAA0E;AAC1E,yCAAsC;AACtC,2DAAwD;AACxD,uCAAoC;AACpC,mDAAgD;AAChD,2DAAwD;AACxD,+DAA4D;AAC5D,iDAA8C;AAC9C,6FAA0F;AAC1F,qEAAkE;AAClE,+EAA4E;AAC5E,6CAA0C;AAC1C,yCAAsC;AACtC,6DAA0D;AAC1D,qEAAkE;AAClE,yEAAsE;AACtE,qEAAkE;AAClE,yEAAsE;AACtE,qDAAkD;AAClD,mDAAgD;AAChD,mDAAgD;AAChD,iEAA8D;AAC9D,6DAA0D;AAC1D,yFAAsF;AACtF,iDAA8C;AAC9C,2EAAwE;AACxE,uFAAoF;AACpF,uEAAoE;AACpE,2DAAwD;AACxD,mEAAgE;AAChE,mEAAgE;AAChE,+DAA4D;AAC5D,6EAA0E;AAC1E,qFAAkF;AAClF,uEAAoE;AACpE,2DAAwD;AACxD,mEAAgE;AAChE,mEAAgE;AAChE,qDAAkD;AAClD,6DAA0D;AAC1D,mEAAgE;AAChE,2EAAwE;AACxE,iDAA8C;AAC9C,+DAA4D;AAC5D,uEAAoE;AACpE,yDAAsD;AACtD,uDAAoD;AACpD,iEAA8D;AAC9D,yEAAsE;AACtE,yEAAsE;AACtE,yEAAsE;AACtE,uDAAoD;AACpD,yEAAsE;AACtE,iFAA8E;AAC9E,qFAAkF;AAClF,iFAA8E;AAC9E,qFAAkF;AAClF,+DAA4D;AAC5D,uDAAoD;AACpD,+EAA4E;AAC5E,mFAAgF;AAChF,2DAAwD;AACxD,6EAA0E;AAC1E,mEAAgE;AAChE,mEAAgE;AAChE,uEAAoE;AACpE,qEAAkE;AAClE,yDAAsD;AACtD,iEAA8D;AAC9D,iEAA8D;AAC9D,qDAAkD;AAClD,iEAA8D;AAC9D,6DAA0D;AAC1D,6DAA0D;AAC1D,yFAAsF;AACtF,2GAAwG;AACxG,iGAA8F;AAC9F,iGAA8F;AAC9F,qGAAkG;AAClG,6DAA0D;AAC1D,2EAAwE;AACxE,mFAAgF;AAChF,qEAAkE;AAClE,2EAAwE;AACxE,mFAAgF;AAChF,qDAAkD;AAClD,6DAA0D;AAC1D,6DAA0D;AAC1D,iEAA8D;AAC9D,mGAAgG;AAChG,uFAAoF;AACpF,uFAAoF;AACpF,yGAAsG;AACtG,+FAA4F;AAC5F,iGAA8F;AAC9F,+FAA4F;AAC5F,mGAAgG;AAChG,qGAAkG;AAClG,mGAAgG;AAChG,2FAAwF;AACxF,uFAAoF;AACpF,yDAAsD;AACtD,2EAAwE;AACxE,iEAA8D;AAC9D,iEAA8D;AAC9D,qEAAkE;AAClE,qFAAkF;AAClF,iDAA8C;AAC9C,yDAAsD;AACtD,6DAA0D;AAC1D,uDAAoD;AACpD,iFAA8E;AAC9E,qDAAkD;AAClD,qEAAkE;AAClE,qEAAkE;AAClE,iDAA8C;AAC9C,yDAAsD;AACtD,yDAAsD;AACtD,uFAAoF;AACpF,qEAAkE;AAClE,+FAA4F;AAC5F,uGAAoG;AACpG,iEAA8D;AAC9D,qFAAkF;AAClF,uFAAoF;AACpF,yEAAsE;AACtE,yEAAsE;AACtE,yEAAsE;AACtE,yEAAsE;AACtE,iFAA8E;AAC9E,qEAAkE;AAClE,6EAA0E;AAC1E,qFAAkF;AAClF,qFAAkF;AAClF,yFAAsF;AACtF,2DAAwD;AACxD,iEAA8D;AAC9D,yEAAsE;AACtE,2DAAwD;AACxD,6EAA0E;AAC1E,mEAAgE;AAChE,mEAAgE;AAChE,uEAAoE;AACpE,2EAAwE;AACxE,+DAA4D;AAC5D,+CAA4C;AAC5C,6DAA0D;AAC1D,qEAAkE;AAClE,uDAAoD;AACpD,qDAAkD;AAClD,mFAAgF;AAChF,uGAAoG;AACpG,2EAAwE;AACxE,+DAA4D;AAC5D,uEAAoE;AACpE,qFAAkF;AAClF,6FAA0F;AAC1F,mFAAgF;AAChF,2FAAwF;AACxF,6DAA0D;AAC1D,+EAA4E;AAC5E,qEAAkE;AAClE,qEAAkE;AAClE,yEAAsE;AACtE,yFAAsF;AACtF,+DAA4D;AAC5D,uEAAoE;AACpE,qDAAkD;AAClD,6EAA0E;AAC1E,qFAAkF;AAClF,yFAAsF;AACtF,uFAAoF;AACpF,6DAA0D;AAC1D,qEAAkE;AAClE,yEAAsE;AACtE,uDAAoD;AACpD,yEAAsE;AACtE,mGAAgG;AAChG,2GAAwG;AACxG,uEAAoE;AACpE,+EAA4E;AAC5E,mFAAgF;AAChF,+EAA4E;AAC5E,mFAAgF;AAChF,6DAA0D;AAC1D,2EAAwE;AACxE,mFAAgF;AAChF,yDAAsD;AACtD,2EAAwE;AACxE,iEAA8D;AAC9D,iEAA8D;AAC9D,qEAAkE;AAClE,qFAAkF;AAClF,2DAAwD;AACxD,6EAA0E;AAC1E,mEAAgE;AAChE,mEAAgE;AAChE,uEAAoE;AACpE,2EAAwE;AACxE,2DAAwD;AACxD,6EAA0E;AAC1E,mEAAgE;AAChE,mEAAgE;AAChE,uEAAoE;AACpE,mFAAgF;AAChF,qFAAkF;AAClF,uGAAoG;AACpG,iDAA8C;AAC9C,yDAAsD;AACtD,6DAA0D;AAC1D,6DAA0D;AAC1D,+EAA4E;AAC5E,qEAAkE;AAClE,qEAAkE;AAClE,yEAAsE;AACtE,yFAAsF;AACtF,uDAAoD;AACpD,+DAA4D;AAC5D,+DAA4D;AAC5D,mEAAgE;AAChE,uEAAoE;AACpE,6FAA0F;AAC1F,+EAA4E;AAC5E,+EAA4E;AAC5E,qFAAkF;AAClF,uGAAoG;AACpG,6FAA0F;AAC1F,6FAA0F;AAC1F,iGAA8F;AAC9F,2DAAwD;AACxD,+DAA4D;AAC5D,2EAAwE;AACxE,2EAAwE;AACxE,uEAAoE;AACpE,uEAAoE;AACpE,+EAA4E;AAC5E,+EAA4E;AAC5E,6FAA0F;AAC1F,+EAA4E;AAC5E,+EAA4E;AAC5E,qFAAkF;AAClF,uGAAoG;AACpG,6FAA0F;AAC1F,6FAA0F;AAC1F,iGAA8F;AAC9F,uEAAoE;AACpE,2DAAwD;AACxD,+DAA4D;AAC5D,+DAA4D;AAC5D,yEAAsE;AACtE,2EAAwE;AACxE,2EAAwE;AACxE,uEAAoE;AACpE,uEAAoE;AACpE,+EAA4E;AAC5E,+EAA4E;AAC5E,+CAA4C;AAE5C,uCAAuC;AACvC,IAAI,UAAU,GAAG;IACG,QAAQ;IACR,SAAS;IACT,QAAQ;IACR,SAAS;IACT,MAAM;IACN,OAAO;IACP,QAAQ;IACR,KAAK;CACP,CAAC;AAEnB,IAAI,QAAQ,GAA2B,EACtC,CAAA;AAED,IAAI,OAAO,GAA2B;IAClC,8CAA8C,EAAE,2FAA4C;IAC5F,iDAAiD,EAAE,iGAA+C;IAClG,sCAAsC,EAAE,2EAAoC;IAC5E,yCAAyC,EAAE,iFAAuC;IAClF,wCAAwC,EAAE,+EAAsC;IAChF,uBAAuB,EAAE,6CAAqB;IAC9C,gCAAgC,EAAE,+DAA8B;IAChE,2BAA2B,EAAE,qDAAyB;IACtD,+BAA+B,EAAE,6DAA6B;IAC9D,2BAA2B,EAAE,qDAAyB;IACtD,6BAA6B,EAAE,yDAA2B;IAC1D,+BAA+B,EAAE,6DAA6B;IAC9D,2BAA2B,EAAE,qDAAyB;IACtD,oCAAoC,EAAE,uEAAkC;IACxE,kBAAkB,EAAE,mCAAgB;IACpC,sBAAsB,EAAE,2CAAoB;IAC5C,wBAAwB,EAAE,+CAAsB;IAChD,mCAAmC,EAAE,qEAAiC;IACtE,oCAAoC,EAAE,uEAAkC;IACxE,kCAAkC,EAAE,mEAAgC;IACpE,6BAA6B,EAAE,yDAA2B;IAC1D,sCAAsC,EAAE,2EAAoC;IAC5E,iCAAiC,EAAE,iEAA+B;IAClE,qCAAqC,EAAE,yEAAmC;IAC1E,iCAAiC,EAAE,iEAA+B;IAClE,mCAAmC,EAAE,qEAAiC;IACtE,qCAAqC,EAAE,yEAAmC;IAC1E,yCAAyC,EAAE,iFAAuC;IAClF,kCAAkC,EAAE,mEAAgC;IACpE,uCAAuC,EAAE,6EAAqC;IAC9E,gCAAgC,EAAE,+DAA8B;IAChE,0BAA0B,EAAE,mDAAwB;IACpD,0BAA0B,EAAE,mDAAwB;IACpD,iCAAiC,EAAE,iEAA+B;IAClE,8BAA8B,EAAE,2DAA4B;IAC5D,8BAA8B,EAAE,2DAA4B;IAC5D,8BAA8B,EAAE,2DAA4B;IAC5D,gCAAgC,EAAE,+DAA8B;IAChE,6BAA6B,EAAE,yDAA2B;IAC1D,oCAAoC,EAAE,uEAAkC;IACxE,wCAAwC,EAAE,+EAAsC;IAChF,wCAAwC,EAAE,+EAAsC;IAChF,iCAAiC,EAAE,iEAA+B;IAClE,0CAA0C,EAAE,mFAAwC;IACpF,4CAA4C,EAAE,uFAA0C;IACxF,2CAA2C,EAAE,qFAAyC;IACtF,8CAA8C,EAAE,2FAA4C;IAC5F,yCAAyC,EAAE,iFAAuC;IAClF,wBAAwB,EAAE,+CAAsB;IAChD,4BAA4B,EAAE,uDAA0B;IACxD,8BAA8B,EAAE,2DAA4B;IAC5D,oDAAoD,EAAE,uGAAkD;IACxG,kCAAkC,EAAE,mEAAgC;IACpE,uCAAuC,EAAE,6EAAqC;IAC9E,0BAA0B,EAAE,mDAAwB;IACpD,iCAAiC,EAAE,iEAA+B;IAClE,8BAA8B,EAAE,2DAA4B;IAC5D,8BAA8B,EAAE,2DAA4B;IAC5D,8BAA8B,EAAE,2DAA4B;IAC5D,gCAAgC,EAAE,+DAA8B;IAChE,6BAA6B,EAAE,yDAA2B;IAC1D,+BAA+B,EAAE,6DAA6B;IAC9D,gCAAgC,EAAE,+DAA8B;IAChE,8BAA8B,EAAE,2DAA4B;IAC5D,qCAAqC,EAAE,yEAAmC;IAC1E,4BAA4B,EAAE,uDAA0B;IACxD,sBAAsB,EAAE,2CAAoB;IAC5C,gCAAgC,EAAE,+DAA8B;IAChE,oCAAoC,EAAE,uEAAkC;IACxE,oCAAoC,EAAE,uEAAkC;IACxE,wCAAwC,EAAE,+EAAsC;IAChF,uCAAuC,EAAE,6EAAqC;IAC9E,0CAA0C,EAAE,mFAAwC;IACpF,qCAAqC,EAAE,yEAAmC;IAC1E,gDAAgD,EAAE,+FAA8C;IAChG,qBAAqB,EAAE,yCAAmB;IAC1C,YAAY,EAAE,uBAAU;IACxB,gBAAgB,EAAE,+BAAc;IAChC,eAAe,EAAE,6BAAa;IAC9B,mBAAmB,EAAE,qCAAiB;IACtC,cAAc,EAAE,2BAAY;IAC5B,uBAAuB,EAAE,6CAAqB;IAC9C,kBAAkB,EAAE,mCAAgB;IACpC,kBAAkB,EAAE,mCAAgB;IACpC,oBAAoB,EAAE,uCAAkB;IACxC,eAAe,EAAE,6BAAa;IAC9B,oCAAoC,EAAE,uEAAkC;IACxE,YAAY,EAAE,uBAAU;IACxB,mBAAmB,EAAE,qCAAiB;IACtC,kBAAkB,EAAE,mCAAgB;IACpC,yBAAyB,EAAE,iDAAuB;IAClD,mCAAmC,EAAE,qEAAiC;IACtE,yBAAyB,EAAE,iDAAuB;IAClD,WAAW,EAAE,qBAAS;IACtB,6BAA6B,EAAE,yDAA2B;IAC1D,mBAAmB,EAAE,qCAAiB;IACtC,gBAAgB,EAAE,+BAAc;IAChC,gCAAgC,EAAE,+DAA8B;IAChE,sBAAsB,EAAE,2CAAoB;IAC5C,gCAAgC,EAAE,+DAA8B;IAChE,sBAAsB,EAAE,2CAAoB;IAC5C,kBAAkB,EAAE,mCAAgB;IACpC,eAAe,EAAE,6BAAa;IAC9B,sBAAsB,EAAE,2CAAoB;IAC5C,0BAA0B,EAAE,mDAAwB;IACpD,mBAAmB,EAAE,qCAAiB;IACtC,sBAAsB,EAAE,2CAAoB;IAC5C,mBAAmB,EAAE,qCAAiB;IACtC,uBAAuB,EAAE,6CAAqB;IAC9C,aAAa,EAAE,yBAAW;IAC1B,sBAAsB,EAAE,2CAAoB;IAC5C,wBAAwB,EAAE,+CAAsB;IAChD,iBAAiB,EAAE,iCAAe;IAClC,6BAA6B,EAAE,yDAA2B;IAC1D,uBAAuB,EAAE,6CAAqB;IAC9C,yBAAyB,EAAE,iDAAuB;IAClD,aAAa,EAAE,yBAAW;IAC1B,kBAAkB,EAAE,mCAAgB;IACpC,iBAAiB,EAAE,iCAAe;IAClC,kBAAkB,EAAE,mCAAgB;IACpC,yBAAyB,EAAE,iDAAuB;IAClD,4BAA4B,EAAE,uDAA0B;IACxD,yBAAyB,EAAE,iDAAuB;IAClD,mBAAmB,EAAE,qCAAiB;IACtC,sBAAsB,EAAE,2CAAoB;IAC5C,0BAA0B,EAAE,mDAAwB;IACpD,+BAA+B,EAAE,6DAA6B;IAC9D,kBAAkB,EAAE,mCAAgB;IACpC,aAAa,EAAE,yBAAW;IAC1B,sBAAsB,EAAE,2CAAoB;IAC5C,iBAAiB,EAAE,iCAAe;IAClC,iBAAiB,EAAE,iCAAe;IAClC,mBAAmB,EAAE,qCAAiB;IACtC,2BAA2B,EAAE,qDAAyB;IACtD,iBAAiB,EAAE,iCAAe;IAClC,cAAc,EAAE,2BAAY;IAC5B,uBAAuB,EAAE,6CAAqB;IAC9C,kBAAkB,EAAE,mCAAgB;IACpC,kBAAkB,EAAE,mCAAgB;IACpC,oBAAoB,EAAE,uCAAkB;IACxC,sBAAsB,EAAE,2CAAoB;IAC5C,yBAAyB,EAAE,iDAAuB;IAClD,yBAAyB,EAAE,iDAAuB;IAClD,2BAA2B,EAAE,qDAAyB;IACtD,wBAAwB,EAAE,+CAAsB;IAChD,mBAAmB,EAAE,qCAAiB;IACtC,gBAAgB,EAAE,+BAAc;IAChC,kBAAkB,EAAE,mCAAgB;IACpC,aAAa,EAAE,yBAAW;IAC1B,iBAAiB,EAAE,iCAAe;IAClC,iBAAiB,EAAE,iCAAe;IAClC,UAAU,EAAE,mBAAQ;IACpB,gBAAgB,EAAE,+BAAc;IAChC,SAAS,EAAE,iBAAO;IAClB,aAAa,EAAE,yBAAW;IAC1B,eAAe,EAAE,6BAAa;IAC9B,eAAe,EAAE,6BAAa;IAC9B,cAAc,EAAE,2BAAY;IAC5B,kBAAkB,EAAE,mCAAgB;IACpC,8BAA8B,EAAE,2DAA4B;IAC5D,oBAAoB,EAAE,uCAAkB;IACxC,uBAAuB,EAAE,6CAAqB;IAC9C,iCAAiC,EAAE,iEAA+B;IAClE,uBAAuB,EAAE,6CAAqB;IAC9C,mCAAmC,EAAE,qEAAiC;IACtE,yBAAyB,EAAE,iDAAuB;IAClD,4BAA4B,EAAE,uDAA0B;IACxD,iBAAiB,EAAE,iCAAe;IAClC,cAAc,EAAE,2BAAY;IAC5B,WAAW,EAAE,qBAAS;IACtB,2BAA2B,EAAE,qDAAyB;IACtD,+BAA+B,EAAE,6DAA6B;IAC9D,+BAA+B,EAAE,6DAA6B;IAC9D,iCAAiC,EAAE,iEAA+B;IAClE,aAAa,EAAE,yBAAW;IAC1B,wBAAwB,EAAE,+CAAsB;IAChD,WAAW,EAAE,qBAAS;IACtB,+BAA+B,EAAE,6DAA6B;IAC9D,qBAAqB,EAAE,yCAAmB;IAC1C,eAAe,EAAE,6BAAa;IAC9B,gBAAgB,EAAE,+BAAc;IAChC,OAAO,EAAE,aAAK;IACd,gBAAgB,EAAE,+BAAc;IAChC,WAAW,EAAE,qBAAS;IACtB,WAAW,EAAE,qBAAS;IACtB,aAAa,EAAE,yBAAW;IAC1B,aAAa,EAAE,yBAAW;IAC1B,iBAAiB,EAAE,iCAAe;IAClC,4BAA4B,EAAE,uDAA0B;IACxD,SAAS,EAAE,iBAAO;IAClB,aAAa,EAAE,yBAAW;IAC1B,aAAa,EAAE,yBAAW;IAC1B,aAAa,EAAE,yBAAW;IAC1B,cAAc,EAAE,2BAAY;IAC5B,kBAAkB,EAAE,mCAAgB;IACpC,kBAAkB,EAAE,mCAAgB;IACpC,kBAAkB,EAAE,mCAAgB;IACpC,YAAY,EAAE,uBAAU;IACxB,uBAAuB,EAAE,6CAAqB;IAC9C,sBAAsB,EAAE,2CAAoB;IAC5C,wBAAwB,EAAE,+CAAsB;IAChD,4BAA4B,EAAE,uDAA0B;IACxD,qBAAqB,EAAE,yCAAmB;IAC1C,sBAAsB,EAAE,2CAAoB;IAC5C,mBAAmB,EAAE,qCAAiB;IACtC,aAAa,EAAE,yBAAW;IAC1B,iBAAiB,EAAE,iCAAe;IAClC,iBAAiB,EAAE,iCAAe;IAClC,mBAAmB,EAAE,qCAAiB;IACtC,iBAAiB,EAAE,iCAAe;IAClC,2BAA2B,EAAE,qDAAyB;IACtD,4BAA4B,EAAE,uDAA0B;IACxD,qBAAqB,EAAE,yCAAmB;IAC1C,qBAAqB,EAAE,yCAAmB;IAC1C,qBAAqB,EAAE,yCAAmB;IAC1C,qBAAqB,EAAE,yCAAmB;IAC1C,QAAQ,EAAE,eAAM;IAChB,eAAe,EAAE,6BAAa;IAC9B,gBAAgB,EAAE,+BAAc;IAChC,iBAAiB,EAAE,iCAAe;IAClC,oBAAoB,EAAE,uCAAkB;IACxC,oBAAoB,EAAE,uCAAkB;IACxC,uBAAuB,EAAE,6CAAqB;IAC9C,YAAY,EAAE,uBAAU;IACxB,gBAAgB,EAAE,+BAAc;IAChC,2BAA2B,EAAE,qDAAyB;IACtD,oBAAoB,EAAE,uCAAkB;IACxC,YAAY,EAAE,uBAAU;IACxB,cAAc,EAAE,2BAAY;IAC5B,kBAAkB,EAAE,mCAAgB;IACpC,yBAAyB,EAAE,iDAAuB;IAClD,mBAAmB,EAAE,qCAAiB;IACtC,uBAAuB,EAAE,6CAAqB;IAC9C,cAAc,EAAE,2BAAY;IAC5B,mBAAmB,EAAE,qCAAiB;IACtC,kBAAkB,EAAE,mCAAgB;IACpC,oBAAoB,EAAE,uCAAkB;IACxC,yBAAyB,EAAE,iDAAuB;IAClD,kCAAkC,EAAE,mEAAgC;IACpE,6BAA6B,EAAE,yDAA2B;IAC1D,6BAA6B,EAAE,yDAA2B;IAC1D,+BAA+B,EAAE,6DAA6B;IAC9D,qCAAqC,EAAE,yEAAmC;IAC1E,wBAAwB,EAAE,+CAAsB;IAChD,wBAAwB,EAAE,+CAAsB;IAChD,0BAA0B,EAAE,mDAAwB;IACpD,oCAAoC,EAAE,uEAAkC;IACxE,OAAO,EAAE,aAAK;IACd,eAAe,EAAE,6BAAa;IAC9B,mBAAmB,EAAE,qCAAiB;IACtC,mBAAmB,EAAE,qCAAiB;IACtC,gBAAgB,EAAE,+BAAc;IAChC,gBAAgB,EAAE,+BAAc;IAChC,sBAAsB,EAAE,2CAAoB;IAC5C,WAAW,EAAE,qBAAS;IACtB,oBAAoB,EAAE,uCAAkB;IACxC,sBAAsB,EAAE,2CAAoB;IAC5C,WAAW,EAAE,qBAAS;IACtB,aAAa,EAAE,yBAAW;IAC1B,eAAe,EAAE,6BAAa;IAC9B,mBAAmB,EAAE,qCAAiB;IACtC,mBAAmB,EAAE,qCAAiB;IACtC,cAAc,EAAE,2BAAY;IAC5B,wBAAwB,EAAE,+CAAsB;IAChD,iBAAiB,EAAE,iCAAe;IAClC,2BAA2B,EAAE,qDAAyB;IACtD,iBAAiB,EAAE,iCAAe;IAClC,qBAAqB,EAAE,yCAAmB;IAC1C,SAAS,EAAE,iBAAO;IAClB,yBAAyB,EAAE,iDAAuB;IAClD,uBAAuB,EAAE,6CAAqB;IAC9C,6BAA6B,EAAE,yDAA2B;IAC1D,mBAAmB,EAAE,qCAAiB;IACtC,cAAc,EAAE,2BAAY;IAC5B,uBAAuB,EAAE,6CAAqB;IAC9C,kBAAkB,EAAE,mCAAgB;IACpC,kBAAkB,EAAE,mCAAgB;IACpC,oBAAoB,EAAE,uCAAkB;IACxC,yBAAyB,EAAE,iDAAuB;IAClD,kCAAkC,EAAE,mEAAgC;IACpE,6BAA6B,EAAE,yDAA2B;IAC1D,6BAA6B,EAAE,yDAA2B;IAC1D,+BAA+B,EAAE,6DAA6B;IAC9D,sBAAsB,EAAE,2CAAoB;IAC5C,yBAAyB,EAAE,iDAAuB;IAClD,iBAAiB,EAAE,iCAAe;IAClC,qBAAqB,EAAE,yCAAmB;IAC1C,qBAAqB,EAAE,yCAAmB;IAC1C,uBAAuB,EAAE,6CAAqB;IAC9C,wBAAwB,EAAE,+CAAsB;IAChD,gBAAgB,EAAE,+BAAc;IAChC,QAAQ,EAAE,eAAM;IAChB,eAAe,EAAE,6BAAa;IAC9B,mBAAmB,EAAE,qCAAiB;IACtC,YAAY,EAAE,uBAAU;IACxB,WAAW,EAAE,qBAAS;IACtB,0BAA0B,EAAE,mDAAwB;IACpD,2BAA2B,EAAE,qDAAyB;IACtD,oCAAoC,EAAE,uEAAkC;IACxE,kBAAkB,EAAE,mCAAgB;IACpC,SAAS,EAAE,iBAAO;IAClB,iCAAiC,EAAE,iEAA+B;IAClE,uBAAuB,EAAE,6CAAqB;IAC9C,aAAa,EAAE,yBAAW;IAC1B,eAAe,EAAE,6BAAa;IAC9B,iBAAiB,EAAE,iCAAe;IAClC,qCAAqC,EAAE,yEAAmC;IAC1E,UAAU,EAAE,mBAAQ;IACpB,mBAAmB,EAAE,qCAAiB;IACtC,qBAAqB,EAAE,yCAAmB;IAC1C,cAAc,EAAE,2BAAY;IAC5B,oBAAoB,EAAE,uCAAkB;IACxC,mBAAmB,EAAE,qCAAiB;IACtC,sBAAsB,EAAE,2CAAoB;IAC5C,mBAAmB,EAAE,qCAAiB;IACtC,2BAA2B,EAAE,qDAAyB;IACtD,+BAA+B,EAAE,6DAA6B;IAC9D,0BAA0B,EAAE,mDAAwB;IACpD,8BAA8B,EAAE,2DAA4B;IAC5D,6BAA6B,EAAE,yDAA2B;IAC1D,WAAW,EAAE,qBAAS;IACtB,kBAAkB,EAAE,mCAAgB;IACpC,sBAAsB,EAAE,2CAAoB;IAC5C,iCAAiC,EAAE,iEAA+B;IAClE,eAAe,EAAE,6BAAa;IAC9B,eAAe,EAAE,6BAAa;IAC9B,oBAAoB,EAAE,uCAAkB;IACxC,eAAe,EAAE,6BAAa;IAC9B,iBAAiB,EAAE,iCAAe;IAClC,yBAAyB,EAAE,iDAAuB;IAClD,eAAe,EAAE,6BAAa;IAC9B,wBAAwB,EAAE,+CAAsB;IAChD,mBAAmB,EAAE,qCAAiB;IACtC,mBAAmB,EAAE,qCAAiB;IACtC,qBAAqB,EAAE,yCAAmB;IAC1C,6BAA6B,EAAE,yDAA2B;IAC1D,UAAU,EAAE,mBAAQ;IACpB,eAAe,EAAE,6BAAa;IAC9B,iBAAiB,EAAE,iCAAe;IAClC,gBAAgB,EAAE,+BAAc;IAChC,oBAAoB,EAAE,uCAAkB;IACxC,mCAAmC,EAAE,qEAAiC;IACtE,yBAAyB,EAAE,iDAAuB;IAClD,WAAW,EAAE,qBAAS;IACtB,uBAAuB,EAAE,6CAAqB;IAC9C,2BAA2B,EAAE,qDAAyB;IACtD,6BAA6B,EAAE,yDAA2B;IAC1D,4BAA4B,EAAE,uDAA0B;IACxD,UAAU,EAAE,mBAAQ;IACpB,mBAAmB,EAAE,qCAAiB;IACtC,SAAS,EAAE,iBAAO;IAClB,eAAe,EAAE,6BAAa;IAC9B,mBAAmB,EAAE,qCAAiB;IACtC,qBAAqB,EAAE,yCAAmB;IAC1C,cAAc,EAAE,2BAAY;IAC5B,oCAAoC,EAAE,uEAAkC;IACxE,wBAAwB,EAAE,+CAAsB;IAChD,6BAA6B,EAAE,yDAA2B;IAC1D,YAAY,EAAE,uBAAU;IACxB,UAAU,EAAE,mBAAQ;IACpB,oBAAoB,EAAE,uCAAkB;IACxC,wBAAwB,EAAE,+CAAsB;IAChD,0BAA0B,EAAE,mDAAwB;IACpD,wBAAwB,EAAE,+CAAsB;IAChD,0BAA0B,EAAE,mDAAwB;IACpD,gBAAgB,EAAE,+BAAc;IAChC,eAAe,EAAE,6BAAa;IAC9B,eAAe,EAAE,6BAAa;IAC9B,sBAAsB,EAAE,2CAAoB;IAC5C,oBAAoB,EAAE,uCAAkB;IACxC,kCAAkC,EAAE,mEAAgC;IACpE,cAAc,EAAE,2BAAY;IAC5B,2BAA2B,EAAE,qDAAyB;IACtD,iCAAiC,EAAE,iEAA+B;IAClE,yBAAyB,EAAE,iDAAuB;IAClD,mBAAmB,EAAE,qCAAiB;IACtC,uBAAuB,EAAE,6CAAqB;IAC9C,uBAAuB,EAAE,6CAAqB;IAC9C,qBAAqB,EAAE,yCAAmB;IAC1C,4BAA4B,EAAE,uDAA0B;IACxD,gCAAgC,EAAE,+DAA8B;IAChE,yBAAyB,EAAE,iDAAuB;IAClD,mBAAmB,EAAE,qCAAiB;IACtC,uBAAuB,EAAE,6CAAqB;IAC9C,uBAAuB,EAAE,6CAAqB;IAC9C,gBAAgB,EAAE,+BAAc;IAChC,oBAAoB,EAAE,uCAAkB;IACxC,uBAAuB,EAAE,6CAAqB;IAC9C,2BAA2B,EAAE,qDAAyB;IACtD,cAAc,EAAE,2BAAY;IAC5B,qBAAqB,EAAE,yCAAmB;IAC1C,yBAAyB,EAAE,iDAAuB;IAClD,kBAAkB,EAAE,mCAAgB;IACpC,iBAAiB,EAAE,iCAAe;IAClC,sBAAsB,EAAE,2CAAoB;IAC5C,0BAA0B,EAAE,mDAAwB;IACpD,0BAA0B,EAAE,mDAAwB;IACpD,0BAA0B,EAAE,mDAAwB;IACpD,iBAAiB,EAAE,iCAAe;IAClC,0BAA0B,EAAE,mDAAwB;IACpD,8BAA8B,EAAE,2DAA4B;IAC5D,gCAAgC,EAAE,+DAA8B;IAChE,8BAA8B,EAAE,2DAA4B;IAC5D,gCAAgC,EAAE,+DAA8B;IAChE,qBAAqB,EAAE,yCAAmB;IAC1C,iBAAiB,EAAE,iCAAe;IAClC,6BAA6B,EAAE,yDAA2B;IAC1D,+BAA+B,EAAE,6DAA6B;IAC9D,mBAAmB,EAAE,qCAAiB;IACtC,4BAA4B,EAAE,uDAA0B;IACxD,uBAAuB,EAAE,6CAAqB;IAC9C,uBAAuB,EAAE,6CAAqB;IAC9C,yBAAyB,EAAE,iDAAuB;IAClD,wBAAwB,EAAE,+CAAsB;IAChD,kBAAkB,EAAE,mCAAgB;IACpC,sBAAsB,EAAE,2CAAoB;IAC5C,sBAAsB,EAAE,2CAAoB;IAC5C,gBAAgB,EAAE,+BAAc;IAChC,sBAAsB,EAAE,2CAAoB;IAC5C,oBAAoB,EAAE,uCAAkB;IACxC,oBAAoB,EAAE,uCAAkB;IACxC,kCAAkC,EAAE,mEAAgC;IACpE,2CAA2C,EAAE,qFAAyC;IACtF,sCAAsC,EAAE,2EAAoC;IAC5E,sCAAsC,EAAE,2EAAoC;IAC5E,wCAAwC,EAAE,+EAAsC;IAChF,oBAAoB,EAAE,uCAAkB;IACxC,2BAA2B,EAAE,qDAAyB;IACtD,+BAA+B,EAAE,6DAA6B;IAC9D,wBAAwB,EAAE,+CAAsB;IAChD,2BAA2B,EAAE,qDAAyB;IACtD,+BAA+B,EAAE,6DAA6B;IAC9D,gBAAgB,EAAE,+BAAc;IAChC,oBAAoB,EAAE,uCAAkB;IACxC,oBAAoB,EAAE,uCAAkB;IACxC,sBAAsB,EAAE,2CAAoB;IAC5C,uCAAuC,EAAE,6EAAqC;IAC9E,iCAAiC,EAAE,iEAA+B;IAClE,iCAAiC,EAAE,iEAA+B;IAClE,0CAA0C,EAAE,mFAAwC;IACpF,qCAAqC,EAAE,yEAAmC;IAC1E,sCAAsC,EAAE,2EAAoC;IAC5E,qCAAqC,EAAE,yEAAmC;IAC1E,uCAAuC,EAAE,6EAAqC;IAC9E,wCAAwC,EAAE,+EAAsC;IAChF,uCAAuC,EAAE,6EAAqC;IAC9E,mCAAmC,EAAE,qEAAiC;IACtE,iCAAiC,EAAE,iEAA+B;IAClE,kBAAkB,EAAE,mCAAgB;IACpC,2BAA2B,EAAE,qDAAyB;IACtD,sBAAsB,EAAE,2CAAoB;IAC5C,sBAAsB,EAAE,2CAAoB;IAC5C,wBAAwB,EAAE,+CAAsB;IAChD,gCAAgC,EAAE,+DAA8B;IAChE,cAAc,EAAE,2BAAY;IAC5B,kBAAkB,EAAE,mCAAgB;IACpC,oBAAoB,EAAE,uCAAkB;IACxC,iBAAiB,EAAE,iCAAe;IAClC,8BAA8B,EAAE,2DAA4B;IAC5D,gBAAgB,EAAE,+BAAc;IAChC,wBAAwB,EAAE,+CAAsB;IAChD,wBAAwB,EAAE,+CAAsB;IAChD,cAAc,EAAE,2BAAY;IAC5B,kBAAkB,EAAE,mCAAgB;IACpC,kBAAkB,EAAE,mCAAgB;IACpC,iCAAiC,EAAE,iEAA+B;IAClE,wBAAwB,EAAE,+CAAsB;IAChD,qCAAqC,EAAE,yEAAmC;IAC1E,yCAAyC,EAAE,iFAAuC;IAClF,sBAAsB,EAAE,2CAAoB;IAC5C,gCAAgC,EAAE,+DAA8B;IAChE,iCAAiC,EAAE,iEAA+B;IAClE,0BAA0B,EAAE,mDAAwB;IACpD,0BAA0B,EAAE,mDAAwB;IACpD,0BAA0B,EAAE,mDAAwB;IACpD,0BAA0B,EAAE,mDAAwB;IACpD,8BAA8B,EAAE,2DAA4B;IAC5D,wBAAwB,EAAE,+CAAsB;IAChD,4BAA4B,EAAE,uDAA0B;IACxD,gCAAgC,EAAE,+DAA8B;IAChE,gCAAgC,EAAE,+DAA8B;IAChE,kCAAkC,EAAE,mEAAgC;IACpE,mBAAmB,EAAE,qCAAiB;IACtC,sBAAsB,EAAE,2CAAoB;IAC5C,0BAA0B,EAAE,mDAAwB;IACpD,mBAAmB,EAAE,qCAAiB;IACtC,4BAA4B,EAAE,uDAA0B;IACxD,uBAAuB,EAAE,6CAAqB;IAC9C,uBAAuB,EAAE,6CAAqB;IAC9C,yBAAyB,EAAE,iDAAuB;IAClD,2BAA2B,EAAE,qDAAyB;IACtD,qBAAqB,EAAE,yCAAmB;IAC1C,aAAa,EAAE,yBAAW;IAC1B,oBAAoB,EAAE,uCAAkB;IACxC,wBAAwB,EAAE,+CAAsB;IAChD,iBAAiB,EAAE,iCAAe;IAClC,gBAAgB,EAAE,+BAAc;IAChC,+BAA+B,EAAE,6DAA6B;IAC9D,yCAAyC,EAAE,iFAAuC;IAClF,2BAA2B,EAAE,qDAAyB;IACtD,qBAAqB,EAAE,yCAAmB;IAC1C,yBAAyB,EAAE,iDAAuB;IAClD,gCAAgC,EAAE,+DAA8B;IAChE,oCAAoC,EAAE,uEAAkC;IACxE,+BAA+B,EAAE,6DAA6B;IAC9D,mCAAmC,EAAE,qEAAiC;IACtE,oBAAoB,EAAE,uCAAkB;IACxC,6BAA6B,EAAE,yDAA2B;IAC1D,wBAAwB,EAAE,+CAAsB;IAChD,wBAAwB,EAAE,+CAAsB;IAChD,0BAA0B,EAAE,mDAAwB;IACpD,kCAAkC,EAAE,mEAAgC;IACpE,qBAAqB,EAAE,yCAAmB;IAC1C,yBAAyB,EAAE,iDAAuB;IAClD,gBAAgB,EAAE,+BAAc;IAChC,4BAA4B,EAAE,uDAA0B;IACxD,gCAAgC,EAAE,+DAA8B;IAChE,kCAAkC,EAAE,mEAAgC;IACpE,iCAAiC,EAAE,iEAA+B;IAClE,oBAAoB,EAAE,uCAAkB;IACxC,wBAAwB,EAAE,+CAAsB;IAChD,0BAA0B,EAAE,mDAAwB;IACpD,iBAAiB,EAAE,iCAAe;IAClC,0BAA0B,EAAE,mDAAwB;IACpD,uCAAuC,EAAE,6EAAqC;IAC9E,2CAA2C,EAAE,qFAAyC;IACtF,yBAAyB,EAAE,iDAAuB;IAClD,6BAA6B,EAAE,yDAA2B;IAC1D,+BAA+B,EAAE,6DAA6B;IAC9D,6BAA6B,EAAE,yDAA2B;IAC1D,+BAA+B,EAAE,6DAA6B;IAC9D,oBAAoB,EAAE,uCAAkB;IACxC,2BAA2B,EAAE,qDAAyB;IACtD,+BAA+B,EAAE,6DAA6B;IAC9D,kBAAkB,EAAE,mCAAgB;IACpC,2BAA2B,EAAE,qDAAyB;IACtD,sBAAsB,EAAE,2CAAoB;IAC5C,sBAAsB,EAAE,2CAAoB;IAC5C,wBAAwB,EAAE,+CAAsB;IAChD,gCAAgC,EAAE,+DAA8B;IAChE,mBAAmB,EAAE,qCAAiB;IACtC,4BAA4B,EAAE,uDAA0B;IACxD,uBAAuB,EAAE,6CAAqB;IAC9C,uBAAuB,EAAE,6CAAqB;IAC9C,yBAAyB,EAAE,iDAAuB;IAClD,2BAA2B,EAAE,qDAAyB;IACtD,mBAAmB,EAAE,qCAAiB;IACtC,4BAA4B,EAAE,uDAA0B;IACxD,uBAAuB,EAAE,6CAAqB;IAC9C,uBAAuB,EAAE,6CAAqB;IAC9C,yBAAyB,EAAE,iDAAuB;IAClD,+BAA+B,EAAE,6DAA6B;IAC9D,gCAAgC,EAAE,+DAA8B;IAChE,yCAAyC,EAAE,iFAAuC;IAClF,cAAc,EAAE,2BAAY;IAC5B,kBAAkB,EAAE,mCAAgB;IACpC,oBAAoB,EAAE,uCAAkB;IACxC,oBAAoB,EAAE,uCAAkB;IACxC,6BAA6B,EAAE,yDAA2B;IAC1D,wBAAwB,EAAE,+CAAsB;IAChD,wBAAwB,EAAE,+CAAsB;IAChD,0BAA0B,EAAE,mDAAwB;IACpD,kCAAkC,EAAE,mEAAgC;IACpE,iBAAiB,EAAE,iCAAe;IAClC,qBAAqB,EAAE,yCAAmB;IAC1C,qBAAqB,EAAE,yCAAmB;IAC1C,uBAAuB,EAAE,6CAAqB;IAC9C,yBAAyB,EAAE,iDAAuB;IAClD,oCAAoC,EAAE,uEAAkC;IACxE,6BAA6B,EAAE,yDAA2B;IAC1D,6BAA6B,EAAE,yDAA2B;IAC1D,gCAAgC,EAAE,+DAA8B;IAChE,yCAAyC,EAAE,iFAAuC;IAClF,oCAAoC,EAAE,uEAAkC;IACxE,oCAAoC,EAAE,uEAAkC;IACxE,sCAAsC,EAAE,2EAAoC;IAC5E,mBAAmB,EAAE,qCAAiB;IACtC,qBAAqB,EAAE,yCAAmB;IAC1C,2BAA2B,EAAE,qDAAyB;IACtD,2BAA2B,EAAE,qDAAyB;IACtD,yBAAyB,EAAE,iDAAuB;IAClD,yBAAyB,EAAE,iDAAuB;IAClD,6BAA6B,EAAE,yDAA2B;IAC1D,6BAA6B,EAAE,yDAA2B;IAC1D,oCAAoC,EAAE,uEAAkC;IACxE,6BAA6B,EAAE,yDAA2B;IAC1D,6BAA6B,EAAE,yDAA2B;IAC1D,gCAAgC,EAAE,+DAA8B;IAChE,yCAAyC,EAAE,iFAAuC;IAClF,oCAAoC,EAAE,uEAAkC;IACxE,oCAAoC,EAAE,uEAAkC;IACxE,sCAAsC,EAAE,2EAAoC;IAC5E,yBAAyB,EAAE,iDAAuB;IAClD,mBAAmB,EAAE,qCAAiB;IACtC,qBAAqB,EAAE,yCAAmB;IAC1C,qBAAqB,EAAE,yCAAmB;IAC1C,0BAA0B,EAAE,mDAAwB;IACpD,2BAA2B,EAAE,qDAAyB;IACtD,2BAA2B,EAAE,qDAAyB;IACtD,yBAAyB,EAAE,iDAAuB;IAClD,yBAAyB,EAAE,iDAAuB;IAClD,6BAA6B,EAAE,yDAA2B;IAC1D,6BAA6B,EAAE,yDAA2B;IAC1D,aAAa,EAAE,yBAAW;CAC7B,CAAA;AAED,MAAa,gBAAgB;IAClB,MAAM,CAAC,eAAe,CAAC,IAAS,EAAE,YAAoB;QACzD,IAAI,IAAI,IAAI,SAAS,EAAE;YACnB,OAAO,YAAY,CAAC;SACvB;aAAM,IAAI,UAAU,CAAC,OAAO,CAAC,YAAY,CAAC,WAAW,EAAE,CAAC,KAAK,CAAC,CAAC,EAAE;YAC9D,OAAO,YAAY,CAAC;SACvB;aAAM,IAAI,YAAY,KAAK,MAAM,EAAE;YAChC,OAAO,YAAY,CAAC;SACvB;aAAM;YACH,IAAI,QAAQ,CAAC,YAAY,CAAC,EAAE;gBACxB,OAAO,YAAY,CAAC;aACvB;YAED,IAAI,CAAC,OAAO,CAAC,YAAY,CAAC,EAAE;gBACxB,OAAO,YAAY,CAAC,CAAC,6BAA6B;aACrD;YAED,0BAA0B;YAC1B,IAAI,qBAAqB,GAAG,OAAO,CAAC,YAAY,CAAC,CAAC,aAAa,CAAC;YAChE,IAAI,qBAAqB,IAAI,IAAI,EAAE;gBAC/B,OAAO,YAAY,CAAC,CAAC,kDAAkD;aAC1E;iBAAM;gBACH,IAAI,IAAI,CAAC,qBAAqB,CAAC,EAAE;oBAC7B,IAAI,iBAAiB,GAAG,IAAI,CAAC,qBAAqB,CAAC,CAAC;oBACpD,IAAG,OAAO,CAAC,iBAAiB,CAAC,EAAC;wBAC1B,OAAO,iBAAiB,CAAC,CAAC,0CAA0C;qBACvE;yBAAM;wBACH,OAAO,YAAY,CAAC,CAAC,sCAAsC;qBAC9D;iBACJ;qBAAM;oBACH,OAAO,YAAY,CAAC,CAAC,qDAAqD;iBAC7E;aACJ;SACJ;IACL,CAAC;IAEM,MAAM,CAAC,SAAS,CAAC,IAAS,EAAE,IAAY;QAC3C,IAAI,IAAI,IAAI,SAAS,EAAE;YACnB,OAAO,IAAI,CAAC;SACf;aAAM,IAAI,UAAU,CAAC,OAAO,CAAC,IAAI,CAAC,WAAW,EAAE,CAAC,KAAK,CAAC,CAAC,EAAE;YACtD,OAAO,IAAI,CAAC;SACf;aAAM,IAAI,IAAI,CAAC,WAAW,CAAC,QAAQ,EAAE,CAAC,CAAC,KAAK,CAAC,EAAE,EAAE,4BAA4B;YAC1E,IAAI,OAAO,GAAW,IAAI,CAAC,OAAO,CAAC,QAAQ,EAAE,EAAE,CAAC,CAAC,CAAC,uBAAuB;YACzE,OAAO,GAAG,OAAO,CAAC,SAAS,CAAC,CAAC,EAAE,OAAO,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC,CAAC,gBAAgB;YACpE,IAAI,eAAe,GAAU,EAAE,CAAC;YAChC,KAAK,IAAI,KAAK,IAAI,IAAI,EAAE;gBACpB,IAAI,IAAI,GAAG,IAAI,CAAC,KAAK,CAAC,CAAC;gBACvB,eAAe,CAAC,IAAI,CAAC,gBAAgB,CAAC,SAAS,CAAC,IAAI,EAAE,OAAO,CAAC,CAAC,CAAC;aACnE;YACD,OAAO,eAAe,CAAC;SAC1B;aAAM,IAAI,IAAI,KAAK,MAAM,EAAE;YACxB,OAAO,IAAI,CAAC,WAAW,EAAE,CAAC;SAC7B;aAAM;YACH,IAAI,QAAQ,CAAC,IAAI,CAAC,EAAE;gBAChB,OAAO,IAAI,CAAC;aACf;YACD,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,EAAE,EAAE,gCAAgC;gBAClD,OAAO,IAAI,CAAC;aACf;YAED,qCAAqC;YACrC,IAAI,GAAG,IAAI,CAAC,eAAe,CAAC,IAAI,EAAE,IAAI,CAAC,CAAC;YAExC,oCAAoC;YACpC,IAAI,cAAc,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC,mBAAmB,EAAE,CAAC;YACzD,IAAI,QAAQ,GAA2B,EAAE,CAAC;YAC1C,KAAK,IAAI,KAAK,IAAI,cAAc,EAAE;gBAC9B,IAAI,aAAa,GAAG,cAAc,CAAC,KAAK,CAAC,CAAC;gBAC1C,QAAQ,CAAC,aAAa,CAAC,QAAQ,CAAC,GAAG,gBAAgB,CAAC,SAAS,CAAC,IAAI,CAAC,aAAa,CAAC,IAAI,CAAC,EAAE,aAAa,CAAC,IAAI,CAAC,CAAC;aAC/G;YACD,OAAO,QAAQ,CAAC;SACnB;IACL,CAAC;IAEM,MAAM,CAAC,WAAW,CAAC,IAAS,EAAE,IAAY;QAC7C,2CAA2C;QAC3C,IAAI,GAAG,gBAAgB,CAAC,eAAe,CAAC,IAAI,EAAE,IAAI,CAAC,CAAC;QACpD,IAAI,IAAI,IAAI,SAAS,EAAE;YACnB,OAAO,IAAI,CAAC;SACf;aAAM,IAAI,UAAU,CAAC,OAAO,CAAC,IAAI,CAAC,WAAW,EAAE,CAAC,KAAK,CAAC,CAAC,EAAE;YACtD,OAAO,IAAI,CAAC;SACf;aAAM,IAAI,IAAI,CAAC,WAAW,CAAC,QAAQ,EAAE,CAAC,CAAC,KAAK,CAAC,EAAE,EAAE,4BAA4B;YAC1E,IAAI,OAAO,GAAW,IAAI,CAAC,OAAO,CAAC,QAAQ,EAAE,EAAE,CAAC,CAAC,CAAC,uBAAuB;YACzE,OAAO,GAAG,OAAO,CAAC,SAAS,CAAC,CAAC,EAAE,OAAO,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC,CAAC,gBAAgB;YACpE,IAAI,eAAe,GAAU,EAAE,CAAC;YAChC,KAAK,IAAI,KAAK,IAAI,IAAI,EAAE;gBACpB,IAAI,IAAI,GAAG,IAAI,CAAC,KAAK,CAAC,CAAC;gBACvB,eAAe,CAAC,IAAI,CAAC,gBAAgB,CAAC,WAAW,CAAC,IAAI,EAAE,OAAO,CAAC,CAAC,CAAC;aACrE;YACD,OAAO,eAAe,CAAC;SAC1B;aAAM,IAAI,IAAI,KAAK,MAAM,EAAE;YACxB,OAAO,IAAI,IAAI,CAAC,IAAI,CAAC,CAAC;SACzB;aAAM;YACH,IAAI,QAAQ,CAAC,IAAI,CAAC,EAAE,EAAC,UAAU;gBAC3B,OAAO,IAAI,CAAC;aACf;YAED,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,EAAE,EAAE,qBAAqB;gBACvC,OAAO,IAAI,CAAC;aACf;YACD,IAAI,QAAQ,GAAG,IAAI,OAAO,CAAC,IAAI,CAAC,EAAE,CAAC;YACnC,IAAI,cAAc,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC,mBAAmB,EAAE,CAAC;YACzD,KAAK,IAAI,KAAK,IAAI,cAAc,EAAE;gBAC9B,IAAI,aAAa,GAAG,cAAc,CAAC,KAAK,CAAC,CAAC;gBAC1C,QAAQ,CAAC,aAAa,CAAC,IAAI,CAAC,GAAG,gBAAgB,CAAC,WAAW,CAAC,IAAI,CAAC,aAAa,CAAC,QAAQ,CAAC,EAAE,aAAa,CAAC,IAAI,CAAC,CAAC;aACjH;YACD,OAAO,QAAQ,CAAC;SACnB;IACL,CAAC;CACJ;AA7GD,4CA6GC;AASD,MAAa,aAAa;IAA1B;QACW,aAAQ,GAAW,EAAE,CAAC;QACtB,aAAQ,GAAW,EAAE,CAAC;IAOjC,CAAC;IALG,cAAc,CAAC,cAAuC;QAClD,cAAc,CAAC,IAAI,GAAG;YAClB,QAAQ,EAAE,IAAI,CAAC,QAAQ,EAAE,QAAQ,EAAE,IAAI,CAAC,QAAQ;SACnD,CAAA;IACL,CAAC;CACJ;AATD,sCASC;AAED,MAAa,UAAU;IAGnB,YAAoB,QAAgB,EAAU,SAAiB;QAA3C,aAAQ,GAAR,QAAQ,CAAQ;QAAU,cAAS,GAAT,SAAS,CAAQ;QAFxD,WAAM,GAAW,EAAE,CAAC;IAG3B,CAAC;IAED,cAAc,CAAC,cAAuC;QAClD,IAAI,IAAI,CAAC,QAAQ,IAAI,OAAO,EAAE;YACpB,cAAc,CAAC,EAAG,CAAC,IAAI,CAAC,SAAS,CAAC,GAAG,IAAI,CAAC,MAAM,CAAC;SAC1D;aAAM,IAAI,IAAI,CAAC,QAAQ,IAAI,QAAQ,IAAI,cAAc,IAAI,cAAc,CAAC,OAAO,EAAE;YAC9E,cAAc,CAAC,OAAO,CAAC,IAAI,CAAC,SAAS,CAAC,GAAG,IAAI,CAAC,MAAM,CAAC;SACxD;IACL,CAAC;CACJ;AAbD,gCAaC;AAED,MAAa,KAAK;IAAlB;QACW,gBAAW,GAAW,EAAE,CAAC;IAOpC,CAAC;IALG,cAAc,CAAC,cAAuC;QAClD,IAAI,cAAc,IAAI,cAAc,CAAC,OAAO,EAAE;YAC1C,cAAc,CAAC,OAAO,CAAC,eAAe,CAAC,GAAG,SAAS,GAAG,IAAI,CAAC,WAAW,CAAC;SAC1E;IACL,CAAC;CACJ;AARD,sBAQC;AAED,MAAa,QAAQ;IAArB;QACW,aAAQ,GAAW,EAAE,CAAC;QACtB,aAAQ,GAAW,EAAE,CAAC;IAKjC,CAAC;IAHG,cAAc,CAAC,CAA0B;QACrC,aAAa;IACjB,CAAC;CACJ;AAPD,4BAOC"}
\ No newline at end of file
diff --git a/dist/gen/model/networkingV1beta1HTTPIngressPath.d.ts b/dist/gen/model/networkingV1beta1HTTPIngressPath.d.ts
new file mode 100644
index 0000000000..75dc86555b
--- /dev/null
+++ b/dist/gen/model/networkingV1beta1HTTPIngressPath.d.ts
@@ -0,0 +1,33 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+import { NetworkingV1beta1IngressBackend } from './networkingV1beta1IngressBackend';
+/**
+* HTTPIngressPath associates a path regex with a backend. Incoming urls matching the path are forwarded to the backend.
+*/
+export declare class NetworkingV1beta1HTTPIngressPath {
+ 'backend': NetworkingV1beta1IngressBackend;
+ /**
+ * Path is an extended POSIX regex as defined by IEEE Std 1003.1, (i.e this follows the egrep/unix syntax, not the perl syntax) matched against the path of an incoming request. Currently it can contain characters disallowed from the conventional \"path\" part of a URL as defined by RFC 3986. Paths must begin with a \'/\'. If unspecified, the path defaults to a catch all sending traffic to the backend.
+ */
+ 'path'?: string;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/networkingV1beta1HTTPIngressPath.js b/dist/gen/model/networkingV1beta1HTTPIngressPath.js
new file mode 100644
index 0000000000..e4fb948049
--- /dev/null
+++ b/dist/gen/model/networkingV1beta1HTTPIngressPath.js
@@ -0,0 +1,36 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* HTTPIngressPath associates a path regex with a backend. Incoming urls matching the path are forwarded to the backend.
+*/
+class NetworkingV1beta1HTTPIngressPath {
+ static getAttributeTypeMap() {
+ return NetworkingV1beta1HTTPIngressPath.attributeTypeMap;
+ }
+}
+NetworkingV1beta1HTTPIngressPath.discriminator = undefined;
+NetworkingV1beta1HTTPIngressPath.attributeTypeMap = [
+ {
+ "name": "backend",
+ "baseName": "backend",
+ "type": "NetworkingV1beta1IngressBackend"
+ },
+ {
+ "name": "path",
+ "baseName": "path",
+ "type": "string"
+ }
+];
+exports.NetworkingV1beta1HTTPIngressPath = NetworkingV1beta1HTTPIngressPath;
+//# sourceMappingURL=networkingV1beta1HTTPIngressPath.js.map
\ No newline at end of file
diff --git a/dist/gen/model/networkingV1beta1HTTPIngressPath.js.map b/dist/gen/model/networkingV1beta1HTTPIngressPath.js.map
new file mode 100644
index 0000000000..342d78d756
--- /dev/null
+++ b/dist/gen/model/networkingV1beta1HTTPIngressPath.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"networkingV1beta1HTTPIngressPath.js","sourceRoot":"","sources":["../../../src/gen/model/networkingV1beta1HTTPIngressPath.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAIH;;EAEE;AACF,MAAa,gCAAgC;IAqBzC,MAAM,CAAC,mBAAmB;QACtB,OAAO,gCAAgC,CAAC,gBAAgB,CAAC;IAC7D,CAAC;;AAhBM,8CAAa,GAAuB,SAAS,CAAC;AAE9C,iDAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,SAAS;QACjB,UAAU,EAAE,SAAS;QACrB,MAAM,EAAE,iCAAiC;KAC5C;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,QAAQ;KACnB;CAAK,CAAC;AAnBf,4EAwBC"}
\ No newline at end of file
diff --git a/dist/gen/model/networkingV1beta1HTTPIngressRuleValue.d.ts b/dist/gen/model/networkingV1beta1HTTPIngressRuleValue.d.ts
new file mode 100644
index 0000000000..3075834f7a
--- /dev/null
+++ b/dist/gen/model/networkingV1beta1HTTPIngressRuleValue.d.ts
@@ -0,0 +1,32 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+import { NetworkingV1beta1HTTPIngressPath } from './networkingV1beta1HTTPIngressPath';
+/**
+* HTTPIngressRuleValue is a list of http selectors pointing to backends. In the example: http:///? -> backend where where parts of the url correspond to RFC 3986, this resource will be used to match against everything after the last \'/\' and before the first \'?\' or \'#\'.
+*/
+export declare class NetworkingV1beta1HTTPIngressRuleValue {
+ /**
+ * A collection of paths that map requests to backends.
+ */
+ 'paths': Array;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/networkingV1beta1HTTPIngressRuleValue.js b/dist/gen/model/networkingV1beta1HTTPIngressRuleValue.js
new file mode 100644
index 0000000000..3d10db0c18
--- /dev/null
+++ b/dist/gen/model/networkingV1beta1HTTPIngressRuleValue.js
@@ -0,0 +1,31 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* HTTPIngressRuleValue is a list of http selectors pointing to backends. In the example: http:///? -> backend where where parts of the url correspond to RFC 3986, this resource will be used to match against everything after the last \'/\' and before the first \'?\' or \'#\'.
+*/
+class NetworkingV1beta1HTTPIngressRuleValue {
+ static getAttributeTypeMap() {
+ return NetworkingV1beta1HTTPIngressRuleValue.attributeTypeMap;
+ }
+}
+NetworkingV1beta1HTTPIngressRuleValue.discriminator = undefined;
+NetworkingV1beta1HTTPIngressRuleValue.attributeTypeMap = [
+ {
+ "name": "paths",
+ "baseName": "paths",
+ "type": "Array"
+ }
+];
+exports.NetworkingV1beta1HTTPIngressRuleValue = NetworkingV1beta1HTTPIngressRuleValue;
+//# sourceMappingURL=networkingV1beta1HTTPIngressRuleValue.js.map
\ No newline at end of file
diff --git a/dist/gen/model/networkingV1beta1HTTPIngressRuleValue.js.map b/dist/gen/model/networkingV1beta1HTTPIngressRuleValue.js.map
new file mode 100644
index 0000000000..62ac71aefd
--- /dev/null
+++ b/dist/gen/model/networkingV1beta1HTTPIngressRuleValue.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"networkingV1beta1HTTPIngressRuleValue.js","sourceRoot":"","sources":["../../../src/gen/model/networkingV1beta1HTTPIngressRuleValue.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAIH;;EAEE;AACF,MAAa,qCAAqC;IAe9C,MAAM,CAAC,mBAAmB;QACtB,OAAO,qCAAqC,CAAC,gBAAgB,CAAC;IAClE,CAAC;;AAXM,mDAAa,GAAuB,SAAS,CAAC;AAE9C,sDAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,OAAO;QACf,UAAU,EAAE,OAAO;QACnB,MAAM,EAAE,yCAAyC;KACpD;CAAK,CAAC;AAbf,sFAkBC"}
\ No newline at end of file
diff --git a/dist/gen/model/networkingV1beta1Ingress.d.ts b/dist/gen/model/networkingV1beta1Ingress.d.ts
new file mode 100644
index 0000000000..d6ef2a5f4e
--- /dev/null
+++ b/dist/gen/model/networkingV1beta1Ingress.d.ts
@@ -0,0 +1,41 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+import { NetworkingV1beta1IngressSpec } from './networkingV1beta1IngressSpec';
+import { NetworkingV1beta1IngressStatus } from './networkingV1beta1IngressStatus';
+import { V1ObjectMeta } from './v1ObjectMeta';
+/**
+* Ingress is a collection of rules that allow inbound connections to reach the endpoints defined by a backend. An Ingress can be configured to give services externally-reachable urls, load balance traffic, terminate SSL, offer name based virtual hosting etc.
+*/
+export declare class NetworkingV1beta1Ingress {
+ /**
+ * APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources
+ */
+ 'apiVersion'?: string;
+ /**
+ * Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
+ */
+ 'kind'?: string;
+ 'metadata'?: V1ObjectMeta;
+ 'spec'?: NetworkingV1beta1IngressSpec;
+ 'status'?: NetworkingV1beta1IngressStatus;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/networkingV1beta1Ingress.js b/dist/gen/model/networkingV1beta1Ingress.js
new file mode 100644
index 0000000000..67a6f9279c
--- /dev/null
+++ b/dist/gen/model/networkingV1beta1Ingress.js
@@ -0,0 +1,51 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* Ingress is a collection of rules that allow inbound connections to reach the endpoints defined by a backend. An Ingress can be configured to give services externally-reachable urls, load balance traffic, terminate SSL, offer name based virtual hosting etc.
+*/
+class NetworkingV1beta1Ingress {
+ static getAttributeTypeMap() {
+ return NetworkingV1beta1Ingress.attributeTypeMap;
+ }
+}
+NetworkingV1beta1Ingress.discriminator = undefined;
+NetworkingV1beta1Ingress.attributeTypeMap = [
+ {
+ "name": "apiVersion",
+ "baseName": "apiVersion",
+ "type": "string"
+ },
+ {
+ "name": "kind",
+ "baseName": "kind",
+ "type": "string"
+ },
+ {
+ "name": "metadata",
+ "baseName": "metadata",
+ "type": "V1ObjectMeta"
+ },
+ {
+ "name": "spec",
+ "baseName": "spec",
+ "type": "NetworkingV1beta1IngressSpec"
+ },
+ {
+ "name": "status",
+ "baseName": "status",
+ "type": "NetworkingV1beta1IngressStatus"
+ }
+];
+exports.NetworkingV1beta1Ingress = NetworkingV1beta1Ingress;
+//# sourceMappingURL=networkingV1beta1Ingress.js.map
\ No newline at end of file
diff --git a/dist/gen/model/networkingV1beta1Ingress.js.map b/dist/gen/model/networkingV1beta1Ingress.js.map
new file mode 100644
index 0000000000..dea75bd743
--- /dev/null
+++ b/dist/gen/model/networkingV1beta1Ingress.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"networkingV1beta1Ingress.js","sourceRoot":"","sources":["../../../src/gen/model/networkingV1beta1Ingress.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAMH;;EAEE;AACF,MAAa,wBAAwB;IA0CjC,MAAM,CAAC,mBAAmB;QACtB,OAAO,wBAAwB,CAAC,gBAAgB,CAAC;IACrD,CAAC;;AA/BM,sCAAa,GAAuB,SAAS,CAAC;AAE9C,yCAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,YAAY;QACpB,UAAU,EAAE,YAAY;QACxB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,UAAU;QAClB,UAAU,EAAE,UAAU;QACtB,MAAM,EAAE,cAAc;KACzB;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,8BAA8B;KACzC;IACD;QACI,MAAM,EAAE,QAAQ;QAChB,UAAU,EAAE,QAAQ;QACpB,MAAM,EAAE,gCAAgC;KAC3C;CAAK,CAAC;AAxCf,4DA6CC"}
\ No newline at end of file
diff --git a/dist/gen/model/networkingV1beta1IngressBackend.d.ts b/dist/gen/model/networkingV1beta1IngressBackend.d.ts
new file mode 100644
index 0000000000..c1cfa1571d
--- /dev/null
+++ b/dist/gen/model/networkingV1beta1IngressBackend.d.ts
@@ -0,0 +1,35 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+/**
+* IngressBackend describes all endpoints for a given service and port.
+*/
+export declare class NetworkingV1beta1IngressBackend {
+ /**
+ * Specifies the name of the referenced service.
+ */
+ 'serviceName': string;
+ /**
+ * Specifies the port of the referenced service.
+ */
+ 'servicePort': object;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/networkingV1beta1IngressBackend.js b/dist/gen/model/networkingV1beta1IngressBackend.js
new file mode 100644
index 0000000000..469b6e0a60
--- /dev/null
+++ b/dist/gen/model/networkingV1beta1IngressBackend.js
@@ -0,0 +1,36 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* IngressBackend describes all endpoints for a given service and port.
+*/
+class NetworkingV1beta1IngressBackend {
+ static getAttributeTypeMap() {
+ return NetworkingV1beta1IngressBackend.attributeTypeMap;
+ }
+}
+NetworkingV1beta1IngressBackend.discriminator = undefined;
+NetworkingV1beta1IngressBackend.attributeTypeMap = [
+ {
+ "name": "serviceName",
+ "baseName": "serviceName",
+ "type": "string"
+ },
+ {
+ "name": "servicePort",
+ "baseName": "servicePort",
+ "type": "object"
+ }
+];
+exports.NetworkingV1beta1IngressBackend = NetworkingV1beta1IngressBackend;
+//# sourceMappingURL=networkingV1beta1IngressBackend.js.map
\ No newline at end of file
diff --git a/dist/gen/model/networkingV1beta1IngressBackend.js.map b/dist/gen/model/networkingV1beta1IngressBackend.js.map
new file mode 100644
index 0000000000..7481edb692
--- /dev/null
+++ b/dist/gen/model/networkingV1beta1IngressBackend.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"networkingV1beta1IngressBackend.js","sourceRoot":"","sources":["../../../src/gen/model/networkingV1beta1IngressBackend.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAGH;;EAEE;AACF,MAAa,+BAA+B;IAwBxC,MAAM,CAAC,mBAAmB;QACtB,OAAO,+BAA+B,CAAC,gBAAgB,CAAC;IAC5D,CAAC;;AAhBM,6CAAa,GAAuB,SAAS,CAAC;AAE9C,gDAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,aAAa;QACrB,UAAU,EAAE,aAAa;QACzB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,aAAa;QACrB,UAAU,EAAE,aAAa;QACzB,MAAM,EAAE,QAAQ;KACnB;CAAK,CAAC;AAtBf,0EA2BC"}
\ No newline at end of file
diff --git a/dist/gen/model/networkingV1beta1IngressList.d.ts b/dist/gen/model/networkingV1beta1IngressList.d.ts
new file mode 100644
index 0000000000..d23f45cd6f
--- /dev/null
+++ b/dist/gen/model/networkingV1beta1IngressList.d.ts
@@ -0,0 +1,42 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+import { NetworkingV1beta1Ingress } from './networkingV1beta1Ingress';
+import { V1ListMeta } from './v1ListMeta';
+/**
+* IngressList is a collection of Ingress.
+*/
+export declare class NetworkingV1beta1IngressList {
+ /**
+ * APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources
+ */
+ 'apiVersion'?: string;
+ /**
+ * Items is the list of Ingress.
+ */
+ 'items': Array;
+ /**
+ * Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
+ */
+ 'kind'?: string;
+ 'metadata'?: V1ListMeta;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/networkingV1beta1IngressList.js b/dist/gen/model/networkingV1beta1IngressList.js
new file mode 100644
index 0000000000..8250893c62
--- /dev/null
+++ b/dist/gen/model/networkingV1beta1IngressList.js
@@ -0,0 +1,46 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* IngressList is a collection of Ingress.
+*/
+class NetworkingV1beta1IngressList {
+ static getAttributeTypeMap() {
+ return NetworkingV1beta1IngressList.attributeTypeMap;
+ }
+}
+NetworkingV1beta1IngressList.discriminator = undefined;
+NetworkingV1beta1IngressList.attributeTypeMap = [
+ {
+ "name": "apiVersion",
+ "baseName": "apiVersion",
+ "type": "string"
+ },
+ {
+ "name": "items",
+ "baseName": "items",
+ "type": "Array"
+ },
+ {
+ "name": "kind",
+ "baseName": "kind",
+ "type": "string"
+ },
+ {
+ "name": "metadata",
+ "baseName": "metadata",
+ "type": "V1ListMeta"
+ }
+];
+exports.NetworkingV1beta1IngressList = NetworkingV1beta1IngressList;
+//# sourceMappingURL=networkingV1beta1IngressList.js.map
\ No newline at end of file
diff --git a/dist/gen/model/networkingV1beta1IngressList.js.map b/dist/gen/model/networkingV1beta1IngressList.js.map
new file mode 100644
index 0000000000..ce585ba238
--- /dev/null
+++ b/dist/gen/model/networkingV1beta1IngressList.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"networkingV1beta1IngressList.js","sourceRoot":"","sources":["../../../src/gen/model/networkingV1beta1IngressList.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAKH;;EAEE;AACF,MAAa,4BAA4B;IAuCrC,MAAM,CAAC,mBAAmB;QACtB,OAAO,4BAA4B,CAAC,gBAAgB,CAAC;IACzD,CAAC;;AA1BM,0CAAa,GAAuB,SAAS,CAAC;AAE9C,6CAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,YAAY;QACpB,UAAU,EAAE,YAAY;QACxB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,OAAO;QACf,UAAU,EAAE,OAAO;QACnB,MAAM,EAAE,iCAAiC;KAC5C;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,UAAU;QAClB,UAAU,EAAE,UAAU;QACtB,MAAM,EAAE,YAAY;KACvB;CAAK,CAAC;AArCf,oEA0CC"}
\ No newline at end of file
diff --git a/dist/gen/model/networkingV1beta1IngressRule.d.ts b/dist/gen/model/networkingV1beta1IngressRule.d.ts
new file mode 100644
index 0000000000..3a0a41f341
--- /dev/null
+++ b/dist/gen/model/networkingV1beta1IngressRule.d.ts
@@ -0,0 +1,33 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+import { NetworkingV1beta1HTTPIngressRuleValue } from './networkingV1beta1HTTPIngressRuleValue';
+/**
+* IngressRule represents the rules mapping the paths under a specified host to the related backend services. Incoming requests are first evaluated for a host match, then routed to the backend associated with the matching IngressRuleValue.
+*/
+export declare class NetworkingV1beta1IngressRule {
+ /**
+ * Host is the fully qualified domain name of a network host, as defined by RFC 3986. Note the following deviations from the \"host\" part of the URI as defined in the RFC: 1. IPs are not allowed. Currently an IngressRuleValue can only apply to the IP in the Spec of the parent Ingress. 2. The `:` delimiter is not respected because ports are not allowed. Currently the port of an Ingress is implicitly :80 for http and :443 for https. Both these may change in the future. Incoming requests are matched against the host before the IngressRuleValue. If the host is unspecified, the Ingress routes all traffic based on the specified IngressRuleValue.
+ */
+ 'host'?: string;
+ 'http'?: NetworkingV1beta1HTTPIngressRuleValue;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/networkingV1beta1IngressRule.js b/dist/gen/model/networkingV1beta1IngressRule.js
new file mode 100644
index 0000000000..5633395dcd
--- /dev/null
+++ b/dist/gen/model/networkingV1beta1IngressRule.js
@@ -0,0 +1,36 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* IngressRule represents the rules mapping the paths under a specified host to the related backend services. Incoming requests are first evaluated for a host match, then routed to the backend associated with the matching IngressRuleValue.
+*/
+class NetworkingV1beta1IngressRule {
+ static getAttributeTypeMap() {
+ return NetworkingV1beta1IngressRule.attributeTypeMap;
+ }
+}
+NetworkingV1beta1IngressRule.discriminator = undefined;
+NetworkingV1beta1IngressRule.attributeTypeMap = [
+ {
+ "name": "host",
+ "baseName": "host",
+ "type": "string"
+ },
+ {
+ "name": "http",
+ "baseName": "http",
+ "type": "NetworkingV1beta1HTTPIngressRuleValue"
+ }
+];
+exports.NetworkingV1beta1IngressRule = NetworkingV1beta1IngressRule;
+//# sourceMappingURL=networkingV1beta1IngressRule.js.map
\ No newline at end of file
diff --git a/dist/gen/model/networkingV1beta1IngressRule.js.map b/dist/gen/model/networkingV1beta1IngressRule.js.map
new file mode 100644
index 0000000000..a0f8cd7c89
--- /dev/null
+++ b/dist/gen/model/networkingV1beta1IngressRule.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"networkingV1beta1IngressRule.js","sourceRoot":"","sources":["../../../src/gen/model/networkingV1beta1IngressRule.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAIH;;EAEE;AACF,MAAa,4BAA4B;IAqBrC,MAAM,CAAC,mBAAmB;QACtB,OAAO,4BAA4B,CAAC,gBAAgB,CAAC;IACzD,CAAC;;AAhBM,0CAAa,GAAuB,SAAS,CAAC;AAE9C,6CAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,uCAAuC;KAClD;CAAK,CAAC;AAnBf,oEAwBC"}
\ No newline at end of file
diff --git a/dist/gen/model/networkingV1beta1IngressSpec.d.ts b/dist/gen/model/networkingV1beta1IngressSpec.d.ts
new file mode 100644
index 0000000000..3ec60a079b
--- /dev/null
+++ b/dist/gen/model/networkingV1beta1IngressSpec.d.ts
@@ -0,0 +1,39 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+import { NetworkingV1beta1IngressBackend } from './networkingV1beta1IngressBackend';
+import { NetworkingV1beta1IngressRule } from './networkingV1beta1IngressRule';
+import { NetworkingV1beta1IngressTLS } from './networkingV1beta1IngressTLS';
+/**
+* IngressSpec describes the Ingress the user wishes to exist.
+*/
+export declare class NetworkingV1beta1IngressSpec {
+ 'backend'?: NetworkingV1beta1IngressBackend;
+ /**
+ * A list of host rules used to configure the Ingress. If unspecified, or no rule matches, all traffic is sent to the default backend.
+ */
+ 'rules'?: Array;
+ /**
+ * TLS configuration. Currently the Ingress only supports a single TLS port, 443. If multiple members of this list specify different hosts, they will be multiplexed on the same port according to the hostname specified through the SNI TLS extension, if the ingress controller fulfilling the ingress supports SNI.
+ */
+ 'tls'?: Array;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/networkingV1beta1IngressSpec.js b/dist/gen/model/networkingV1beta1IngressSpec.js
new file mode 100644
index 0000000000..70f9d46fd1
--- /dev/null
+++ b/dist/gen/model/networkingV1beta1IngressSpec.js
@@ -0,0 +1,41 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* IngressSpec describes the Ingress the user wishes to exist.
+*/
+class NetworkingV1beta1IngressSpec {
+ static getAttributeTypeMap() {
+ return NetworkingV1beta1IngressSpec.attributeTypeMap;
+ }
+}
+NetworkingV1beta1IngressSpec.discriminator = undefined;
+NetworkingV1beta1IngressSpec.attributeTypeMap = [
+ {
+ "name": "backend",
+ "baseName": "backend",
+ "type": "NetworkingV1beta1IngressBackend"
+ },
+ {
+ "name": "rules",
+ "baseName": "rules",
+ "type": "Array"
+ },
+ {
+ "name": "tls",
+ "baseName": "tls",
+ "type": "Array"
+ }
+];
+exports.NetworkingV1beta1IngressSpec = NetworkingV1beta1IngressSpec;
+//# sourceMappingURL=networkingV1beta1IngressSpec.js.map
\ No newline at end of file
diff --git a/dist/gen/model/networkingV1beta1IngressSpec.js.map b/dist/gen/model/networkingV1beta1IngressSpec.js.map
new file mode 100644
index 0000000000..0b41190c48
--- /dev/null
+++ b/dist/gen/model/networkingV1beta1IngressSpec.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"networkingV1beta1IngressSpec.js","sourceRoot":"","sources":["../../../src/gen/model/networkingV1beta1IngressSpec.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAMH;;EAEE;AACF,MAAa,4BAA4B;IA8BrC,MAAM,CAAC,mBAAmB;QACtB,OAAO,4BAA4B,CAAC,gBAAgB,CAAC;IACzD,CAAC;;AArBM,0CAAa,GAAuB,SAAS,CAAC;AAE9C,6CAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,SAAS;QACjB,UAAU,EAAE,SAAS;QACrB,MAAM,EAAE,iCAAiC;KAC5C;IACD;QACI,MAAM,EAAE,OAAO;QACf,UAAU,EAAE,OAAO;QACnB,MAAM,EAAE,qCAAqC;KAChD;IACD;QACI,MAAM,EAAE,KAAK;QACb,UAAU,EAAE,KAAK;QACjB,MAAM,EAAE,oCAAoC;KAC/C;CAAK,CAAC;AA5Bf,oEAiCC"}
\ No newline at end of file
diff --git a/dist/gen/model/networkingV1beta1IngressStatus.d.ts b/dist/gen/model/networkingV1beta1IngressStatus.d.ts
new file mode 100644
index 0000000000..2bd9836392
--- /dev/null
+++ b/dist/gen/model/networkingV1beta1IngressStatus.d.ts
@@ -0,0 +1,29 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+import { V1LoadBalancerStatus } from './v1LoadBalancerStatus';
+/**
+* IngressStatus describe the current state of the Ingress.
+*/
+export declare class NetworkingV1beta1IngressStatus {
+ 'loadBalancer'?: V1LoadBalancerStatus;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/networkingV1beta1IngressStatus.js b/dist/gen/model/networkingV1beta1IngressStatus.js
new file mode 100644
index 0000000000..8a7460516f
--- /dev/null
+++ b/dist/gen/model/networkingV1beta1IngressStatus.js
@@ -0,0 +1,31 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* IngressStatus describe the current state of the Ingress.
+*/
+class NetworkingV1beta1IngressStatus {
+ static getAttributeTypeMap() {
+ return NetworkingV1beta1IngressStatus.attributeTypeMap;
+ }
+}
+NetworkingV1beta1IngressStatus.discriminator = undefined;
+NetworkingV1beta1IngressStatus.attributeTypeMap = [
+ {
+ "name": "loadBalancer",
+ "baseName": "loadBalancer",
+ "type": "V1LoadBalancerStatus"
+ }
+];
+exports.NetworkingV1beta1IngressStatus = NetworkingV1beta1IngressStatus;
+//# sourceMappingURL=networkingV1beta1IngressStatus.js.map
\ No newline at end of file
diff --git a/dist/gen/model/networkingV1beta1IngressStatus.js.map b/dist/gen/model/networkingV1beta1IngressStatus.js.map
new file mode 100644
index 0000000000..fce7187eb5
--- /dev/null
+++ b/dist/gen/model/networkingV1beta1IngressStatus.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"networkingV1beta1IngressStatus.js","sourceRoot":"","sources":["../../../src/gen/model/networkingV1beta1IngressStatus.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAIH;;EAEE;AACF,MAAa,8BAA8B;IAYvC,MAAM,CAAC,mBAAmB;QACtB,OAAO,8BAA8B,CAAC,gBAAgB,CAAC;IAC3D,CAAC;;AAXM,4CAAa,GAAuB,SAAS,CAAC;AAE9C,+CAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,cAAc;QACtB,UAAU,EAAE,cAAc;QAC1B,MAAM,EAAE,sBAAsB;KACjC;CAAK,CAAC;AAVf,wEAeC"}
\ No newline at end of file
diff --git a/dist/gen/model/networkingV1beta1IngressTLS.d.ts b/dist/gen/model/networkingV1beta1IngressTLS.d.ts
new file mode 100644
index 0000000000..e8ade22c10
--- /dev/null
+++ b/dist/gen/model/networkingV1beta1IngressTLS.d.ts
@@ -0,0 +1,35 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+/**
+* IngressTLS describes the transport layer security associated with an Ingress.
+*/
+export declare class NetworkingV1beta1IngressTLS {
+ /**
+ * Hosts are a list of hosts included in the TLS certificate. The values in this list must match the name/s used in the tlsSecret. Defaults to the wildcard host setting for the loadbalancer controller fulfilling this Ingress, if left unspecified.
+ */
+ 'hosts'?: Array;
+ /**
+ * SecretName is the name of the secret used to terminate SSL traffic on 443. Field is left optional to allow SSL routing based on SNI hostname alone. If the SNI host in a listener conflicts with the \"Host\" header field used by an IngressRule, the SNI host is used for termination and value of the Host header is used for routing.
+ */
+ 'secretName'?: string;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/networkingV1beta1IngressTLS.js b/dist/gen/model/networkingV1beta1IngressTLS.js
new file mode 100644
index 0000000000..5a19dc568b
--- /dev/null
+++ b/dist/gen/model/networkingV1beta1IngressTLS.js
@@ -0,0 +1,36 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* IngressTLS describes the transport layer security associated with an Ingress.
+*/
+class NetworkingV1beta1IngressTLS {
+ static getAttributeTypeMap() {
+ return NetworkingV1beta1IngressTLS.attributeTypeMap;
+ }
+}
+NetworkingV1beta1IngressTLS.discriminator = undefined;
+NetworkingV1beta1IngressTLS.attributeTypeMap = [
+ {
+ "name": "hosts",
+ "baseName": "hosts",
+ "type": "Array"
+ },
+ {
+ "name": "secretName",
+ "baseName": "secretName",
+ "type": "string"
+ }
+];
+exports.NetworkingV1beta1IngressTLS = NetworkingV1beta1IngressTLS;
+//# sourceMappingURL=networkingV1beta1IngressTLS.js.map
\ No newline at end of file
diff --git a/dist/gen/model/networkingV1beta1IngressTLS.js.map b/dist/gen/model/networkingV1beta1IngressTLS.js.map
new file mode 100644
index 0000000000..eca509dff8
--- /dev/null
+++ b/dist/gen/model/networkingV1beta1IngressTLS.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"networkingV1beta1IngressTLS.js","sourceRoot":"","sources":["../../../src/gen/model/networkingV1beta1IngressTLS.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAGH;;EAEE;AACF,MAAa,2BAA2B;IAwBpC,MAAM,CAAC,mBAAmB;QACtB,OAAO,2BAA2B,CAAC,gBAAgB,CAAC;IACxD,CAAC;;AAhBM,yCAAa,GAAuB,SAAS,CAAC;AAE9C,4CAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,OAAO;QACf,UAAU,EAAE,OAAO;QACnB,MAAM,EAAE,eAAe;KAC1B;IACD;QACI,MAAM,EAAE,YAAY;QACpB,UAAU,EAAE,YAAY;QACxB,MAAM,EAAE,QAAQ;KACnB;CAAK,CAAC;AAtBf,kEA2BC"}
\ No newline at end of file
diff --git a/dist/gen/model/policyV1beta1AllowedCSIDriver.d.ts b/dist/gen/model/policyV1beta1AllowedCSIDriver.d.ts
new file mode 100644
index 0000000000..2bda53ae0f
--- /dev/null
+++ b/dist/gen/model/policyV1beta1AllowedCSIDriver.d.ts
@@ -0,0 +1,31 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+/**
+* AllowedCSIDriver represents a single inline CSI Driver that is allowed to be used.
+*/
+export declare class PolicyV1beta1AllowedCSIDriver {
+ /**
+ * Name is the registered name of the CSI driver
+ */
+ 'name': string;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/policyV1beta1AllowedCSIDriver.js b/dist/gen/model/policyV1beta1AllowedCSIDriver.js
new file mode 100644
index 0000000000..77b93a5098
--- /dev/null
+++ b/dist/gen/model/policyV1beta1AllowedCSIDriver.js
@@ -0,0 +1,31 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* AllowedCSIDriver represents a single inline CSI Driver that is allowed to be used.
+*/
+class PolicyV1beta1AllowedCSIDriver {
+ static getAttributeTypeMap() {
+ return PolicyV1beta1AllowedCSIDriver.attributeTypeMap;
+ }
+}
+PolicyV1beta1AllowedCSIDriver.discriminator = undefined;
+PolicyV1beta1AllowedCSIDriver.attributeTypeMap = [
+ {
+ "name": "name",
+ "baseName": "name",
+ "type": "string"
+ }
+];
+exports.PolicyV1beta1AllowedCSIDriver = PolicyV1beta1AllowedCSIDriver;
+//# sourceMappingURL=policyV1beta1AllowedCSIDriver.js.map
\ No newline at end of file
diff --git a/dist/gen/model/policyV1beta1AllowedCSIDriver.js.map b/dist/gen/model/policyV1beta1AllowedCSIDriver.js.map
new file mode 100644
index 0000000000..c1b6505a93
--- /dev/null
+++ b/dist/gen/model/policyV1beta1AllowedCSIDriver.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"policyV1beta1AllowedCSIDriver.js","sourceRoot":"","sources":["../../../src/gen/model/policyV1beta1AllowedCSIDriver.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAGH;;EAEE;AACF,MAAa,6BAA6B;IAetC,MAAM,CAAC,mBAAmB;QACtB,OAAO,6BAA6B,CAAC,gBAAgB,CAAC;IAC1D,CAAC;;AAXM,2CAAa,GAAuB,SAAS,CAAC;AAE9C,8CAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,QAAQ;KACnB;CAAK,CAAC;AAbf,sEAkBC"}
\ No newline at end of file
diff --git a/dist/gen/model/policyV1beta1AllowedFlexVolume.d.ts b/dist/gen/model/policyV1beta1AllowedFlexVolume.d.ts
new file mode 100644
index 0000000000..a69f6ac83f
--- /dev/null
+++ b/dist/gen/model/policyV1beta1AllowedFlexVolume.d.ts
@@ -0,0 +1,31 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+/**
+* AllowedFlexVolume represents a single Flexvolume that is allowed to be used.
+*/
+export declare class PolicyV1beta1AllowedFlexVolume {
+ /**
+ * driver is the name of the Flexvolume driver.
+ */
+ 'driver': string;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/policyV1beta1AllowedFlexVolume.js b/dist/gen/model/policyV1beta1AllowedFlexVolume.js
new file mode 100644
index 0000000000..ffc4a3c429
--- /dev/null
+++ b/dist/gen/model/policyV1beta1AllowedFlexVolume.js
@@ -0,0 +1,31 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* AllowedFlexVolume represents a single Flexvolume that is allowed to be used.
+*/
+class PolicyV1beta1AllowedFlexVolume {
+ static getAttributeTypeMap() {
+ return PolicyV1beta1AllowedFlexVolume.attributeTypeMap;
+ }
+}
+PolicyV1beta1AllowedFlexVolume.discriminator = undefined;
+PolicyV1beta1AllowedFlexVolume.attributeTypeMap = [
+ {
+ "name": "driver",
+ "baseName": "driver",
+ "type": "string"
+ }
+];
+exports.PolicyV1beta1AllowedFlexVolume = PolicyV1beta1AllowedFlexVolume;
+//# sourceMappingURL=policyV1beta1AllowedFlexVolume.js.map
\ No newline at end of file
diff --git a/dist/gen/model/policyV1beta1AllowedFlexVolume.js.map b/dist/gen/model/policyV1beta1AllowedFlexVolume.js.map
new file mode 100644
index 0000000000..af0a328487
--- /dev/null
+++ b/dist/gen/model/policyV1beta1AllowedFlexVolume.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"policyV1beta1AllowedFlexVolume.js","sourceRoot":"","sources":["../../../src/gen/model/policyV1beta1AllowedFlexVolume.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAGH;;EAEE;AACF,MAAa,8BAA8B;IAevC,MAAM,CAAC,mBAAmB;QACtB,OAAO,8BAA8B,CAAC,gBAAgB,CAAC;IAC3D,CAAC;;AAXM,4CAAa,GAAuB,SAAS,CAAC;AAE9C,+CAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,QAAQ;QAChB,UAAU,EAAE,QAAQ;QACpB,MAAM,EAAE,QAAQ;KACnB;CAAK,CAAC;AAbf,wEAkBC"}
\ No newline at end of file
diff --git a/dist/gen/model/policyV1beta1AllowedHostPath.d.ts b/dist/gen/model/policyV1beta1AllowedHostPath.d.ts
new file mode 100644
index 0000000000..71dbfc182a
--- /dev/null
+++ b/dist/gen/model/policyV1beta1AllowedHostPath.d.ts
@@ -0,0 +1,35 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+/**
+* AllowedHostPath defines the host volume conditions that will be enabled by a policy for pods to use. It requires the path prefix to be defined.
+*/
+export declare class PolicyV1beta1AllowedHostPath {
+ /**
+ * pathPrefix is the path prefix that the host volume must match. It does not support `*`. Trailing slashes are trimmed when validating the path prefix with a host path. Examples: `/foo` would allow `/foo`, `/foo/` and `/foo/bar` `/foo` would not allow `/food` or `/etc/foo`
+ */
+ 'pathPrefix'?: string;
+ /**
+ * when set to true, will allow host volumes matching the pathPrefix only if all volume mounts are readOnly.
+ */
+ 'readOnly'?: boolean;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/policyV1beta1AllowedHostPath.js b/dist/gen/model/policyV1beta1AllowedHostPath.js
new file mode 100644
index 0000000000..4bbebfd861
--- /dev/null
+++ b/dist/gen/model/policyV1beta1AllowedHostPath.js
@@ -0,0 +1,36 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* AllowedHostPath defines the host volume conditions that will be enabled by a policy for pods to use. It requires the path prefix to be defined.
+*/
+class PolicyV1beta1AllowedHostPath {
+ static getAttributeTypeMap() {
+ return PolicyV1beta1AllowedHostPath.attributeTypeMap;
+ }
+}
+PolicyV1beta1AllowedHostPath.discriminator = undefined;
+PolicyV1beta1AllowedHostPath.attributeTypeMap = [
+ {
+ "name": "pathPrefix",
+ "baseName": "pathPrefix",
+ "type": "string"
+ },
+ {
+ "name": "readOnly",
+ "baseName": "readOnly",
+ "type": "boolean"
+ }
+];
+exports.PolicyV1beta1AllowedHostPath = PolicyV1beta1AllowedHostPath;
+//# sourceMappingURL=policyV1beta1AllowedHostPath.js.map
\ No newline at end of file
diff --git a/dist/gen/model/policyV1beta1AllowedHostPath.js.map b/dist/gen/model/policyV1beta1AllowedHostPath.js.map
new file mode 100644
index 0000000000..b39d4a554a
--- /dev/null
+++ b/dist/gen/model/policyV1beta1AllowedHostPath.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"policyV1beta1AllowedHostPath.js","sourceRoot":"","sources":["../../../src/gen/model/policyV1beta1AllowedHostPath.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAGH;;EAEE;AACF,MAAa,4BAA4B;IAwBrC,MAAM,CAAC,mBAAmB;QACtB,OAAO,4BAA4B,CAAC,gBAAgB,CAAC;IACzD,CAAC;;AAhBM,0CAAa,GAAuB,SAAS,CAAC;AAE9C,6CAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,YAAY;QACpB,UAAU,EAAE,YAAY;QACxB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,UAAU;QAClB,UAAU,EAAE,UAAU;QACtB,MAAM,EAAE,SAAS;KACpB;CAAK,CAAC;AAtBf,oEA2BC"}
\ No newline at end of file
diff --git a/dist/gen/model/policyV1beta1FSGroupStrategyOptions.d.ts b/dist/gen/model/policyV1beta1FSGroupStrategyOptions.d.ts
new file mode 100644
index 0000000000..b4137dfa22
--- /dev/null
+++ b/dist/gen/model/policyV1beta1FSGroupStrategyOptions.d.ts
@@ -0,0 +1,36 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+import { PolicyV1beta1IDRange } from './policyV1beta1IDRange';
+/**
+* FSGroupStrategyOptions defines the strategy type and options used to create the strategy.
+*/
+export declare class PolicyV1beta1FSGroupStrategyOptions {
+ /**
+ * ranges are the allowed ranges of fs groups. If you would like to force a single fs group then supply a single range with the same start and end. Required for MustRunAs.
+ */
+ 'ranges'?: Array;
+ /**
+ * rule is the strategy that will dictate what FSGroup is used in the SecurityContext.
+ */
+ 'rule'?: string;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/policyV1beta1FSGroupStrategyOptions.js b/dist/gen/model/policyV1beta1FSGroupStrategyOptions.js
new file mode 100644
index 0000000000..9421183358
--- /dev/null
+++ b/dist/gen/model/policyV1beta1FSGroupStrategyOptions.js
@@ -0,0 +1,36 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* FSGroupStrategyOptions defines the strategy type and options used to create the strategy.
+*/
+class PolicyV1beta1FSGroupStrategyOptions {
+ static getAttributeTypeMap() {
+ return PolicyV1beta1FSGroupStrategyOptions.attributeTypeMap;
+ }
+}
+PolicyV1beta1FSGroupStrategyOptions.discriminator = undefined;
+PolicyV1beta1FSGroupStrategyOptions.attributeTypeMap = [
+ {
+ "name": "ranges",
+ "baseName": "ranges",
+ "type": "Array"
+ },
+ {
+ "name": "rule",
+ "baseName": "rule",
+ "type": "string"
+ }
+];
+exports.PolicyV1beta1FSGroupStrategyOptions = PolicyV1beta1FSGroupStrategyOptions;
+//# sourceMappingURL=policyV1beta1FSGroupStrategyOptions.js.map
\ No newline at end of file
diff --git a/dist/gen/model/policyV1beta1FSGroupStrategyOptions.js.map b/dist/gen/model/policyV1beta1FSGroupStrategyOptions.js.map
new file mode 100644
index 0000000000..73cffe13dd
--- /dev/null
+++ b/dist/gen/model/policyV1beta1FSGroupStrategyOptions.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"policyV1beta1FSGroupStrategyOptions.js","sourceRoot":"","sources":["../../../src/gen/model/policyV1beta1FSGroupStrategyOptions.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAIH;;EAEE;AACF,MAAa,mCAAmC;IAwB5C,MAAM,CAAC,mBAAmB;QACtB,OAAO,mCAAmC,CAAC,gBAAgB,CAAC;IAChE,CAAC;;AAhBM,iDAAa,GAAuB,SAAS,CAAC;AAE9C,oDAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,QAAQ;QAChB,UAAU,EAAE,QAAQ;QACpB,MAAM,EAAE,6BAA6B;KACxC;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,QAAQ;KACnB;CAAK,CAAC;AAtBf,kFA2BC"}
\ No newline at end of file
diff --git a/dist/gen/model/policyV1beta1HostPortRange.d.ts b/dist/gen/model/policyV1beta1HostPortRange.d.ts
new file mode 100644
index 0000000000..59dbcca5e4
--- /dev/null
+++ b/dist/gen/model/policyV1beta1HostPortRange.d.ts
@@ -0,0 +1,35 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+/**
+* HostPortRange defines a range of host ports that will be enabled by a policy for pods to use. It requires both the start and end to be defined.
+*/
+export declare class PolicyV1beta1HostPortRange {
+ /**
+ * max is the end of the range, inclusive.
+ */
+ 'max': number;
+ /**
+ * min is the start of the range, inclusive.
+ */
+ 'min': number;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/policyV1beta1HostPortRange.js b/dist/gen/model/policyV1beta1HostPortRange.js
new file mode 100644
index 0000000000..6cd0d1bd84
--- /dev/null
+++ b/dist/gen/model/policyV1beta1HostPortRange.js
@@ -0,0 +1,36 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* HostPortRange defines a range of host ports that will be enabled by a policy for pods to use. It requires both the start and end to be defined.
+*/
+class PolicyV1beta1HostPortRange {
+ static getAttributeTypeMap() {
+ return PolicyV1beta1HostPortRange.attributeTypeMap;
+ }
+}
+PolicyV1beta1HostPortRange.discriminator = undefined;
+PolicyV1beta1HostPortRange.attributeTypeMap = [
+ {
+ "name": "max",
+ "baseName": "max",
+ "type": "number"
+ },
+ {
+ "name": "min",
+ "baseName": "min",
+ "type": "number"
+ }
+];
+exports.PolicyV1beta1HostPortRange = PolicyV1beta1HostPortRange;
+//# sourceMappingURL=policyV1beta1HostPortRange.js.map
\ No newline at end of file
diff --git a/dist/gen/model/policyV1beta1HostPortRange.js.map b/dist/gen/model/policyV1beta1HostPortRange.js.map
new file mode 100644
index 0000000000..7ad8099395
--- /dev/null
+++ b/dist/gen/model/policyV1beta1HostPortRange.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"policyV1beta1HostPortRange.js","sourceRoot":"","sources":["../../../src/gen/model/policyV1beta1HostPortRange.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAGH;;EAEE;AACF,MAAa,0BAA0B;IAwBnC,MAAM,CAAC,mBAAmB;QACtB,OAAO,0BAA0B,CAAC,gBAAgB,CAAC;IACvD,CAAC;;AAhBM,wCAAa,GAAuB,SAAS,CAAC;AAE9C,2CAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,KAAK;QACb,UAAU,EAAE,KAAK;QACjB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,KAAK;QACb,UAAU,EAAE,KAAK;QACjB,MAAM,EAAE,QAAQ;KACnB;CAAK,CAAC;AAtBf,gEA2BC"}
\ No newline at end of file
diff --git a/dist/gen/model/policyV1beta1IDRange.d.ts b/dist/gen/model/policyV1beta1IDRange.d.ts
new file mode 100644
index 0000000000..007792613c
--- /dev/null
+++ b/dist/gen/model/policyV1beta1IDRange.d.ts
@@ -0,0 +1,35 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+/**
+* IDRange provides a min/max of an allowed range of IDs.
+*/
+export declare class PolicyV1beta1IDRange {
+ /**
+ * max is the end of the range, inclusive.
+ */
+ 'max': number;
+ /**
+ * min is the start of the range, inclusive.
+ */
+ 'min': number;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/policyV1beta1IDRange.js b/dist/gen/model/policyV1beta1IDRange.js
new file mode 100644
index 0000000000..1cd4423ad4
--- /dev/null
+++ b/dist/gen/model/policyV1beta1IDRange.js
@@ -0,0 +1,36 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* IDRange provides a min/max of an allowed range of IDs.
+*/
+class PolicyV1beta1IDRange {
+ static getAttributeTypeMap() {
+ return PolicyV1beta1IDRange.attributeTypeMap;
+ }
+}
+PolicyV1beta1IDRange.discriminator = undefined;
+PolicyV1beta1IDRange.attributeTypeMap = [
+ {
+ "name": "max",
+ "baseName": "max",
+ "type": "number"
+ },
+ {
+ "name": "min",
+ "baseName": "min",
+ "type": "number"
+ }
+];
+exports.PolicyV1beta1IDRange = PolicyV1beta1IDRange;
+//# sourceMappingURL=policyV1beta1IDRange.js.map
\ No newline at end of file
diff --git a/dist/gen/model/policyV1beta1IDRange.js.map b/dist/gen/model/policyV1beta1IDRange.js.map
new file mode 100644
index 0000000000..a286681684
--- /dev/null
+++ b/dist/gen/model/policyV1beta1IDRange.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"policyV1beta1IDRange.js","sourceRoot":"","sources":["../../../src/gen/model/policyV1beta1IDRange.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAGH;;EAEE;AACF,MAAa,oBAAoB;IAwB7B,MAAM,CAAC,mBAAmB;QACtB,OAAO,oBAAoB,CAAC,gBAAgB,CAAC;IACjD,CAAC;;AAhBM,kCAAa,GAAuB,SAAS,CAAC;AAE9C,qCAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,KAAK;QACb,UAAU,EAAE,KAAK;QACjB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,KAAK;QACb,UAAU,EAAE,KAAK;QACjB,MAAM,EAAE,QAAQ;KACnB;CAAK,CAAC;AAtBf,oDA2BC"}
\ No newline at end of file
diff --git a/dist/gen/model/policyV1beta1PodSecurityPolicy.d.ts b/dist/gen/model/policyV1beta1PodSecurityPolicy.d.ts
new file mode 100644
index 0000000000..2825266691
--- /dev/null
+++ b/dist/gen/model/policyV1beta1PodSecurityPolicy.d.ts
@@ -0,0 +1,39 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+import { PolicyV1beta1PodSecurityPolicySpec } from './policyV1beta1PodSecurityPolicySpec';
+import { V1ObjectMeta } from './v1ObjectMeta';
+/**
+* PodSecurityPolicy governs the ability to make requests that affect the Security Context that will be applied to a pod and container.
+*/
+export declare class PolicyV1beta1PodSecurityPolicy {
+ /**
+ * APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources
+ */
+ 'apiVersion'?: string;
+ /**
+ * Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
+ */
+ 'kind'?: string;
+ 'metadata'?: V1ObjectMeta;
+ 'spec'?: PolicyV1beta1PodSecurityPolicySpec;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/policyV1beta1PodSecurityPolicy.js b/dist/gen/model/policyV1beta1PodSecurityPolicy.js
new file mode 100644
index 0000000000..38ed5500ac
--- /dev/null
+++ b/dist/gen/model/policyV1beta1PodSecurityPolicy.js
@@ -0,0 +1,46 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* PodSecurityPolicy governs the ability to make requests that affect the Security Context that will be applied to a pod and container.
+*/
+class PolicyV1beta1PodSecurityPolicy {
+ static getAttributeTypeMap() {
+ return PolicyV1beta1PodSecurityPolicy.attributeTypeMap;
+ }
+}
+PolicyV1beta1PodSecurityPolicy.discriminator = undefined;
+PolicyV1beta1PodSecurityPolicy.attributeTypeMap = [
+ {
+ "name": "apiVersion",
+ "baseName": "apiVersion",
+ "type": "string"
+ },
+ {
+ "name": "kind",
+ "baseName": "kind",
+ "type": "string"
+ },
+ {
+ "name": "metadata",
+ "baseName": "metadata",
+ "type": "V1ObjectMeta"
+ },
+ {
+ "name": "spec",
+ "baseName": "spec",
+ "type": "PolicyV1beta1PodSecurityPolicySpec"
+ }
+];
+exports.PolicyV1beta1PodSecurityPolicy = PolicyV1beta1PodSecurityPolicy;
+//# sourceMappingURL=policyV1beta1PodSecurityPolicy.js.map
\ No newline at end of file
diff --git a/dist/gen/model/policyV1beta1PodSecurityPolicy.js.map b/dist/gen/model/policyV1beta1PodSecurityPolicy.js.map
new file mode 100644
index 0000000000..e6aca70031
--- /dev/null
+++ b/dist/gen/model/policyV1beta1PodSecurityPolicy.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"policyV1beta1PodSecurityPolicy.js","sourceRoot":"","sources":["../../../src/gen/model/policyV1beta1PodSecurityPolicy.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAKH;;EAEE;AACF,MAAa,8BAA8B;IAoCvC,MAAM,CAAC,mBAAmB;QACtB,OAAO,8BAA8B,CAAC,gBAAgB,CAAC;IAC3D,CAAC;;AA1BM,4CAAa,GAAuB,SAAS,CAAC;AAE9C,+CAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,YAAY;QACpB,UAAU,EAAE,YAAY;QACxB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,UAAU;QAClB,UAAU,EAAE,UAAU;QACtB,MAAM,EAAE,cAAc;KACzB;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,oCAAoC;KAC/C;CAAK,CAAC;AAlCf,wEAuCC"}
\ No newline at end of file
diff --git a/dist/gen/model/policyV1beta1PodSecurityPolicyList.d.ts b/dist/gen/model/policyV1beta1PodSecurityPolicyList.d.ts
new file mode 100644
index 0000000000..9c415c725b
--- /dev/null
+++ b/dist/gen/model/policyV1beta1PodSecurityPolicyList.d.ts
@@ -0,0 +1,42 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+import { PolicyV1beta1PodSecurityPolicy } from './policyV1beta1PodSecurityPolicy';
+import { V1ListMeta } from './v1ListMeta';
+/**
+* PodSecurityPolicyList is a list of PodSecurityPolicy objects.
+*/
+export declare class PolicyV1beta1PodSecurityPolicyList {
+ /**
+ * APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources
+ */
+ 'apiVersion'?: string;
+ /**
+ * items is a list of schema objects.
+ */
+ 'items': Array;
+ /**
+ * Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
+ */
+ 'kind'?: string;
+ 'metadata'?: V1ListMeta;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/policyV1beta1PodSecurityPolicyList.js b/dist/gen/model/policyV1beta1PodSecurityPolicyList.js
new file mode 100644
index 0000000000..03dee09d3f
--- /dev/null
+++ b/dist/gen/model/policyV1beta1PodSecurityPolicyList.js
@@ -0,0 +1,46 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* PodSecurityPolicyList is a list of PodSecurityPolicy objects.
+*/
+class PolicyV1beta1PodSecurityPolicyList {
+ static getAttributeTypeMap() {
+ return PolicyV1beta1PodSecurityPolicyList.attributeTypeMap;
+ }
+}
+PolicyV1beta1PodSecurityPolicyList.discriminator = undefined;
+PolicyV1beta1PodSecurityPolicyList.attributeTypeMap = [
+ {
+ "name": "apiVersion",
+ "baseName": "apiVersion",
+ "type": "string"
+ },
+ {
+ "name": "items",
+ "baseName": "items",
+ "type": "Array"
+ },
+ {
+ "name": "kind",
+ "baseName": "kind",
+ "type": "string"
+ },
+ {
+ "name": "metadata",
+ "baseName": "metadata",
+ "type": "V1ListMeta"
+ }
+];
+exports.PolicyV1beta1PodSecurityPolicyList = PolicyV1beta1PodSecurityPolicyList;
+//# sourceMappingURL=policyV1beta1PodSecurityPolicyList.js.map
\ No newline at end of file
diff --git a/dist/gen/model/policyV1beta1PodSecurityPolicyList.js.map b/dist/gen/model/policyV1beta1PodSecurityPolicyList.js.map
new file mode 100644
index 0000000000..46ae818ea2
--- /dev/null
+++ b/dist/gen/model/policyV1beta1PodSecurityPolicyList.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"policyV1beta1PodSecurityPolicyList.js","sourceRoot":"","sources":["../../../src/gen/model/policyV1beta1PodSecurityPolicyList.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAKH;;EAEE;AACF,MAAa,kCAAkC;IAuC3C,MAAM,CAAC,mBAAmB;QACtB,OAAO,kCAAkC,CAAC,gBAAgB,CAAC;IAC/D,CAAC;;AA1BM,gDAAa,GAAuB,SAAS,CAAC;AAE9C,mDAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,YAAY;QACpB,UAAU,EAAE,YAAY;QACxB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,OAAO;QACf,UAAU,EAAE,OAAO;QACnB,MAAM,EAAE,uCAAuC;KAClD;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,UAAU;QAClB,UAAU,EAAE,UAAU;QACtB,MAAM,EAAE,YAAY;KACvB;CAAK,CAAC;AArCf,gFA0CC"}
\ No newline at end of file
diff --git a/dist/gen/model/policyV1beta1PodSecurityPolicySpec.d.ts b/dist/gen/model/policyV1beta1PodSecurityPolicySpec.d.ts
new file mode 100644
index 0000000000..d665647011
--- /dev/null
+++ b/dist/gen/model/policyV1beta1PodSecurityPolicySpec.d.ts
@@ -0,0 +1,115 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+import { PolicyV1beta1AllowedCSIDriver } from './policyV1beta1AllowedCSIDriver';
+import { PolicyV1beta1AllowedFlexVolume } from './policyV1beta1AllowedFlexVolume';
+import { PolicyV1beta1AllowedHostPath } from './policyV1beta1AllowedHostPath';
+import { PolicyV1beta1FSGroupStrategyOptions } from './policyV1beta1FSGroupStrategyOptions';
+import { PolicyV1beta1HostPortRange } from './policyV1beta1HostPortRange';
+import { PolicyV1beta1RunAsGroupStrategyOptions } from './policyV1beta1RunAsGroupStrategyOptions';
+import { PolicyV1beta1RunAsUserStrategyOptions } from './policyV1beta1RunAsUserStrategyOptions';
+import { PolicyV1beta1RuntimeClassStrategyOptions } from './policyV1beta1RuntimeClassStrategyOptions';
+import { PolicyV1beta1SELinuxStrategyOptions } from './policyV1beta1SELinuxStrategyOptions';
+import { PolicyV1beta1SupplementalGroupsStrategyOptions } from './policyV1beta1SupplementalGroupsStrategyOptions';
+/**
+* PodSecurityPolicySpec defines the policy enforced.
+*/
+export declare class PolicyV1beta1PodSecurityPolicySpec {
+ /**
+ * allowPrivilegeEscalation determines if a pod can request to allow privilege escalation. If unspecified, defaults to true.
+ */
+ 'allowPrivilegeEscalation'?: boolean;
+ /**
+ * AllowedCSIDrivers is a whitelist of inline CSI drivers that must be explicitly set to be embedded within a pod spec. An empty value indicates that any CSI driver can be used for inline ephemeral volumes. This is an alpha field, and is only honored if the API server enables the CSIInlineVolume feature gate.
+ */
+ 'allowedCSIDrivers'?: Array;
+ /**
+ * allowedCapabilities is a list of capabilities that can be requested to add to the container. Capabilities in this field may be added at the pod author\'s discretion. You must not list a capability in both allowedCapabilities and requiredDropCapabilities.
+ */
+ 'allowedCapabilities'?: Array;
+ /**
+ * allowedFlexVolumes is a whitelist of allowed Flexvolumes. Empty or nil indicates that all Flexvolumes may be used. This parameter is effective only when the usage of the Flexvolumes is allowed in the \"volumes\" field.
+ */
+ 'allowedFlexVolumes'?: Array;
+ /**
+ * allowedHostPaths is a white list of allowed host paths. Empty indicates that all host paths may be used.
+ */
+ 'allowedHostPaths'?: Array;
+ /**
+ * AllowedProcMountTypes is a whitelist of allowed ProcMountTypes. Empty or nil indicates that only the DefaultProcMountType may be used. This requires the ProcMountType feature flag to be enabled.
+ */
+ 'allowedProcMountTypes'?: Array;
+ /**
+ * allowedUnsafeSysctls is a list of explicitly allowed unsafe sysctls, defaults to none. Each entry is either a plain sysctl name or ends in \"*\" in which case it is considered as a prefix of allowed sysctls. Single * means all unsafe sysctls are allowed. Kubelet has to whitelist all allowed unsafe sysctls explicitly to avoid rejection. Examples: e.g. \"foo/_*\" allows \"foo/bar\", \"foo/baz\", etc. e.g. \"foo.*\" allows \"foo.bar\", \"foo.baz\", etc.
+ */
+ 'allowedUnsafeSysctls'?: Array;
+ /**
+ * defaultAddCapabilities is the default set of capabilities that will be added to the container unless the pod spec specifically drops the capability. You may not list a capability in both defaultAddCapabilities and requiredDropCapabilities. Capabilities added here are implicitly allowed, and need not be included in the allowedCapabilities list.
+ */
+ 'defaultAddCapabilities'?: Array;
+ /**
+ * defaultAllowPrivilegeEscalation controls the default setting for whether a process can gain more privileges than its parent process.
+ */
+ 'defaultAllowPrivilegeEscalation'?: boolean;
+ /**
+ * forbiddenSysctls is a list of explicitly forbidden sysctls, defaults to none. Each entry is either a plain sysctl name or ends in \"*\" in which case it is considered as a prefix of forbidden sysctls. Single * means all sysctls are forbidden. Examples: e.g. \"foo/_*\" forbids \"foo/bar\", \"foo/baz\", etc. e.g. \"foo.*\" forbids \"foo.bar\", \"foo.baz\", etc.
+ */
+ 'forbiddenSysctls'?: Array;
+ 'fsGroup': PolicyV1beta1FSGroupStrategyOptions;
+ /**
+ * hostIPC determines if the policy allows the use of HostIPC in the pod spec.
+ */
+ 'hostIPC'?: boolean;
+ /**
+ * hostNetwork determines if the policy allows the use of HostNetwork in the pod spec.
+ */
+ 'hostNetwork'?: boolean;
+ /**
+ * hostPID determines if the policy allows the use of HostPID in the pod spec.
+ */
+ 'hostPID'?: boolean;
+ /**
+ * hostPorts determines which host port ranges are allowed to be exposed.
+ */
+ 'hostPorts'?: Array;
+ /**
+ * privileged determines if a pod can request to be run as privileged.
+ */
+ 'privileged'?: boolean;
+ /**
+ * readOnlyRootFilesystem when set to true will force containers to run with a read only root file system. If the container specifically requests to run with a non-read only root file system the PSP should deny the pod. If set to false the container may run with a read only root file system if it wishes but it will not be forced to.
+ */
+ 'readOnlyRootFilesystem'?: boolean;
+ /**
+ * requiredDropCapabilities are the capabilities that will be dropped from the container. These are required to be dropped and cannot be added.
+ */
+ 'requiredDropCapabilities'?: Array;
+ 'runAsGroup'?: PolicyV1beta1RunAsGroupStrategyOptions;
+ 'runAsUser': PolicyV1beta1RunAsUserStrategyOptions;
+ 'runtimeClass'?: PolicyV1beta1RuntimeClassStrategyOptions;
+ 'seLinux': PolicyV1beta1SELinuxStrategyOptions;
+ 'supplementalGroups': PolicyV1beta1SupplementalGroupsStrategyOptions;
+ /**
+ * volumes is a white list of allowed volume plugins. Empty indicates that no volumes may be used. To allow all volumes you may use \'*\'.
+ */
+ 'volumes'?: Array;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/policyV1beta1PodSecurityPolicySpec.js b/dist/gen/model/policyV1beta1PodSecurityPolicySpec.js
new file mode 100644
index 0000000000..1f2ba5c6f2
--- /dev/null
+++ b/dist/gen/model/policyV1beta1PodSecurityPolicySpec.js
@@ -0,0 +1,146 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* PodSecurityPolicySpec defines the policy enforced.
+*/
+class PolicyV1beta1PodSecurityPolicySpec {
+ static getAttributeTypeMap() {
+ return PolicyV1beta1PodSecurityPolicySpec.attributeTypeMap;
+ }
+}
+PolicyV1beta1PodSecurityPolicySpec.discriminator = undefined;
+PolicyV1beta1PodSecurityPolicySpec.attributeTypeMap = [
+ {
+ "name": "allowPrivilegeEscalation",
+ "baseName": "allowPrivilegeEscalation",
+ "type": "boolean"
+ },
+ {
+ "name": "allowedCSIDrivers",
+ "baseName": "allowedCSIDrivers",
+ "type": "Array"
+ },
+ {
+ "name": "allowedCapabilities",
+ "baseName": "allowedCapabilities",
+ "type": "Array"
+ },
+ {
+ "name": "allowedFlexVolumes",
+ "baseName": "allowedFlexVolumes",
+ "type": "Array"
+ },
+ {
+ "name": "allowedHostPaths",
+ "baseName": "allowedHostPaths",
+ "type": "Array"
+ },
+ {
+ "name": "allowedProcMountTypes",
+ "baseName": "allowedProcMountTypes",
+ "type": "Array"
+ },
+ {
+ "name": "allowedUnsafeSysctls",
+ "baseName": "allowedUnsafeSysctls",
+ "type": "Array"
+ },
+ {
+ "name": "defaultAddCapabilities",
+ "baseName": "defaultAddCapabilities",
+ "type": "Array"
+ },
+ {
+ "name": "defaultAllowPrivilegeEscalation",
+ "baseName": "defaultAllowPrivilegeEscalation",
+ "type": "boolean"
+ },
+ {
+ "name": "forbiddenSysctls",
+ "baseName": "forbiddenSysctls",
+ "type": "Array"
+ },
+ {
+ "name": "fsGroup",
+ "baseName": "fsGroup",
+ "type": "PolicyV1beta1FSGroupStrategyOptions"
+ },
+ {
+ "name": "hostIPC",
+ "baseName": "hostIPC",
+ "type": "boolean"
+ },
+ {
+ "name": "hostNetwork",
+ "baseName": "hostNetwork",
+ "type": "boolean"
+ },
+ {
+ "name": "hostPID",
+ "baseName": "hostPID",
+ "type": "boolean"
+ },
+ {
+ "name": "hostPorts",
+ "baseName": "hostPorts",
+ "type": "Array"
+ },
+ {
+ "name": "privileged",
+ "baseName": "privileged",
+ "type": "boolean"
+ },
+ {
+ "name": "readOnlyRootFilesystem",
+ "baseName": "readOnlyRootFilesystem",
+ "type": "boolean"
+ },
+ {
+ "name": "requiredDropCapabilities",
+ "baseName": "requiredDropCapabilities",
+ "type": "Array"
+ },
+ {
+ "name": "runAsGroup",
+ "baseName": "runAsGroup",
+ "type": "PolicyV1beta1RunAsGroupStrategyOptions"
+ },
+ {
+ "name": "runAsUser",
+ "baseName": "runAsUser",
+ "type": "PolicyV1beta1RunAsUserStrategyOptions"
+ },
+ {
+ "name": "runtimeClass",
+ "baseName": "runtimeClass",
+ "type": "PolicyV1beta1RuntimeClassStrategyOptions"
+ },
+ {
+ "name": "seLinux",
+ "baseName": "seLinux",
+ "type": "PolicyV1beta1SELinuxStrategyOptions"
+ },
+ {
+ "name": "supplementalGroups",
+ "baseName": "supplementalGroups",
+ "type": "PolicyV1beta1SupplementalGroupsStrategyOptions"
+ },
+ {
+ "name": "volumes",
+ "baseName": "volumes",
+ "type": "Array"
+ }
+];
+exports.PolicyV1beta1PodSecurityPolicySpec = PolicyV1beta1PodSecurityPolicySpec;
+//# sourceMappingURL=policyV1beta1PodSecurityPolicySpec.js.map
\ No newline at end of file
diff --git a/dist/gen/model/policyV1beta1PodSecurityPolicySpec.js.map b/dist/gen/model/policyV1beta1PodSecurityPolicySpec.js.map
new file mode 100644
index 0000000000..134c2b2d6d
--- /dev/null
+++ b/dist/gen/model/policyV1beta1PodSecurityPolicySpec.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"policyV1beta1PodSecurityPolicySpec.js","sourceRoot":"","sources":["../../../src/gen/model/policyV1beta1PodSecurityPolicySpec.ts"],"names":[],"mappings":"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"}
\ No newline at end of file
diff --git a/dist/gen/model/policyV1beta1RunAsGroupStrategyOptions.d.ts b/dist/gen/model/policyV1beta1RunAsGroupStrategyOptions.d.ts
new file mode 100644
index 0000000000..66845dd322
--- /dev/null
+++ b/dist/gen/model/policyV1beta1RunAsGroupStrategyOptions.d.ts
@@ -0,0 +1,36 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+import { PolicyV1beta1IDRange } from './policyV1beta1IDRange';
+/**
+* RunAsGroupStrategyOptions defines the strategy type and any options used to create the strategy.
+*/
+export declare class PolicyV1beta1RunAsGroupStrategyOptions {
+ /**
+ * ranges are the allowed ranges of gids that may be used. If you would like to force a single gid then supply a single range with the same start and end. Required for MustRunAs.
+ */
+ 'ranges'?: Array;
+ /**
+ * rule is the strategy that will dictate the allowable RunAsGroup values that may be set.
+ */
+ 'rule': string;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/policyV1beta1RunAsGroupStrategyOptions.js b/dist/gen/model/policyV1beta1RunAsGroupStrategyOptions.js
new file mode 100644
index 0000000000..6263930a47
--- /dev/null
+++ b/dist/gen/model/policyV1beta1RunAsGroupStrategyOptions.js
@@ -0,0 +1,36 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* RunAsGroupStrategyOptions defines the strategy type and any options used to create the strategy.
+*/
+class PolicyV1beta1RunAsGroupStrategyOptions {
+ static getAttributeTypeMap() {
+ return PolicyV1beta1RunAsGroupStrategyOptions.attributeTypeMap;
+ }
+}
+PolicyV1beta1RunAsGroupStrategyOptions.discriminator = undefined;
+PolicyV1beta1RunAsGroupStrategyOptions.attributeTypeMap = [
+ {
+ "name": "ranges",
+ "baseName": "ranges",
+ "type": "Array"
+ },
+ {
+ "name": "rule",
+ "baseName": "rule",
+ "type": "string"
+ }
+];
+exports.PolicyV1beta1RunAsGroupStrategyOptions = PolicyV1beta1RunAsGroupStrategyOptions;
+//# sourceMappingURL=policyV1beta1RunAsGroupStrategyOptions.js.map
\ No newline at end of file
diff --git a/dist/gen/model/policyV1beta1RunAsGroupStrategyOptions.js.map b/dist/gen/model/policyV1beta1RunAsGroupStrategyOptions.js.map
new file mode 100644
index 0000000000..ed5e65f7db
--- /dev/null
+++ b/dist/gen/model/policyV1beta1RunAsGroupStrategyOptions.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"policyV1beta1RunAsGroupStrategyOptions.js","sourceRoot":"","sources":["../../../src/gen/model/policyV1beta1RunAsGroupStrategyOptions.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAIH;;EAEE;AACF,MAAa,sCAAsC;IAwB/C,MAAM,CAAC,mBAAmB;QACtB,OAAO,sCAAsC,CAAC,gBAAgB,CAAC;IACnE,CAAC;;AAhBM,oDAAa,GAAuB,SAAS,CAAC;AAE9C,uDAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,QAAQ;QAChB,UAAU,EAAE,QAAQ;QACpB,MAAM,EAAE,6BAA6B;KACxC;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,QAAQ;KACnB;CAAK,CAAC;AAtBf,wFA2BC"}
\ No newline at end of file
diff --git a/dist/gen/model/policyV1beta1RunAsUserStrategyOptions.d.ts b/dist/gen/model/policyV1beta1RunAsUserStrategyOptions.d.ts
new file mode 100644
index 0000000000..c915601a28
--- /dev/null
+++ b/dist/gen/model/policyV1beta1RunAsUserStrategyOptions.d.ts
@@ -0,0 +1,36 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+import { PolicyV1beta1IDRange } from './policyV1beta1IDRange';
+/**
+* RunAsUserStrategyOptions defines the strategy type and any options used to create the strategy.
+*/
+export declare class PolicyV1beta1RunAsUserStrategyOptions {
+ /**
+ * ranges are the allowed ranges of uids that may be used. If you would like to force a single uid then supply a single range with the same start and end. Required for MustRunAs.
+ */
+ 'ranges'?: Array;
+ /**
+ * rule is the strategy that will dictate the allowable RunAsUser values that may be set.
+ */
+ 'rule': string;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/policyV1beta1RunAsUserStrategyOptions.js b/dist/gen/model/policyV1beta1RunAsUserStrategyOptions.js
new file mode 100644
index 0000000000..00fb3a9fcc
--- /dev/null
+++ b/dist/gen/model/policyV1beta1RunAsUserStrategyOptions.js
@@ -0,0 +1,36 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* RunAsUserStrategyOptions defines the strategy type and any options used to create the strategy.
+*/
+class PolicyV1beta1RunAsUserStrategyOptions {
+ static getAttributeTypeMap() {
+ return PolicyV1beta1RunAsUserStrategyOptions.attributeTypeMap;
+ }
+}
+PolicyV1beta1RunAsUserStrategyOptions.discriminator = undefined;
+PolicyV1beta1RunAsUserStrategyOptions.attributeTypeMap = [
+ {
+ "name": "ranges",
+ "baseName": "ranges",
+ "type": "Array"
+ },
+ {
+ "name": "rule",
+ "baseName": "rule",
+ "type": "string"
+ }
+];
+exports.PolicyV1beta1RunAsUserStrategyOptions = PolicyV1beta1RunAsUserStrategyOptions;
+//# sourceMappingURL=policyV1beta1RunAsUserStrategyOptions.js.map
\ No newline at end of file
diff --git a/dist/gen/model/policyV1beta1RunAsUserStrategyOptions.js.map b/dist/gen/model/policyV1beta1RunAsUserStrategyOptions.js.map
new file mode 100644
index 0000000000..0467f71282
--- /dev/null
+++ b/dist/gen/model/policyV1beta1RunAsUserStrategyOptions.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"policyV1beta1RunAsUserStrategyOptions.js","sourceRoot":"","sources":["../../../src/gen/model/policyV1beta1RunAsUserStrategyOptions.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAIH;;EAEE;AACF,MAAa,qCAAqC;IAwB9C,MAAM,CAAC,mBAAmB;QACtB,OAAO,qCAAqC,CAAC,gBAAgB,CAAC;IAClE,CAAC;;AAhBM,mDAAa,GAAuB,SAAS,CAAC;AAE9C,sDAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,QAAQ;QAChB,UAAU,EAAE,QAAQ;QACpB,MAAM,EAAE,6BAA6B;KACxC;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,QAAQ;KACnB;CAAK,CAAC;AAtBf,sFA2BC"}
\ No newline at end of file
diff --git a/dist/gen/model/policyV1beta1RuntimeClassStrategyOptions.d.ts b/dist/gen/model/policyV1beta1RuntimeClassStrategyOptions.d.ts
new file mode 100644
index 0000000000..49253f6959
--- /dev/null
+++ b/dist/gen/model/policyV1beta1RuntimeClassStrategyOptions.d.ts
@@ -0,0 +1,35 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+/**
+* RuntimeClassStrategyOptions define the strategy that will dictate the allowable RuntimeClasses for a pod.
+*/
+export declare class PolicyV1beta1RuntimeClassStrategyOptions {
+ /**
+ * allowedRuntimeClassNames is a whitelist of RuntimeClass names that may be specified on a pod. A value of \"*\" means that any RuntimeClass name is allowed, and must be the only item in the list. An empty list requires the RuntimeClassName field to be unset.
+ */
+ 'allowedRuntimeClassNames': Array;
+ /**
+ * defaultRuntimeClassName is the default RuntimeClassName to set on the pod. The default MUST be allowed by the allowedRuntimeClassNames list. A value of nil does not mutate the Pod.
+ */
+ 'defaultRuntimeClassName'?: string;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/policyV1beta1RuntimeClassStrategyOptions.js b/dist/gen/model/policyV1beta1RuntimeClassStrategyOptions.js
new file mode 100644
index 0000000000..f10ced064d
--- /dev/null
+++ b/dist/gen/model/policyV1beta1RuntimeClassStrategyOptions.js
@@ -0,0 +1,36 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* RuntimeClassStrategyOptions define the strategy that will dictate the allowable RuntimeClasses for a pod.
+*/
+class PolicyV1beta1RuntimeClassStrategyOptions {
+ static getAttributeTypeMap() {
+ return PolicyV1beta1RuntimeClassStrategyOptions.attributeTypeMap;
+ }
+}
+PolicyV1beta1RuntimeClassStrategyOptions.discriminator = undefined;
+PolicyV1beta1RuntimeClassStrategyOptions.attributeTypeMap = [
+ {
+ "name": "allowedRuntimeClassNames",
+ "baseName": "allowedRuntimeClassNames",
+ "type": "Array"
+ },
+ {
+ "name": "defaultRuntimeClassName",
+ "baseName": "defaultRuntimeClassName",
+ "type": "string"
+ }
+];
+exports.PolicyV1beta1RuntimeClassStrategyOptions = PolicyV1beta1RuntimeClassStrategyOptions;
+//# sourceMappingURL=policyV1beta1RuntimeClassStrategyOptions.js.map
\ No newline at end of file
diff --git a/dist/gen/model/policyV1beta1RuntimeClassStrategyOptions.js.map b/dist/gen/model/policyV1beta1RuntimeClassStrategyOptions.js.map
new file mode 100644
index 0000000000..632db33300
--- /dev/null
+++ b/dist/gen/model/policyV1beta1RuntimeClassStrategyOptions.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"policyV1beta1RuntimeClassStrategyOptions.js","sourceRoot":"","sources":["../../../src/gen/model/policyV1beta1RuntimeClassStrategyOptions.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAGH;;EAEE;AACF,MAAa,wCAAwC;IAwBjD,MAAM,CAAC,mBAAmB;QACtB,OAAO,wCAAwC,CAAC,gBAAgB,CAAC;IACrE,CAAC;;AAhBM,sDAAa,GAAuB,SAAS,CAAC;AAE9C,yDAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,0BAA0B;QAClC,UAAU,EAAE,0BAA0B;QACtC,MAAM,EAAE,eAAe;KAC1B;IACD;QACI,MAAM,EAAE,yBAAyB;QACjC,UAAU,EAAE,yBAAyB;QACrC,MAAM,EAAE,QAAQ;KACnB;CAAK,CAAC;AAtBf,4FA2BC"}
\ No newline at end of file
diff --git a/dist/gen/model/policyV1beta1SELinuxStrategyOptions.d.ts b/dist/gen/model/policyV1beta1SELinuxStrategyOptions.d.ts
new file mode 100644
index 0000000000..19e3c8f889
--- /dev/null
+++ b/dist/gen/model/policyV1beta1SELinuxStrategyOptions.d.ts
@@ -0,0 +1,33 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+import { V1SELinuxOptions } from './v1SELinuxOptions';
+/**
+* SELinuxStrategyOptions defines the strategy type and any options used to create the strategy.
+*/
+export declare class PolicyV1beta1SELinuxStrategyOptions {
+ /**
+ * rule is the strategy that will dictate the allowable labels that may be set.
+ */
+ 'rule': string;
+ 'seLinuxOptions'?: V1SELinuxOptions;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/policyV1beta1SELinuxStrategyOptions.js b/dist/gen/model/policyV1beta1SELinuxStrategyOptions.js
new file mode 100644
index 0000000000..0d1ec55f1a
--- /dev/null
+++ b/dist/gen/model/policyV1beta1SELinuxStrategyOptions.js
@@ -0,0 +1,36 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* SELinuxStrategyOptions defines the strategy type and any options used to create the strategy.
+*/
+class PolicyV1beta1SELinuxStrategyOptions {
+ static getAttributeTypeMap() {
+ return PolicyV1beta1SELinuxStrategyOptions.attributeTypeMap;
+ }
+}
+PolicyV1beta1SELinuxStrategyOptions.discriminator = undefined;
+PolicyV1beta1SELinuxStrategyOptions.attributeTypeMap = [
+ {
+ "name": "rule",
+ "baseName": "rule",
+ "type": "string"
+ },
+ {
+ "name": "seLinuxOptions",
+ "baseName": "seLinuxOptions",
+ "type": "V1SELinuxOptions"
+ }
+];
+exports.PolicyV1beta1SELinuxStrategyOptions = PolicyV1beta1SELinuxStrategyOptions;
+//# sourceMappingURL=policyV1beta1SELinuxStrategyOptions.js.map
\ No newline at end of file
diff --git a/dist/gen/model/policyV1beta1SELinuxStrategyOptions.js.map b/dist/gen/model/policyV1beta1SELinuxStrategyOptions.js.map
new file mode 100644
index 0000000000..b5a3a6c430
--- /dev/null
+++ b/dist/gen/model/policyV1beta1SELinuxStrategyOptions.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"policyV1beta1SELinuxStrategyOptions.js","sourceRoot":"","sources":["../../../src/gen/model/policyV1beta1SELinuxStrategyOptions.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAIH;;EAEE;AACF,MAAa,mCAAmC;IAqB5C,MAAM,CAAC,mBAAmB;QACtB,OAAO,mCAAmC,CAAC,gBAAgB,CAAC;IAChE,CAAC;;AAhBM,iDAAa,GAAuB,SAAS,CAAC;AAE9C,oDAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,gBAAgB;QACxB,UAAU,EAAE,gBAAgB;QAC5B,MAAM,EAAE,kBAAkB;KAC7B;CAAK,CAAC;AAnBf,kFAwBC"}
\ No newline at end of file
diff --git a/dist/gen/model/policyV1beta1SupplementalGroupsStrategyOptions.d.ts b/dist/gen/model/policyV1beta1SupplementalGroupsStrategyOptions.d.ts
new file mode 100644
index 0000000000..b0a0310452
--- /dev/null
+++ b/dist/gen/model/policyV1beta1SupplementalGroupsStrategyOptions.d.ts
@@ -0,0 +1,36 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+import { PolicyV1beta1IDRange } from './policyV1beta1IDRange';
+/**
+* SupplementalGroupsStrategyOptions defines the strategy type and options used to create the strategy.
+*/
+export declare class PolicyV1beta1SupplementalGroupsStrategyOptions {
+ /**
+ * ranges are the allowed ranges of supplemental groups. If you would like to force a single supplemental group then supply a single range with the same start and end. Required for MustRunAs.
+ */
+ 'ranges'?: Array;
+ /**
+ * rule is the strategy that will dictate what supplemental groups is used in the SecurityContext.
+ */
+ 'rule'?: string;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/policyV1beta1SupplementalGroupsStrategyOptions.js b/dist/gen/model/policyV1beta1SupplementalGroupsStrategyOptions.js
new file mode 100644
index 0000000000..d611f81fd4
--- /dev/null
+++ b/dist/gen/model/policyV1beta1SupplementalGroupsStrategyOptions.js
@@ -0,0 +1,36 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* SupplementalGroupsStrategyOptions defines the strategy type and options used to create the strategy.
+*/
+class PolicyV1beta1SupplementalGroupsStrategyOptions {
+ static getAttributeTypeMap() {
+ return PolicyV1beta1SupplementalGroupsStrategyOptions.attributeTypeMap;
+ }
+}
+PolicyV1beta1SupplementalGroupsStrategyOptions.discriminator = undefined;
+PolicyV1beta1SupplementalGroupsStrategyOptions.attributeTypeMap = [
+ {
+ "name": "ranges",
+ "baseName": "ranges",
+ "type": "Array"
+ },
+ {
+ "name": "rule",
+ "baseName": "rule",
+ "type": "string"
+ }
+];
+exports.PolicyV1beta1SupplementalGroupsStrategyOptions = PolicyV1beta1SupplementalGroupsStrategyOptions;
+//# sourceMappingURL=policyV1beta1SupplementalGroupsStrategyOptions.js.map
\ No newline at end of file
diff --git a/dist/gen/model/policyV1beta1SupplementalGroupsStrategyOptions.js.map b/dist/gen/model/policyV1beta1SupplementalGroupsStrategyOptions.js.map
new file mode 100644
index 0000000000..76bcc791f5
--- /dev/null
+++ b/dist/gen/model/policyV1beta1SupplementalGroupsStrategyOptions.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"policyV1beta1SupplementalGroupsStrategyOptions.js","sourceRoot":"","sources":["../../../src/gen/model/policyV1beta1SupplementalGroupsStrategyOptions.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAIH;;EAEE;AACF,MAAa,8CAA8C;IAwBvD,MAAM,CAAC,mBAAmB;QACtB,OAAO,8CAA8C,CAAC,gBAAgB,CAAC;IAC3E,CAAC;;AAhBM,4DAAa,GAAuB,SAAS,CAAC;AAE9C,+DAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,QAAQ;QAChB,UAAU,EAAE,QAAQ;QACpB,MAAM,EAAE,6BAA6B;KACxC;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,QAAQ;KACnB;CAAK,CAAC;AAtBf,wGA2BC"}
\ No newline at end of file
diff --git a/dist/gen/model/runtimeRawExtension.d.ts b/dist/gen/model/runtimeRawExtension.d.ts
new file mode 100644
index 0000000000..870d31a056
--- /dev/null
+++ b/dist/gen/model/runtimeRawExtension.d.ts
@@ -0,0 +1,31 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+/**
+* RawExtension is used to hold extensions in external versions. To use this, make a field which has RawExtension as its type in your external, versioned struct, and Object in your internal struct. You also need to register your various plugin types. // Internal package: type MyAPIObject struct { runtime.TypeMeta `json:\",inline\"` MyPlugin runtime.Object `json:\"myPlugin\"` } type PluginA struct { AOption string `json:\"aOption\"` } // External package: type MyAPIObject struct { runtime.TypeMeta `json:\",inline\"` MyPlugin runtime.RawExtension `json:\"myPlugin\"` } type PluginA struct { AOption string `json:\"aOption\"` } // On the wire, the JSON will look something like this: { \"kind\":\"MyAPIObject\", \"apiVersion\":\"v1\", \"myPlugin\": { \"kind\":\"PluginA\", \"aOption\":\"foo\", }, } So what happens? Decode first uses json or yaml to unmarshal the serialized data into your external MyAPIObject. That causes the raw JSON to be stored, but not unpacked. The next step is to copy (using pkg/conversion) into the internal struct. The runtime package\'s DefaultScheme has conversion functions installed which will unpack the JSON stored in RawExtension, turning it into the correct object type, and storing it in the Object. (TODO: In the case where the object is of an unknown type, a runtime.Unknown object will be created and stored.)
+*/
+export declare class RuntimeRawExtension {
+ /**
+ * Raw is the underlying serialization of this object.
+ */
+ 'Raw': string;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/runtimeRawExtension.js b/dist/gen/model/runtimeRawExtension.js
new file mode 100644
index 0000000000..9fcf57fe6e
--- /dev/null
+++ b/dist/gen/model/runtimeRawExtension.js
@@ -0,0 +1,31 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* RawExtension is used to hold extensions in external versions. To use this, make a field which has RawExtension as its type in your external, versioned struct, and Object in your internal struct. You also need to register your various plugin types. // Internal package: type MyAPIObject struct { runtime.TypeMeta `json:\",inline\"` MyPlugin runtime.Object `json:\"myPlugin\"` } type PluginA struct { AOption string `json:\"aOption\"` } // External package: type MyAPIObject struct { runtime.TypeMeta `json:\",inline\"` MyPlugin runtime.RawExtension `json:\"myPlugin\"` } type PluginA struct { AOption string `json:\"aOption\"` } // On the wire, the JSON will look something like this: { \"kind\":\"MyAPIObject\", \"apiVersion\":\"v1\", \"myPlugin\": { \"kind\":\"PluginA\", \"aOption\":\"foo\", }, } So what happens? Decode first uses json or yaml to unmarshal the serialized data into your external MyAPIObject. That causes the raw JSON to be stored, but not unpacked. The next step is to copy (using pkg/conversion) into the internal struct. The runtime package\'s DefaultScheme has conversion functions installed which will unpack the JSON stored in RawExtension, turning it into the correct object type, and storing it in the Object. (TODO: In the case where the object is of an unknown type, a runtime.Unknown object will be created and stored.)
+*/
+class RuntimeRawExtension {
+ static getAttributeTypeMap() {
+ return RuntimeRawExtension.attributeTypeMap;
+ }
+}
+RuntimeRawExtension.discriminator = undefined;
+RuntimeRawExtension.attributeTypeMap = [
+ {
+ "name": "Raw",
+ "baseName": "Raw",
+ "type": "string"
+ }
+];
+exports.RuntimeRawExtension = RuntimeRawExtension;
+//# sourceMappingURL=runtimeRawExtension.js.map
\ No newline at end of file
diff --git a/dist/gen/model/runtimeRawExtension.js.map b/dist/gen/model/runtimeRawExtension.js.map
new file mode 100644
index 0000000000..feb665075a
--- /dev/null
+++ b/dist/gen/model/runtimeRawExtension.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"runtimeRawExtension.js","sourceRoot":"","sources":["../../../src/gen/model/runtimeRawExtension.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAGH;;EAEE;AACF,MAAa,mBAAmB;IAe5B,MAAM,CAAC,mBAAmB;QACtB,OAAO,mBAAmB,CAAC,gBAAgB,CAAC;IAChD,CAAC;;AAXM,iCAAa,GAAuB,SAAS,CAAC;AAE9C,oCAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,KAAK;QACb,UAAU,EAAE,KAAK;QACjB,MAAM,EAAE,QAAQ;KACnB;CAAK,CAAC;AAbf,kDAkBC"}
\ No newline at end of file
diff --git a/dist/gen/model/v1APIGroup.d.ts b/dist/gen/model/v1APIGroup.d.ts
new file mode 100644
index 0000000000..17d24359e9
--- /dev/null
+++ b/dist/gen/model/v1APIGroup.d.ts
@@ -0,0 +1,50 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+import { V1GroupVersionForDiscovery } from './v1GroupVersionForDiscovery';
+import { V1ServerAddressByClientCIDR } from './v1ServerAddressByClientCIDR';
+/**
+* APIGroup contains the name, the supported versions, and the preferred version of a group.
+*/
+export declare class V1APIGroup {
+ /**
+ * APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources
+ */
+ 'apiVersion'?: string;
+ /**
+ * Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
+ */
+ 'kind'?: string;
+ /**
+ * name is the name of the group.
+ */
+ 'name': string;
+ 'preferredVersion'?: V1GroupVersionForDiscovery;
+ /**
+ * a map of client CIDR to server address that is serving this group. This is to help clients reach servers in the most network-efficient way possible. Clients can use the appropriate server address as per the CIDR that they match. In case of multiple matches, clients should use the longest matching CIDR. The server returns only those CIDRs that it thinks that the client can match. For example: the master will return an internal IP CIDR only, if the client reaches the server using an internal IP. Server looks at X-Forwarded-For header or X-Real-Ip header or request.RemoteAddr (in that order) to get the client IP.
+ */
+ 'serverAddressByClientCIDRs'?: Array;
+ /**
+ * versions are the versions supported in this group.
+ */
+ 'versions': Array;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/v1APIGroup.js b/dist/gen/model/v1APIGroup.js
new file mode 100644
index 0000000000..016ee5caae
--- /dev/null
+++ b/dist/gen/model/v1APIGroup.js
@@ -0,0 +1,56 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* APIGroup contains the name, the supported versions, and the preferred version of a group.
+*/
+class V1APIGroup {
+ static getAttributeTypeMap() {
+ return V1APIGroup.attributeTypeMap;
+ }
+}
+V1APIGroup.discriminator = undefined;
+V1APIGroup.attributeTypeMap = [
+ {
+ "name": "apiVersion",
+ "baseName": "apiVersion",
+ "type": "string"
+ },
+ {
+ "name": "kind",
+ "baseName": "kind",
+ "type": "string"
+ },
+ {
+ "name": "name",
+ "baseName": "name",
+ "type": "string"
+ },
+ {
+ "name": "preferredVersion",
+ "baseName": "preferredVersion",
+ "type": "V1GroupVersionForDiscovery"
+ },
+ {
+ "name": "serverAddressByClientCIDRs",
+ "baseName": "serverAddressByClientCIDRs",
+ "type": "Array"
+ },
+ {
+ "name": "versions",
+ "baseName": "versions",
+ "type": "Array"
+ }
+];
+exports.V1APIGroup = V1APIGroup;
+//# sourceMappingURL=v1APIGroup.js.map
\ No newline at end of file
diff --git a/dist/gen/model/v1APIGroup.js.map b/dist/gen/model/v1APIGroup.js.map
new file mode 100644
index 0000000000..8eed571137
--- /dev/null
+++ b/dist/gen/model/v1APIGroup.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"v1APIGroup.js","sourceRoot":"","sources":["../../../src/gen/model/v1APIGroup.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAKH;;EAEE;AACF,MAAa,UAAU;IAyDnB,MAAM,CAAC,mBAAmB;QACtB,OAAO,UAAU,CAAC,gBAAgB,CAAC;IACvC,CAAC;;AApCM,wBAAa,GAAuB,SAAS,CAAC;AAE9C,2BAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,YAAY;QACpB,UAAU,EAAE,YAAY;QACxB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,kBAAkB;QAC1B,UAAU,EAAE,kBAAkB;QAC9B,MAAM,EAAE,4BAA4B;KACvC;IACD;QACI,MAAM,EAAE,4BAA4B;QACpC,UAAU,EAAE,4BAA4B;QACxC,MAAM,EAAE,oCAAoC;KAC/C;IACD;QACI,MAAM,EAAE,UAAU;QAClB,UAAU,EAAE,UAAU;QACtB,MAAM,EAAE,mCAAmC;KAC9C;CAAK,CAAC;AAvDf,gCA4DC"}
\ No newline at end of file
diff --git a/dist/gen/model/v1APIGroupList.d.ts b/dist/gen/model/v1APIGroupList.d.ts
new file mode 100644
index 0000000000..2a608d2b66
--- /dev/null
+++ b/dist/gen/model/v1APIGroupList.d.ts
@@ -0,0 +1,40 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+import { V1APIGroup } from './v1APIGroup';
+/**
+* APIGroupList is a list of APIGroup, to allow clients to discover the API at /apis.
+*/
+export declare class V1APIGroupList {
+ /**
+ * APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources
+ */
+ 'apiVersion'?: string;
+ /**
+ * groups is a list of APIGroup.
+ */
+ 'groups': Array;
+ /**
+ * Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
+ */
+ 'kind'?: string;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/v1APIGroupList.js b/dist/gen/model/v1APIGroupList.js
new file mode 100644
index 0000000000..dd82bddf02
--- /dev/null
+++ b/dist/gen/model/v1APIGroupList.js
@@ -0,0 +1,41 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* APIGroupList is a list of APIGroup, to allow clients to discover the API at /apis.
+*/
+class V1APIGroupList {
+ static getAttributeTypeMap() {
+ return V1APIGroupList.attributeTypeMap;
+ }
+}
+V1APIGroupList.discriminator = undefined;
+V1APIGroupList.attributeTypeMap = [
+ {
+ "name": "apiVersion",
+ "baseName": "apiVersion",
+ "type": "string"
+ },
+ {
+ "name": "groups",
+ "baseName": "groups",
+ "type": "Array"
+ },
+ {
+ "name": "kind",
+ "baseName": "kind",
+ "type": "string"
+ }
+];
+exports.V1APIGroupList = V1APIGroupList;
+//# sourceMappingURL=v1APIGroupList.js.map
\ No newline at end of file
diff --git a/dist/gen/model/v1APIGroupList.js.map b/dist/gen/model/v1APIGroupList.js.map
new file mode 100644
index 0000000000..ed76871bc9
--- /dev/null
+++ b/dist/gen/model/v1APIGroupList.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"v1APIGroupList.js","sourceRoot":"","sources":["../../../src/gen/model/v1APIGroupList.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAIH;;EAEE;AACF,MAAa,cAAc;IAiCvB,MAAM,CAAC,mBAAmB;QACtB,OAAO,cAAc,CAAC,gBAAgB,CAAC;IAC3C,CAAC;;AArBM,4BAAa,GAAuB,SAAS,CAAC;AAE9C,+BAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,YAAY;QACpB,UAAU,EAAE,YAAY;QACxB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,QAAQ;QAChB,UAAU,EAAE,QAAQ;QACpB,MAAM,EAAE,mBAAmB;KAC9B;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,QAAQ;KACnB;CAAK,CAAC;AA/Bf,wCAoCC"}
\ No newline at end of file
diff --git a/dist/gen/model/v1APIResource.d.ts b/dist/gen/model/v1APIResource.d.ts
new file mode 100644
index 0000000000..40b8d0f2bb
--- /dev/null
+++ b/dist/gen/model/v1APIResource.d.ts
@@ -0,0 +1,67 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+/**
+* APIResource specifies the name of a resource and whether it is namespaced.
+*/
+export declare class V1APIResource {
+ /**
+ * categories is a list of the grouped resources this resource belongs to (e.g. \'all\')
+ */
+ 'categories'?: Array;
+ /**
+ * group is the preferred group of the resource. Empty implies the group of the containing resource list. For subresources, this may have a different value, for example: Scale\".
+ */
+ 'group'?: string;
+ /**
+ * kind is the kind for the resource (e.g. \'Foo\' is the kind for a resource \'foo\')
+ */
+ 'kind': string;
+ /**
+ * name is the plural name of the resource.
+ */
+ 'name': string;
+ /**
+ * namespaced indicates if a resource is namespaced or not.
+ */
+ 'namespaced': boolean;
+ /**
+ * shortNames is a list of suggested short names of the resource.
+ */
+ 'shortNames'?: Array;
+ /**
+ * singularName is the singular name of the resource. This allows clients to handle plural and singular opaquely. The singularName is more correct for reporting status on a single item and both singular and plural are allowed from the kubectl CLI interface.
+ */
+ 'singularName': string;
+ /**
+ * The hash value of the storage version, the version this resource is converted to when written to the data store. Value must be treated as opaque by clients. Only equality comparison on the value is valid. This is an alpha feature and may change or be removed in the future. The field is populated by the apiserver only if the StorageVersionHash feature gate is enabled. This field will remain optional even if it graduates.
+ */
+ 'storageVersionHash'?: string;
+ /**
+ * verbs is a list of supported kube verbs (this includes get, list, watch, create, update, patch, delete, deletecollection, and proxy)
+ */
+ 'verbs': Array;
+ /**
+ * version is the preferred version of the resource. Empty implies the version of the containing resource list For subresources, this may have a different value, for example: v1 (while inside a v1beta1 version of the core resource\'s group)\".
+ */
+ 'version'?: string;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/v1APIResource.js b/dist/gen/model/v1APIResource.js
new file mode 100644
index 0000000000..6bcca99759
--- /dev/null
+++ b/dist/gen/model/v1APIResource.js
@@ -0,0 +1,76 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* APIResource specifies the name of a resource and whether it is namespaced.
+*/
+class V1APIResource {
+ static getAttributeTypeMap() {
+ return V1APIResource.attributeTypeMap;
+ }
+}
+V1APIResource.discriminator = undefined;
+V1APIResource.attributeTypeMap = [
+ {
+ "name": "categories",
+ "baseName": "categories",
+ "type": "Array"
+ },
+ {
+ "name": "group",
+ "baseName": "group",
+ "type": "string"
+ },
+ {
+ "name": "kind",
+ "baseName": "kind",
+ "type": "string"
+ },
+ {
+ "name": "name",
+ "baseName": "name",
+ "type": "string"
+ },
+ {
+ "name": "namespaced",
+ "baseName": "namespaced",
+ "type": "boolean"
+ },
+ {
+ "name": "shortNames",
+ "baseName": "shortNames",
+ "type": "Array"
+ },
+ {
+ "name": "singularName",
+ "baseName": "singularName",
+ "type": "string"
+ },
+ {
+ "name": "storageVersionHash",
+ "baseName": "storageVersionHash",
+ "type": "string"
+ },
+ {
+ "name": "verbs",
+ "baseName": "verbs",
+ "type": "Array"
+ },
+ {
+ "name": "version",
+ "baseName": "version",
+ "type": "string"
+ }
+];
+exports.V1APIResource = V1APIResource;
+//# sourceMappingURL=v1APIResource.js.map
\ No newline at end of file
diff --git a/dist/gen/model/v1APIResource.js.map b/dist/gen/model/v1APIResource.js.map
new file mode 100644
index 0000000000..0ed9567c8d
--- /dev/null
+++ b/dist/gen/model/v1APIResource.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"v1APIResource.js","sourceRoot":"","sources":["../../../src/gen/model/v1APIResource.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAGH;;EAEE;AACF,MAAa,aAAa;IAgGtB,MAAM,CAAC,mBAAmB;QACtB,OAAO,aAAa,CAAC,gBAAgB,CAAC;IAC1C,CAAC;;AAxDM,2BAAa,GAAuB,SAAS,CAAC;AAE9C,8BAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,YAAY;QACpB,UAAU,EAAE,YAAY;QACxB,MAAM,EAAE,eAAe;KAC1B;IACD;QACI,MAAM,EAAE,OAAO;QACf,UAAU,EAAE,OAAO;QACnB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,YAAY;QACpB,UAAU,EAAE,YAAY;QACxB,MAAM,EAAE,SAAS;KACpB;IACD;QACI,MAAM,EAAE,YAAY;QACpB,UAAU,EAAE,YAAY;QACxB,MAAM,EAAE,eAAe;KAC1B;IACD;QACI,MAAM,EAAE,cAAc;QACtB,UAAU,EAAE,cAAc;QAC1B,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,oBAAoB;QAC5B,UAAU,EAAE,oBAAoB;QAChC,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,OAAO;QACf,UAAU,EAAE,OAAO;QACnB,MAAM,EAAE,eAAe;KAC1B;IACD;QACI,MAAM,EAAE,SAAS;QACjB,UAAU,EAAE,SAAS;QACrB,MAAM,EAAE,QAAQ;KACnB;CAAK,CAAC;AA9Ff,sCAmGC"}
\ No newline at end of file
diff --git a/dist/gen/model/v1APIResourceList.d.ts b/dist/gen/model/v1APIResourceList.d.ts
new file mode 100644
index 0000000000..9c510bfb0e
--- /dev/null
+++ b/dist/gen/model/v1APIResourceList.d.ts
@@ -0,0 +1,44 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+import { V1APIResource } from './v1APIResource';
+/**
+* APIResourceList is a list of APIResource, it is used to expose the name of the resources supported in a specific group and version, and if the resource is namespaced.
+*/
+export declare class V1APIResourceList {
+ /**
+ * APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources
+ */
+ 'apiVersion'?: string;
+ /**
+ * groupVersion is the group and version this APIResourceList is for.
+ */
+ 'groupVersion': string;
+ /**
+ * Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
+ */
+ 'kind'?: string;
+ /**
+ * resources contains the name of the resources and if they are namespaced.
+ */
+ 'resources': Array;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/v1APIResourceList.js b/dist/gen/model/v1APIResourceList.js
new file mode 100644
index 0000000000..9a6930990f
--- /dev/null
+++ b/dist/gen/model/v1APIResourceList.js
@@ -0,0 +1,46 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* APIResourceList is a list of APIResource, it is used to expose the name of the resources supported in a specific group and version, and if the resource is namespaced.
+*/
+class V1APIResourceList {
+ static getAttributeTypeMap() {
+ return V1APIResourceList.attributeTypeMap;
+ }
+}
+V1APIResourceList.discriminator = undefined;
+V1APIResourceList.attributeTypeMap = [
+ {
+ "name": "apiVersion",
+ "baseName": "apiVersion",
+ "type": "string"
+ },
+ {
+ "name": "groupVersion",
+ "baseName": "groupVersion",
+ "type": "string"
+ },
+ {
+ "name": "kind",
+ "baseName": "kind",
+ "type": "string"
+ },
+ {
+ "name": "resources",
+ "baseName": "resources",
+ "type": "Array"
+ }
+];
+exports.V1APIResourceList = V1APIResourceList;
+//# sourceMappingURL=v1APIResourceList.js.map
\ No newline at end of file
diff --git a/dist/gen/model/v1APIResourceList.js.map b/dist/gen/model/v1APIResourceList.js.map
new file mode 100644
index 0000000000..acd6b74580
--- /dev/null
+++ b/dist/gen/model/v1APIResourceList.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"v1APIResourceList.js","sourceRoot":"","sources":["../../../src/gen/model/v1APIResourceList.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAIH;;EAEE;AACF,MAAa,iBAAiB;IA0C1B,MAAM,CAAC,mBAAmB;QACtB,OAAO,iBAAiB,CAAC,gBAAgB,CAAC;IAC9C,CAAC;;AA1BM,+BAAa,GAAuB,SAAS,CAAC;AAE9C,kCAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,YAAY;QACpB,UAAU,EAAE,YAAY;QACxB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,cAAc;QACtB,UAAU,EAAE,cAAc;QAC1B,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,WAAW;QACnB,UAAU,EAAE,WAAW;QACvB,MAAM,EAAE,sBAAsB;KACjC;CAAK,CAAC;AAxCf,8CA6CC"}
\ No newline at end of file
diff --git a/dist/gen/model/v1APIService.d.ts b/dist/gen/model/v1APIService.d.ts
new file mode 100644
index 0000000000..31aad5b909
--- /dev/null
+++ b/dist/gen/model/v1APIService.d.ts
@@ -0,0 +1,41 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+import { V1APIServiceSpec } from './v1APIServiceSpec';
+import { V1APIServiceStatus } from './v1APIServiceStatus';
+import { V1ObjectMeta } from './v1ObjectMeta';
+/**
+* APIService represents a server for a particular GroupVersion. Name must be \"version.group\".
+*/
+export declare class V1APIService {
+ /**
+ * APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources
+ */
+ 'apiVersion'?: string;
+ /**
+ * Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
+ */
+ 'kind'?: string;
+ 'metadata'?: V1ObjectMeta;
+ 'spec'?: V1APIServiceSpec;
+ 'status'?: V1APIServiceStatus;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/v1APIService.js b/dist/gen/model/v1APIService.js
new file mode 100644
index 0000000000..6c1e7abe9e
--- /dev/null
+++ b/dist/gen/model/v1APIService.js
@@ -0,0 +1,51 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* APIService represents a server for a particular GroupVersion. Name must be \"version.group\".
+*/
+class V1APIService {
+ static getAttributeTypeMap() {
+ return V1APIService.attributeTypeMap;
+ }
+}
+V1APIService.discriminator = undefined;
+V1APIService.attributeTypeMap = [
+ {
+ "name": "apiVersion",
+ "baseName": "apiVersion",
+ "type": "string"
+ },
+ {
+ "name": "kind",
+ "baseName": "kind",
+ "type": "string"
+ },
+ {
+ "name": "metadata",
+ "baseName": "metadata",
+ "type": "V1ObjectMeta"
+ },
+ {
+ "name": "spec",
+ "baseName": "spec",
+ "type": "V1APIServiceSpec"
+ },
+ {
+ "name": "status",
+ "baseName": "status",
+ "type": "V1APIServiceStatus"
+ }
+];
+exports.V1APIService = V1APIService;
+//# sourceMappingURL=v1APIService.js.map
\ No newline at end of file
diff --git a/dist/gen/model/v1APIService.js.map b/dist/gen/model/v1APIService.js.map
new file mode 100644
index 0000000000..3f698de54b
--- /dev/null
+++ b/dist/gen/model/v1APIService.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"v1APIService.js","sourceRoot":"","sources":["../../../src/gen/model/v1APIService.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAMH;;EAEE;AACF,MAAa,YAAY;IA0CrB,MAAM,CAAC,mBAAmB;QACtB,OAAO,YAAY,CAAC,gBAAgB,CAAC;IACzC,CAAC;;AA/BM,0BAAa,GAAuB,SAAS,CAAC;AAE9C,6BAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,YAAY;QACpB,UAAU,EAAE,YAAY;QACxB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,UAAU;QAClB,UAAU,EAAE,UAAU;QACtB,MAAM,EAAE,cAAc;KACzB;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,kBAAkB;KAC7B;IACD;QACI,MAAM,EAAE,QAAQ;QAChB,UAAU,EAAE,QAAQ;QACpB,MAAM,EAAE,oBAAoB;KAC/B;CAAK,CAAC;AAxCf,oCA6CC"}
\ No newline at end of file
diff --git a/dist/gen/model/v1APIServiceCondition.d.ts b/dist/gen/model/v1APIServiceCondition.d.ts
new file mode 100644
index 0000000000..4c97f1dace
--- /dev/null
+++ b/dist/gen/model/v1APIServiceCondition.d.ts
@@ -0,0 +1,47 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+/**
+* APIServiceCondition describes the state of an APIService at a particular point
+*/
+export declare class V1APIServiceCondition {
+ /**
+ * Last time the condition transitioned from one status to another.
+ */
+ 'lastTransitionTime'?: Date;
+ /**
+ * Human-readable message indicating details about last transition.
+ */
+ 'message'?: string;
+ /**
+ * Unique, one-word, CamelCase reason for the condition\'s last transition.
+ */
+ 'reason'?: string;
+ /**
+ * Status is the status of the condition. Can be True, False, Unknown.
+ */
+ 'status': string;
+ /**
+ * Type is the type of the condition.
+ */
+ 'type': string;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/v1APIServiceCondition.js b/dist/gen/model/v1APIServiceCondition.js
new file mode 100644
index 0000000000..d88dc5dd1c
--- /dev/null
+++ b/dist/gen/model/v1APIServiceCondition.js
@@ -0,0 +1,51 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* APIServiceCondition describes the state of an APIService at a particular point
+*/
+class V1APIServiceCondition {
+ static getAttributeTypeMap() {
+ return V1APIServiceCondition.attributeTypeMap;
+ }
+}
+V1APIServiceCondition.discriminator = undefined;
+V1APIServiceCondition.attributeTypeMap = [
+ {
+ "name": "lastTransitionTime",
+ "baseName": "lastTransitionTime",
+ "type": "Date"
+ },
+ {
+ "name": "message",
+ "baseName": "message",
+ "type": "string"
+ },
+ {
+ "name": "reason",
+ "baseName": "reason",
+ "type": "string"
+ },
+ {
+ "name": "status",
+ "baseName": "status",
+ "type": "string"
+ },
+ {
+ "name": "type",
+ "baseName": "type",
+ "type": "string"
+ }
+];
+exports.V1APIServiceCondition = V1APIServiceCondition;
+//# sourceMappingURL=v1APIServiceCondition.js.map
\ No newline at end of file
diff --git a/dist/gen/model/v1APIServiceCondition.js.map b/dist/gen/model/v1APIServiceCondition.js.map
new file mode 100644
index 0000000000..fb7fff57df
--- /dev/null
+++ b/dist/gen/model/v1APIServiceCondition.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"v1APIServiceCondition.js","sourceRoot":"","sources":["../../../src/gen/model/v1APIServiceCondition.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAGH;;EAEE;AACF,MAAa,qBAAqB;IAmD9B,MAAM,CAAC,mBAAmB;QACtB,OAAO,qBAAqB,CAAC,gBAAgB,CAAC;IAClD,CAAC;;AA/BM,mCAAa,GAAuB,SAAS,CAAC;AAE9C,sCAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,oBAAoB;QAC5B,UAAU,EAAE,oBAAoB;QAChC,MAAM,EAAE,MAAM;KACjB;IACD;QACI,MAAM,EAAE,SAAS;QACjB,UAAU,EAAE,SAAS;QACrB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,QAAQ;QAChB,UAAU,EAAE,QAAQ;QACpB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,QAAQ;QAChB,UAAU,EAAE,QAAQ;QACpB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,QAAQ;KACnB;CAAK,CAAC;AAjDf,sDAsDC"}
\ No newline at end of file
diff --git a/dist/gen/model/v1APIServiceList.d.ts b/dist/gen/model/v1APIServiceList.d.ts
new file mode 100644
index 0000000000..720c583c07
--- /dev/null
+++ b/dist/gen/model/v1APIServiceList.d.ts
@@ -0,0 +1,39 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+import { V1APIService } from './v1APIService';
+import { V1ListMeta } from './v1ListMeta';
+/**
+* APIServiceList is a list of APIService objects.
+*/
+export declare class V1APIServiceList {
+ /**
+ * APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources
+ */
+ 'apiVersion'?: string;
+ 'items': Array;
+ /**
+ * Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
+ */
+ 'kind'?: string;
+ 'metadata'?: V1ListMeta;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/v1APIServiceList.js b/dist/gen/model/v1APIServiceList.js
new file mode 100644
index 0000000000..d35cd87ffc
--- /dev/null
+++ b/dist/gen/model/v1APIServiceList.js
@@ -0,0 +1,46 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* APIServiceList is a list of APIService objects.
+*/
+class V1APIServiceList {
+ static getAttributeTypeMap() {
+ return V1APIServiceList.attributeTypeMap;
+ }
+}
+V1APIServiceList.discriminator = undefined;
+V1APIServiceList.attributeTypeMap = [
+ {
+ "name": "apiVersion",
+ "baseName": "apiVersion",
+ "type": "string"
+ },
+ {
+ "name": "items",
+ "baseName": "items",
+ "type": "Array"
+ },
+ {
+ "name": "kind",
+ "baseName": "kind",
+ "type": "string"
+ },
+ {
+ "name": "metadata",
+ "baseName": "metadata",
+ "type": "V1ListMeta"
+ }
+];
+exports.V1APIServiceList = V1APIServiceList;
+//# sourceMappingURL=v1APIServiceList.js.map
\ No newline at end of file
diff --git a/dist/gen/model/v1APIServiceList.js.map b/dist/gen/model/v1APIServiceList.js.map
new file mode 100644
index 0000000000..2dd2a5cd82
--- /dev/null
+++ b/dist/gen/model/v1APIServiceList.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"v1APIServiceList.js","sourceRoot":"","sources":["../../../src/gen/model/v1APIServiceList.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAKH;;EAEE;AACF,MAAa,gBAAgB;IAoCzB,MAAM,CAAC,mBAAmB;QACtB,OAAO,gBAAgB,CAAC,gBAAgB,CAAC;IAC7C,CAAC;;AA1BM,8BAAa,GAAuB,SAAS,CAAC;AAE9C,iCAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,YAAY;QACpB,UAAU,EAAE,YAAY;QACxB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,OAAO;QACf,UAAU,EAAE,OAAO;QACnB,MAAM,EAAE,qBAAqB;KAChC;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,UAAU;QAClB,UAAU,EAAE,UAAU;QACtB,MAAM,EAAE,YAAY;KACvB;CAAK,CAAC;AAlCf,4CAuCC"}
\ No newline at end of file
diff --git a/dist/gen/model/v1APIServiceSpec.d.ts b/dist/gen/model/v1APIServiceSpec.d.ts
new file mode 100644
index 0000000000..ac406ebab9
--- /dev/null
+++ b/dist/gen/model/v1APIServiceSpec.d.ts
@@ -0,0 +1,53 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+import { V1ServiceReference } from './v1ServiceReference';
+/**
+* APIServiceSpec contains information for locating and communicating with a server. Only https is supported, though you are able to disable certificate verification.
+*/
+export declare class V1APIServiceSpec {
+ /**
+ * CABundle is a PEM encoded CA bundle which will be used to validate an API server\'s serving certificate. If unspecified, system trust roots on the apiserver are used.
+ */
+ 'caBundle'?: string;
+ /**
+ * Group is the API group name this server hosts
+ */
+ 'group'?: string;
+ /**
+ * GroupPriorityMininum is the priority this group should have at least. Higher priority means that the group is preferred by clients over lower priority ones. Note that other versions of this group might specify even higher GroupPriorityMininum values such that the whole group gets a higher priority. The primary sort is based on GroupPriorityMinimum, ordered highest number to lowest (20 before 10). The secondary sort is based on the alphabetical comparison of the name of the object. (v1.bar before v1.foo) We\'d recommend something like: *.k8s.io (except extensions) at 18000 and PaaSes (OpenShift, Deis) are recommended to be in the 2000s
+ */
+ 'groupPriorityMinimum': number;
+ /**
+ * InsecureSkipTLSVerify disables TLS certificate verification when communicating with this server. This is strongly discouraged. You should use the CABundle instead.
+ */
+ 'insecureSkipTLSVerify'?: boolean;
+ 'service': V1ServiceReference;
+ /**
+ * Version is the API version this server hosts. For example, \"v1\"
+ */
+ 'version'?: string;
+ /**
+ * VersionPriority controls the ordering of this API version inside of its group. Must be greater than zero. The primary sort is based on VersionPriority, ordered highest to lowest (20 before 10). Since it\'s inside of a group, the number can be small, probably in the 10s. In case of equal version priorities, the version string will be used to compute the order inside a group. If the version string is \"kube-like\", it will sort above non \"kube-like\" version strings, which are ordered lexicographically. \"Kube-like\" versions start with a \"v\", then are followed by a number (the major version), then optionally the string \"alpha\" or \"beta\" and another number (the minor version). These are sorted first by GA > beta > alpha (where GA is a version with no suffix such as beta or alpha), and then by comparing major version, then minor version. An example sorted list of versions: v10, v2, v1, v11beta2, v10beta3, v3beta1, v12alpha1, v11alpha2, foo1, foo10.
+ */
+ 'versionPriority': number;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/v1APIServiceSpec.js b/dist/gen/model/v1APIServiceSpec.js
new file mode 100644
index 0000000000..24fab3d753
--- /dev/null
+++ b/dist/gen/model/v1APIServiceSpec.js
@@ -0,0 +1,61 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* APIServiceSpec contains information for locating and communicating with a server. Only https is supported, though you are able to disable certificate verification.
+*/
+class V1APIServiceSpec {
+ static getAttributeTypeMap() {
+ return V1APIServiceSpec.attributeTypeMap;
+ }
+}
+V1APIServiceSpec.discriminator = undefined;
+V1APIServiceSpec.attributeTypeMap = [
+ {
+ "name": "caBundle",
+ "baseName": "caBundle",
+ "type": "string"
+ },
+ {
+ "name": "group",
+ "baseName": "group",
+ "type": "string"
+ },
+ {
+ "name": "groupPriorityMinimum",
+ "baseName": "groupPriorityMinimum",
+ "type": "number"
+ },
+ {
+ "name": "insecureSkipTLSVerify",
+ "baseName": "insecureSkipTLSVerify",
+ "type": "boolean"
+ },
+ {
+ "name": "service",
+ "baseName": "service",
+ "type": "V1ServiceReference"
+ },
+ {
+ "name": "version",
+ "baseName": "version",
+ "type": "string"
+ },
+ {
+ "name": "versionPriority",
+ "baseName": "versionPriority",
+ "type": "number"
+ }
+];
+exports.V1APIServiceSpec = V1APIServiceSpec;
+//# sourceMappingURL=v1APIServiceSpec.js.map
\ No newline at end of file
diff --git a/dist/gen/model/v1APIServiceSpec.js.map b/dist/gen/model/v1APIServiceSpec.js.map
new file mode 100644
index 0000000000..a94cb6ccda
--- /dev/null
+++ b/dist/gen/model/v1APIServiceSpec.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"v1APIServiceSpec.js","sourceRoot":"","sources":["../../../src/gen/model/v1APIServiceSpec.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAIH;;EAEE;AACF,MAAa,gBAAgB;IAkEzB,MAAM,CAAC,mBAAmB;QACtB,OAAO,gBAAgB,CAAC,gBAAgB,CAAC;IAC7C,CAAC;;AAzCM,8BAAa,GAAuB,SAAS,CAAC;AAE9C,iCAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,UAAU;QAClB,UAAU,EAAE,UAAU;QACtB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,OAAO;QACf,UAAU,EAAE,OAAO;QACnB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,sBAAsB;QAC9B,UAAU,EAAE,sBAAsB;QAClC,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,uBAAuB;QAC/B,UAAU,EAAE,uBAAuB;QACnC,MAAM,EAAE,SAAS;KACpB;IACD;QACI,MAAM,EAAE,SAAS;QACjB,UAAU,EAAE,SAAS;QACrB,MAAM,EAAE,oBAAoB;KAC/B;IACD;QACI,MAAM,EAAE,SAAS;QACjB,UAAU,EAAE,SAAS;QACrB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,iBAAiB;QACzB,UAAU,EAAE,iBAAiB;QAC7B,MAAM,EAAE,QAAQ;KACnB;CAAK,CAAC;AAhEf,4CAqEC"}
\ No newline at end of file
diff --git a/dist/gen/model/v1APIServiceStatus.d.ts b/dist/gen/model/v1APIServiceStatus.d.ts
new file mode 100644
index 0000000000..accecdd69c
--- /dev/null
+++ b/dist/gen/model/v1APIServiceStatus.d.ts
@@ -0,0 +1,32 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+import { V1APIServiceCondition } from './v1APIServiceCondition';
+/**
+* APIServiceStatus contains derived information about an API server
+*/
+export declare class V1APIServiceStatus {
+ /**
+ * Current service state of apiService.
+ */
+ 'conditions'?: Array;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/v1APIServiceStatus.js b/dist/gen/model/v1APIServiceStatus.js
new file mode 100644
index 0000000000..30e73d9b09
--- /dev/null
+++ b/dist/gen/model/v1APIServiceStatus.js
@@ -0,0 +1,31 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* APIServiceStatus contains derived information about an API server
+*/
+class V1APIServiceStatus {
+ static getAttributeTypeMap() {
+ return V1APIServiceStatus.attributeTypeMap;
+ }
+}
+V1APIServiceStatus.discriminator = undefined;
+V1APIServiceStatus.attributeTypeMap = [
+ {
+ "name": "conditions",
+ "baseName": "conditions",
+ "type": "Array"
+ }
+];
+exports.V1APIServiceStatus = V1APIServiceStatus;
+//# sourceMappingURL=v1APIServiceStatus.js.map
\ No newline at end of file
diff --git a/dist/gen/model/v1APIServiceStatus.js.map b/dist/gen/model/v1APIServiceStatus.js.map
new file mode 100644
index 0000000000..b510cb5fbf
--- /dev/null
+++ b/dist/gen/model/v1APIServiceStatus.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"v1APIServiceStatus.js","sourceRoot":"","sources":["../../../src/gen/model/v1APIServiceStatus.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAIH;;EAEE;AACF,MAAa,kBAAkB;IAe3B,MAAM,CAAC,mBAAmB;QACtB,OAAO,kBAAkB,CAAC,gBAAgB,CAAC;IAC/C,CAAC;;AAXM,gCAAa,GAAuB,SAAS,CAAC;AAE9C,mCAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,YAAY;QACpB,UAAU,EAAE,YAAY;QACxB,MAAM,EAAE,8BAA8B;KACzC;CAAK,CAAC;AAbf,gDAkBC"}
\ No newline at end of file
diff --git a/dist/gen/model/v1APIVersions.d.ts b/dist/gen/model/v1APIVersions.d.ts
new file mode 100644
index 0000000000..770dc1c323
--- /dev/null
+++ b/dist/gen/model/v1APIVersions.d.ts
@@ -0,0 +1,44 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+import { V1ServerAddressByClientCIDR } from './v1ServerAddressByClientCIDR';
+/**
+* APIVersions lists the versions that are available, to allow clients to discover the API at /api, which is the root path of the legacy v1 API.
+*/
+export declare class V1APIVersions {
+ /**
+ * APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources
+ */
+ 'apiVersion'?: string;
+ /**
+ * Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
+ */
+ 'kind'?: string;
+ /**
+ * a map of client CIDR to server address that is serving this group. This is to help clients reach servers in the most network-efficient way possible. Clients can use the appropriate server address as per the CIDR that they match. In case of multiple matches, clients should use the longest matching CIDR. The server returns only those CIDRs that it thinks that the client can match. For example: the master will return an internal IP CIDR only, if the client reaches the server using an internal IP. Server looks at X-Forwarded-For header or X-Real-Ip header or request.RemoteAddr (in that order) to get the client IP.
+ */
+ 'serverAddressByClientCIDRs': Array;
+ /**
+ * versions are the api versions that are available.
+ */
+ 'versions': Array;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/v1APIVersions.js b/dist/gen/model/v1APIVersions.js
new file mode 100644
index 0000000000..c3aacc08e3
--- /dev/null
+++ b/dist/gen/model/v1APIVersions.js
@@ -0,0 +1,46 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* APIVersions lists the versions that are available, to allow clients to discover the API at /api, which is the root path of the legacy v1 API.
+*/
+class V1APIVersions {
+ static getAttributeTypeMap() {
+ return V1APIVersions.attributeTypeMap;
+ }
+}
+V1APIVersions.discriminator = undefined;
+V1APIVersions.attributeTypeMap = [
+ {
+ "name": "apiVersion",
+ "baseName": "apiVersion",
+ "type": "string"
+ },
+ {
+ "name": "kind",
+ "baseName": "kind",
+ "type": "string"
+ },
+ {
+ "name": "serverAddressByClientCIDRs",
+ "baseName": "serverAddressByClientCIDRs",
+ "type": "Array"
+ },
+ {
+ "name": "versions",
+ "baseName": "versions",
+ "type": "Array"
+ }
+];
+exports.V1APIVersions = V1APIVersions;
+//# sourceMappingURL=v1APIVersions.js.map
\ No newline at end of file
diff --git a/dist/gen/model/v1APIVersions.js.map b/dist/gen/model/v1APIVersions.js.map
new file mode 100644
index 0000000000..9a9f280472
--- /dev/null
+++ b/dist/gen/model/v1APIVersions.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"v1APIVersions.js","sourceRoot":"","sources":["../../../src/gen/model/v1APIVersions.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAIH;;EAEE;AACF,MAAa,aAAa;IA0CtB,MAAM,CAAC,mBAAmB;QACtB,OAAO,aAAa,CAAC,gBAAgB,CAAC;IAC1C,CAAC;;AA1BM,2BAAa,GAAuB,SAAS,CAAC;AAE9C,8BAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,YAAY;QACpB,UAAU,EAAE,YAAY;QACxB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,4BAA4B;QACpC,UAAU,EAAE,4BAA4B;QACxC,MAAM,EAAE,oCAAoC;KAC/C;IACD;QACI,MAAM,EAAE,UAAU;QAClB,UAAU,EAAE,UAAU;QACtB,MAAM,EAAE,eAAe;KAC1B;CAAK,CAAC;AAxCf,sCA6CC"}
\ No newline at end of file
diff --git a/dist/gen/model/v1AWSElasticBlockStoreVolumeSource.d.ts b/dist/gen/model/v1AWSElasticBlockStoreVolumeSource.d.ts
new file mode 100644
index 0000000000..4fae21b80e
--- /dev/null
+++ b/dist/gen/model/v1AWSElasticBlockStoreVolumeSource.d.ts
@@ -0,0 +1,43 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+/**
+* Represents a Persistent Disk resource in AWS. An AWS EBS disk must exist before mounting to a container. The disk must also be in the same AWS zone as the kubelet. An AWS EBS disk can only be mounted as read/write once. AWS EBS volumes support ownership management and SELinux relabeling.
+*/
+export declare class V1AWSElasticBlockStoreVolumeSource {
+ /**
+ * Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore
+ */
+ 'fsType'?: string;
+ /**
+ * The partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as \"1\". Similarly, the volume partition for /dev/sda is \"0\" (or you can leave the property empty).
+ */
+ 'partition'?: number;
+ /**
+ * Specify \"true\" to force and set the ReadOnly property in VolumeMounts to \"true\". If omitted, the default is \"false\". More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore
+ */
+ 'readOnly'?: boolean;
+ /**
+ * Unique ID of the persistent disk resource in AWS (Amazon EBS volume). More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore
+ */
+ 'volumeID': string;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/v1AWSElasticBlockStoreVolumeSource.js b/dist/gen/model/v1AWSElasticBlockStoreVolumeSource.js
new file mode 100644
index 0000000000..f60c72121f
--- /dev/null
+++ b/dist/gen/model/v1AWSElasticBlockStoreVolumeSource.js
@@ -0,0 +1,46 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* Represents a Persistent Disk resource in AWS. An AWS EBS disk must exist before mounting to a container. The disk must also be in the same AWS zone as the kubelet. An AWS EBS disk can only be mounted as read/write once. AWS EBS volumes support ownership management and SELinux relabeling.
+*/
+class V1AWSElasticBlockStoreVolumeSource {
+ static getAttributeTypeMap() {
+ return V1AWSElasticBlockStoreVolumeSource.attributeTypeMap;
+ }
+}
+V1AWSElasticBlockStoreVolumeSource.discriminator = undefined;
+V1AWSElasticBlockStoreVolumeSource.attributeTypeMap = [
+ {
+ "name": "fsType",
+ "baseName": "fsType",
+ "type": "string"
+ },
+ {
+ "name": "partition",
+ "baseName": "partition",
+ "type": "number"
+ },
+ {
+ "name": "readOnly",
+ "baseName": "readOnly",
+ "type": "boolean"
+ },
+ {
+ "name": "volumeID",
+ "baseName": "volumeID",
+ "type": "string"
+ }
+];
+exports.V1AWSElasticBlockStoreVolumeSource = V1AWSElasticBlockStoreVolumeSource;
+//# sourceMappingURL=v1AWSElasticBlockStoreVolumeSource.js.map
\ No newline at end of file
diff --git a/dist/gen/model/v1AWSElasticBlockStoreVolumeSource.js.map b/dist/gen/model/v1AWSElasticBlockStoreVolumeSource.js.map
new file mode 100644
index 0000000000..645df1cc85
--- /dev/null
+++ b/dist/gen/model/v1AWSElasticBlockStoreVolumeSource.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"v1AWSElasticBlockStoreVolumeSource.js","sourceRoot":"","sources":["../../../src/gen/model/v1AWSElasticBlockStoreVolumeSource.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAGH;;EAEE;AACF,MAAa,kCAAkC;IA0C3C,MAAM,CAAC,mBAAmB;QACtB,OAAO,kCAAkC,CAAC,gBAAgB,CAAC;IAC/D,CAAC;;AA1BM,gDAAa,GAAuB,SAAS,CAAC;AAE9C,mDAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,QAAQ;QAChB,UAAU,EAAE,QAAQ;QACpB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,WAAW;QACnB,UAAU,EAAE,WAAW;QACvB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,UAAU;QAClB,UAAU,EAAE,UAAU;QACtB,MAAM,EAAE,SAAS;KACpB;IACD;QACI,MAAM,EAAE,UAAU;QAClB,UAAU,EAAE,UAAU;QACtB,MAAM,EAAE,QAAQ;KACnB;CAAK,CAAC;AAxCf,gFA6CC"}
\ No newline at end of file
diff --git a/dist/gen/model/v1Affinity.d.ts b/dist/gen/model/v1Affinity.d.ts
new file mode 100644
index 0000000000..05bf1bb65a
--- /dev/null
+++ b/dist/gen/model/v1Affinity.d.ts
@@ -0,0 +1,33 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+import { V1NodeAffinity } from './v1NodeAffinity';
+import { V1PodAffinity } from './v1PodAffinity';
+import { V1PodAntiAffinity } from './v1PodAntiAffinity';
+/**
+* Affinity is a group of affinity scheduling rules.
+*/
+export declare class V1Affinity {
+ 'nodeAffinity'?: V1NodeAffinity;
+ 'podAffinity'?: V1PodAffinity;
+ 'podAntiAffinity'?: V1PodAntiAffinity;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/v1Affinity.js b/dist/gen/model/v1Affinity.js
new file mode 100644
index 0000000000..76fadf122e
--- /dev/null
+++ b/dist/gen/model/v1Affinity.js
@@ -0,0 +1,41 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* Affinity is a group of affinity scheduling rules.
+*/
+class V1Affinity {
+ static getAttributeTypeMap() {
+ return V1Affinity.attributeTypeMap;
+ }
+}
+V1Affinity.discriminator = undefined;
+V1Affinity.attributeTypeMap = [
+ {
+ "name": "nodeAffinity",
+ "baseName": "nodeAffinity",
+ "type": "V1NodeAffinity"
+ },
+ {
+ "name": "podAffinity",
+ "baseName": "podAffinity",
+ "type": "V1PodAffinity"
+ },
+ {
+ "name": "podAntiAffinity",
+ "baseName": "podAntiAffinity",
+ "type": "V1PodAntiAffinity"
+ }
+];
+exports.V1Affinity = V1Affinity;
+//# sourceMappingURL=v1Affinity.js.map
\ No newline at end of file
diff --git a/dist/gen/model/v1Affinity.js.map b/dist/gen/model/v1Affinity.js.map
new file mode 100644
index 0000000000..618e8a639b
--- /dev/null
+++ b/dist/gen/model/v1Affinity.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"v1Affinity.js","sourceRoot":"","sources":["../../../src/gen/model/v1Affinity.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAMH;;EAEE;AACF,MAAa,UAAU;IAwBnB,MAAM,CAAC,mBAAmB;QACtB,OAAO,UAAU,CAAC,gBAAgB,CAAC;IACvC,CAAC;;AArBM,wBAAa,GAAuB,SAAS,CAAC;AAE9C,2BAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,cAAc;QACtB,UAAU,EAAE,cAAc;QAC1B,MAAM,EAAE,gBAAgB;KAC3B;IACD;QACI,MAAM,EAAE,aAAa;QACrB,UAAU,EAAE,aAAa;QACzB,MAAM,EAAE,eAAe;KAC1B;IACD;QACI,MAAM,EAAE,iBAAiB;QACzB,UAAU,EAAE,iBAAiB;QAC7B,MAAM,EAAE,mBAAmB;KAC9B;CAAK,CAAC;AAtBf,gCA2BC"}
\ No newline at end of file
diff --git a/dist/gen/model/v1AggregationRule.d.ts b/dist/gen/model/v1AggregationRule.d.ts
new file mode 100644
index 0000000000..181e5e39fa
--- /dev/null
+++ b/dist/gen/model/v1AggregationRule.d.ts
@@ -0,0 +1,32 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+import { V1LabelSelector } from './v1LabelSelector';
+/**
+* AggregationRule describes how to locate ClusterRoles to aggregate into the ClusterRole
+*/
+export declare class V1AggregationRule {
+ /**
+ * ClusterRoleSelectors holds a list of selectors which will be used to find ClusterRoles and create the rules. If any of the selectors match, then the ClusterRole\'s permissions will be added
+ */
+ 'clusterRoleSelectors'?: Array;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/v1AggregationRule.js b/dist/gen/model/v1AggregationRule.js
new file mode 100644
index 0000000000..6be3f4b4f3
--- /dev/null
+++ b/dist/gen/model/v1AggregationRule.js
@@ -0,0 +1,31 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* AggregationRule describes how to locate ClusterRoles to aggregate into the ClusterRole
+*/
+class V1AggregationRule {
+ static getAttributeTypeMap() {
+ return V1AggregationRule.attributeTypeMap;
+ }
+}
+V1AggregationRule.discriminator = undefined;
+V1AggregationRule.attributeTypeMap = [
+ {
+ "name": "clusterRoleSelectors",
+ "baseName": "clusterRoleSelectors",
+ "type": "Array"
+ }
+];
+exports.V1AggregationRule = V1AggregationRule;
+//# sourceMappingURL=v1AggregationRule.js.map
\ No newline at end of file
diff --git a/dist/gen/model/v1AggregationRule.js.map b/dist/gen/model/v1AggregationRule.js.map
new file mode 100644
index 0000000000..ce06b6a5b7
--- /dev/null
+++ b/dist/gen/model/v1AggregationRule.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"v1AggregationRule.js","sourceRoot":"","sources":["../../../src/gen/model/v1AggregationRule.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAIH;;EAEE;AACF,MAAa,iBAAiB;IAe1B,MAAM,CAAC,mBAAmB;QACtB,OAAO,iBAAiB,CAAC,gBAAgB,CAAC;IAC9C,CAAC;;AAXM,+BAAa,GAAuB,SAAS,CAAC;AAE9C,kCAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,sBAAsB;QAC9B,UAAU,EAAE,sBAAsB;QAClC,MAAM,EAAE,wBAAwB;KACnC;CAAK,CAAC;AAbf,8CAkBC"}
\ No newline at end of file
diff --git a/dist/gen/model/v1AttachedVolume.d.ts b/dist/gen/model/v1AttachedVolume.d.ts
new file mode 100644
index 0000000000..968f25d684
--- /dev/null
+++ b/dist/gen/model/v1AttachedVolume.d.ts
@@ -0,0 +1,35 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+/**
+* AttachedVolume describes a volume attached to a node
+*/
+export declare class V1AttachedVolume {
+ /**
+ * DevicePath represents the device path where the volume should be available
+ */
+ 'devicePath': string;
+ /**
+ * Name of the attached volume
+ */
+ 'name': string;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/v1AttachedVolume.js b/dist/gen/model/v1AttachedVolume.js
new file mode 100644
index 0000000000..2a8bf68fd1
--- /dev/null
+++ b/dist/gen/model/v1AttachedVolume.js
@@ -0,0 +1,36 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* AttachedVolume describes a volume attached to a node
+*/
+class V1AttachedVolume {
+ static getAttributeTypeMap() {
+ return V1AttachedVolume.attributeTypeMap;
+ }
+}
+V1AttachedVolume.discriminator = undefined;
+V1AttachedVolume.attributeTypeMap = [
+ {
+ "name": "devicePath",
+ "baseName": "devicePath",
+ "type": "string"
+ },
+ {
+ "name": "name",
+ "baseName": "name",
+ "type": "string"
+ }
+];
+exports.V1AttachedVolume = V1AttachedVolume;
+//# sourceMappingURL=v1AttachedVolume.js.map
\ No newline at end of file
diff --git a/dist/gen/model/v1AttachedVolume.js.map b/dist/gen/model/v1AttachedVolume.js.map
new file mode 100644
index 0000000000..7844a9a1f1
--- /dev/null
+++ b/dist/gen/model/v1AttachedVolume.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"v1AttachedVolume.js","sourceRoot":"","sources":["../../../src/gen/model/v1AttachedVolume.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAGH;;EAEE;AACF,MAAa,gBAAgB;IAwBzB,MAAM,CAAC,mBAAmB;QACtB,OAAO,gBAAgB,CAAC,gBAAgB,CAAC;IAC7C,CAAC;;AAhBM,8BAAa,GAAuB,SAAS,CAAC;AAE9C,iCAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,YAAY;QACpB,UAAU,EAAE,YAAY;QACxB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,QAAQ;KACnB;CAAK,CAAC;AAtBf,4CA2BC"}
\ No newline at end of file
diff --git a/dist/gen/model/v1AzureDiskVolumeSource.d.ts b/dist/gen/model/v1AzureDiskVolumeSource.d.ts
new file mode 100644
index 0000000000..955692c42c
--- /dev/null
+++ b/dist/gen/model/v1AzureDiskVolumeSource.d.ts
@@ -0,0 +1,51 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+/**
+* AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.
+*/
+export declare class V1AzureDiskVolumeSource {
+ /**
+ * Host Caching mode: None, Read Only, Read Write.
+ */
+ 'cachingMode'?: string;
+ /**
+ * The Name of the data disk in the blob storage
+ */
+ 'diskName': string;
+ /**
+ * The URI the data disk in the blob storage
+ */
+ 'diskURI': string;
+ /**
+ * Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.
+ */
+ 'fsType'?: string;
+ /**
+ * Expected values Shared: multiple blob disks per storage account Dedicated: single blob disk per storage account Managed: azure managed data disk (only in managed availability set). defaults to shared
+ */
+ 'kind'?: string;
+ /**
+ * Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.
+ */
+ 'readOnly'?: boolean;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/v1AzureDiskVolumeSource.js b/dist/gen/model/v1AzureDiskVolumeSource.js
new file mode 100644
index 0000000000..50869babe4
--- /dev/null
+++ b/dist/gen/model/v1AzureDiskVolumeSource.js
@@ -0,0 +1,56 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.
+*/
+class V1AzureDiskVolumeSource {
+ static getAttributeTypeMap() {
+ return V1AzureDiskVolumeSource.attributeTypeMap;
+ }
+}
+V1AzureDiskVolumeSource.discriminator = undefined;
+V1AzureDiskVolumeSource.attributeTypeMap = [
+ {
+ "name": "cachingMode",
+ "baseName": "cachingMode",
+ "type": "string"
+ },
+ {
+ "name": "diskName",
+ "baseName": "diskName",
+ "type": "string"
+ },
+ {
+ "name": "diskURI",
+ "baseName": "diskURI",
+ "type": "string"
+ },
+ {
+ "name": "fsType",
+ "baseName": "fsType",
+ "type": "string"
+ },
+ {
+ "name": "kind",
+ "baseName": "kind",
+ "type": "string"
+ },
+ {
+ "name": "readOnly",
+ "baseName": "readOnly",
+ "type": "boolean"
+ }
+];
+exports.V1AzureDiskVolumeSource = V1AzureDiskVolumeSource;
+//# sourceMappingURL=v1AzureDiskVolumeSource.js.map
\ No newline at end of file
diff --git a/dist/gen/model/v1AzureDiskVolumeSource.js.map b/dist/gen/model/v1AzureDiskVolumeSource.js.map
new file mode 100644
index 0000000000..d16ef31de5
--- /dev/null
+++ b/dist/gen/model/v1AzureDiskVolumeSource.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"v1AzureDiskVolumeSource.js","sourceRoot":"","sources":["../../../src/gen/model/v1AzureDiskVolumeSource.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAGH;;EAEE;AACF,MAAa,uBAAuB;IA4DhC,MAAM,CAAC,mBAAmB;QACtB,OAAO,uBAAuB,CAAC,gBAAgB,CAAC;IACpD,CAAC;;AApCM,qCAAa,GAAuB,SAAS,CAAC;AAE9C,wCAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,aAAa;QACrB,UAAU,EAAE,aAAa;QACzB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,UAAU;QAClB,UAAU,EAAE,UAAU;QACtB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,SAAS;QACjB,UAAU,EAAE,SAAS;QACrB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,QAAQ;QAChB,UAAU,EAAE,QAAQ;QACpB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,UAAU;QAClB,UAAU,EAAE,UAAU;QACtB,MAAM,EAAE,SAAS;KACpB;CAAK,CAAC;AA1Df,0DA+DC"}
\ No newline at end of file
diff --git a/dist/gen/model/v1AzureFilePersistentVolumeSource.d.ts b/dist/gen/model/v1AzureFilePersistentVolumeSource.d.ts
new file mode 100644
index 0000000000..de5d73a7a1
--- /dev/null
+++ b/dist/gen/model/v1AzureFilePersistentVolumeSource.d.ts
@@ -0,0 +1,43 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+/**
+* AzureFile represents an Azure File Service mount on the host and bind mount to the pod.
+*/
+export declare class V1AzureFilePersistentVolumeSource {
+ /**
+ * Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.
+ */
+ 'readOnly'?: boolean;
+ /**
+ * the name of secret that contains Azure Storage Account Name and Key
+ */
+ 'secretName': string;
+ /**
+ * the namespace of the secret that contains Azure Storage Account Name and Key default is the same as the Pod
+ */
+ 'secretNamespace'?: string;
+ /**
+ * Share Name
+ */
+ 'shareName': string;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/v1AzureFilePersistentVolumeSource.js b/dist/gen/model/v1AzureFilePersistentVolumeSource.js
new file mode 100644
index 0000000000..b79f98bc56
--- /dev/null
+++ b/dist/gen/model/v1AzureFilePersistentVolumeSource.js
@@ -0,0 +1,46 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* AzureFile represents an Azure File Service mount on the host and bind mount to the pod.
+*/
+class V1AzureFilePersistentVolumeSource {
+ static getAttributeTypeMap() {
+ return V1AzureFilePersistentVolumeSource.attributeTypeMap;
+ }
+}
+V1AzureFilePersistentVolumeSource.discriminator = undefined;
+V1AzureFilePersistentVolumeSource.attributeTypeMap = [
+ {
+ "name": "readOnly",
+ "baseName": "readOnly",
+ "type": "boolean"
+ },
+ {
+ "name": "secretName",
+ "baseName": "secretName",
+ "type": "string"
+ },
+ {
+ "name": "secretNamespace",
+ "baseName": "secretNamespace",
+ "type": "string"
+ },
+ {
+ "name": "shareName",
+ "baseName": "shareName",
+ "type": "string"
+ }
+];
+exports.V1AzureFilePersistentVolumeSource = V1AzureFilePersistentVolumeSource;
+//# sourceMappingURL=v1AzureFilePersistentVolumeSource.js.map
\ No newline at end of file
diff --git a/dist/gen/model/v1AzureFilePersistentVolumeSource.js.map b/dist/gen/model/v1AzureFilePersistentVolumeSource.js.map
new file mode 100644
index 0000000000..dc61412505
--- /dev/null
+++ b/dist/gen/model/v1AzureFilePersistentVolumeSource.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"v1AzureFilePersistentVolumeSource.js","sourceRoot":"","sources":["../../../src/gen/model/v1AzureFilePersistentVolumeSource.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAGH;;EAEE;AACF,MAAa,iCAAiC;IA0C1C,MAAM,CAAC,mBAAmB;QACtB,OAAO,iCAAiC,CAAC,gBAAgB,CAAC;IAC9D,CAAC;;AA1BM,+CAAa,GAAuB,SAAS,CAAC;AAE9C,kDAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,UAAU;QAClB,UAAU,EAAE,UAAU;QACtB,MAAM,EAAE,SAAS;KACpB;IACD;QACI,MAAM,EAAE,YAAY;QACpB,UAAU,EAAE,YAAY;QACxB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,iBAAiB;QACzB,UAAU,EAAE,iBAAiB;QAC7B,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,WAAW;QACnB,UAAU,EAAE,WAAW;QACvB,MAAM,EAAE,QAAQ;KACnB;CAAK,CAAC;AAxCf,8EA6CC"}
\ No newline at end of file
diff --git a/dist/gen/model/v1AzureFileVolumeSource.d.ts b/dist/gen/model/v1AzureFileVolumeSource.d.ts
new file mode 100644
index 0000000000..d1971a6835
--- /dev/null
+++ b/dist/gen/model/v1AzureFileVolumeSource.d.ts
@@ -0,0 +1,39 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+/**
+* AzureFile represents an Azure File Service mount on the host and bind mount to the pod.
+*/
+export declare class V1AzureFileVolumeSource {
+ /**
+ * Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.
+ */
+ 'readOnly'?: boolean;
+ /**
+ * the name of secret that contains Azure Storage Account Name and Key
+ */
+ 'secretName': string;
+ /**
+ * Share Name
+ */
+ 'shareName': string;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/v1AzureFileVolumeSource.js b/dist/gen/model/v1AzureFileVolumeSource.js
new file mode 100644
index 0000000000..7b15cd6c7a
--- /dev/null
+++ b/dist/gen/model/v1AzureFileVolumeSource.js
@@ -0,0 +1,41 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* AzureFile represents an Azure File Service mount on the host and bind mount to the pod.
+*/
+class V1AzureFileVolumeSource {
+ static getAttributeTypeMap() {
+ return V1AzureFileVolumeSource.attributeTypeMap;
+ }
+}
+V1AzureFileVolumeSource.discriminator = undefined;
+V1AzureFileVolumeSource.attributeTypeMap = [
+ {
+ "name": "readOnly",
+ "baseName": "readOnly",
+ "type": "boolean"
+ },
+ {
+ "name": "secretName",
+ "baseName": "secretName",
+ "type": "string"
+ },
+ {
+ "name": "shareName",
+ "baseName": "shareName",
+ "type": "string"
+ }
+];
+exports.V1AzureFileVolumeSource = V1AzureFileVolumeSource;
+//# sourceMappingURL=v1AzureFileVolumeSource.js.map
\ No newline at end of file
diff --git a/dist/gen/model/v1AzureFileVolumeSource.js.map b/dist/gen/model/v1AzureFileVolumeSource.js.map
new file mode 100644
index 0000000000..427565a78a
--- /dev/null
+++ b/dist/gen/model/v1AzureFileVolumeSource.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"v1AzureFileVolumeSource.js","sourceRoot":"","sources":["../../../src/gen/model/v1AzureFileVolumeSource.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAGH;;EAEE;AACF,MAAa,uBAAuB;IAiChC,MAAM,CAAC,mBAAmB;QACtB,OAAO,uBAAuB,CAAC,gBAAgB,CAAC;IACpD,CAAC;;AArBM,qCAAa,GAAuB,SAAS,CAAC;AAE9C,wCAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,UAAU;QAClB,UAAU,EAAE,UAAU;QACtB,MAAM,EAAE,SAAS;KACpB;IACD;QACI,MAAM,EAAE,YAAY;QACpB,UAAU,EAAE,YAAY;QACxB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,WAAW;QACnB,UAAU,EAAE,WAAW;QACvB,MAAM,EAAE,QAAQ;KACnB;CAAK,CAAC;AA/Bf,0DAoCC"}
\ No newline at end of file
diff --git a/dist/gen/model/v1Binding.d.ts b/dist/gen/model/v1Binding.d.ts
new file mode 100644
index 0000000000..a7b615bad2
--- /dev/null
+++ b/dist/gen/model/v1Binding.d.ts
@@ -0,0 +1,39 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+import { V1ObjectMeta } from './v1ObjectMeta';
+import { V1ObjectReference } from './v1ObjectReference';
+/**
+* Binding ties one object to another; for example, a pod is bound to a node by a scheduler. Deprecated in 1.7, please use the bindings subresource of pods instead.
+*/
+export declare class V1Binding {
+ /**
+ * APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources
+ */
+ 'apiVersion'?: string;
+ /**
+ * Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
+ */
+ 'kind'?: string;
+ 'metadata'?: V1ObjectMeta;
+ 'target': V1ObjectReference;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/v1Binding.js b/dist/gen/model/v1Binding.js
new file mode 100644
index 0000000000..758ad62a33
--- /dev/null
+++ b/dist/gen/model/v1Binding.js
@@ -0,0 +1,46 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* Binding ties one object to another; for example, a pod is bound to a node by a scheduler. Deprecated in 1.7, please use the bindings subresource of pods instead.
+*/
+class V1Binding {
+ static getAttributeTypeMap() {
+ return V1Binding.attributeTypeMap;
+ }
+}
+V1Binding.discriminator = undefined;
+V1Binding.attributeTypeMap = [
+ {
+ "name": "apiVersion",
+ "baseName": "apiVersion",
+ "type": "string"
+ },
+ {
+ "name": "kind",
+ "baseName": "kind",
+ "type": "string"
+ },
+ {
+ "name": "metadata",
+ "baseName": "metadata",
+ "type": "V1ObjectMeta"
+ },
+ {
+ "name": "target",
+ "baseName": "target",
+ "type": "V1ObjectReference"
+ }
+];
+exports.V1Binding = V1Binding;
+//# sourceMappingURL=v1Binding.js.map
\ No newline at end of file
diff --git a/dist/gen/model/v1Binding.js.map b/dist/gen/model/v1Binding.js.map
new file mode 100644
index 0000000000..f03be52f1e
--- /dev/null
+++ b/dist/gen/model/v1Binding.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"v1Binding.js","sourceRoot":"","sources":["../../../src/gen/model/v1Binding.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAKH;;EAEE;AACF,MAAa,SAAS;IAoClB,MAAM,CAAC,mBAAmB;QACtB,OAAO,SAAS,CAAC,gBAAgB,CAAC;IACtC,CAAC;;AA1BM,uBAAa,GAAuB,SAAS,CAAC;AAE9C,0BAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,YAAY;QACpB,UAAU,EAAE,YAAY;QACxB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,UAAU;QAClB,UAAU,EAAE,UAAU;QACtB,MAAM,EAAE,cAAc;KACzB;IACD;QACI,MAAM,EAAE,QAAQ;QAChB,UAAU,EAAE,QAAQ;QACpB,MAAM,EAAE,mBAAmB;KAC9B;CAAK,CAAC;AAlCf,8BAuCC"}
\ No newline at end of file
diff --git a/dist/gen/model/v1CSIPersistentVolumeSource.d.ts b/dist/gen/model/v1CSIPersistentVolumeSource.d.ts
new file mode 100644
index 0000000000..39524cf9b0
--- /dev/null
+++ b/dist/gen/model/v1CSIPersistentVolumeSource.d.ts
@@ -0,0 +1,54 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+import { V1SecretReference } from './v1SecretReference';
+/**
+* Represents storage that is managed by an external CSI volume driver (Beta feature)
+*/
+export declare class V1CSIPersistentVolumeSource {
+ 'controllerExpandSecretRef'?: V1SecretReference;
+ 'controllerPublishSecretRef'?: V1SecretReference;
+ /**
+ * Driver is the name of the driver to use for this volume. Required.
+ */
+ 'driver': string;
+ /**
+ * Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\".
+ */
+ 'fsType'?: string;
+ 'nodePublishSecretRef'?: V1SecretReference;
+ 'nodeStageSecretRef'?: V1SecretReference;
+ /**
+ * Optional: The value to pass to ControllerPublishVolumeRequest. Defaults to false (read/write).
+ */
+ 'readOnly'?: boolean;
+ /**
+ * Attributes of the volume to publish.
+ */
+ 'volumeAttributes'?: {
+ [key: string]: string;
+ };
+ /**
+ * VolumeHandle is the unique volume name returned by the CSI volume plugin’s CreateVolume to refer to the volume on all subsequent calls. Required.
+ */
+ 'volumeHandle': string;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/v1CSIPersistentVolumeSource.js b/dist/gen/model/v1CSIPersistentVolumeSource.js
new file mode 100644
index 0000000000..763f3b3f25
--- /dev/null
+++ b/dist/gen/model/v1CSIPersistentVolumeSource.js
@@ -0,0 +1,71 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* Represents storage that is managed by an external CSI volume driver (Beta feature)
+*/
+class V1CSIPersistentVolumeSource {
+ static getAttributeTypeMap() {
+ return V1CSIPersistentVolumeSource.attributeTypeMap;
+ }
+}
+V1CSIPersistentVolumeSource.discriminator = undefined;
+V1CSIPersistentVolumeSource.attributeTypeMap = [
+ {
+ "name": "controllerExpandSecretRef",
+ "baseName": "controllerExpandSecretRef",
+ "type": "V1SecretReference"
+ },
+ {
+ "name": "controllerPublishSecretRef",
+ "baseName": "controllerPublishSecretRef",
+ "type": "V1SecretReference"
+ },
+ {
+ "name": "driver",
+ "baseName": "driver",
+ "type": "string"
+ },
+ {
+ "name": "fsType",
+ "baseName": "fsType",
+ "type": "string"
+ },
+ {
+ "name": "nodePublishSecretRef",
+ "baseName": "nodePublishSecretRef",
+ "type": "V1SecretReference"
+ },
+ {
+ "name": "nodeStageSecretRef",
+ "baseName": "nodeStageSecretRef",
+ "type": "V1SecretReference"
+ },
+ {
+ "name": "readOnly",
+ "baseName": "readOnly",
+ "type": "boolean"
+ },
+ {
+ "name": "volumeAttributes",
+ "baseName": "volumeAttributes",
+ "type": "{ [key: string]: string; }"
+ },
+ {
+ "name": "volumeHandle",
+ "baseName": "volumeHandle",
+ "type": "string"
+ }
+];
+exports.V1CSIPersistentVolumeSource = V1CSIPersistentVolumeSource;
+//# sourceMappingURL=v1CSIPersistentVolumeSource.js.map
\ No newline at end of file
diff --git a/dist/gen/model/v1CSIPersistentVolumeSource.js.map b/dist/gen/model/v1CSIPersistentVolumeSource.js.map
new file mode 100644
index 0000000000..95f8ccaf49
--- /dev/null
+++ b/dist/gen/model/v1CSIPersistentVolumeSource.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"v1CSIPersistentVolumeSource.js","sourceRoot":"","sources":["../../../src/gen/model/v1CSIPersistentVolumeSource.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAIH;;EAEE;AACF,MAAa,2BAA2B;IA2EpC,MAAM,CAAC,mBAAmB;QACtB,OAAO,2BAA2B,CAAC,gBAAgB,CAAC;IACxD,CAAC;;AAnDM,yCAAa,GAAuB,SAAS,CAAC;AAE9C,4CAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,2BAA2B;QACnC,UAAU,EAAE,2BAA2B;QACvC,MAAM,EAAE,mBAAmB;KAC9B;IACD;QACI,MAAM,EAAE,4BAA4B;QACpC,UAAU,EAAE,4BAA4B;QACxC,MAAM,EAAE,mBAAmB;KAC9B;IACD;QACI,MAAM,EAAE,QAAQ;QAChB,UAAU,EAAE,QAAQ;QACpB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,QAAQ;QAChB,UAAU,EAAE,QAAQ;QACpB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,sBAAsB;QAC9B,UAAU,EAAE,sBAAsB;QAClC,MAAM,EAAE,mBAAmB;KAC9B;IACD;QACI,MAAM,EAAE,oBAAoB;QAC5B,UAAU,EAAE,oBAAoB;QAChC,MAAM,EAAE,mBAAmB;KAC9B;IACD;QACI,MAAM,EAAE,UAAU;QAClB,UAAU,EAAE,UAAU;QACtB,MAAM,EAAE,SAAS;KACpB;IACD;QACI,MAAM,EAAE,kBAAkB;QAC1B,UAAU,EAAE,kBAAkB;QAC9B,MAAM,EAAE,4BAA4B;KACvC;IACD;QACI,MAAM,EAAE,cAAc;QACtB,UAAU,EAAE,cAAc;QAC1B,MAAM,EAAE,QAAQ;KACnB;CAAK,CAAC;AAzEf,kEA8EC"}
\ No newline at end of file
diff --git a/dist/gen/model/v1CSIVolumeSource.d.ts b/dist/gen/model/v1CSIVolumeSource.d.ts
new file mode 100644
index 0000000000..c76fcfaea1
--- /dev/null
+++ b/dist/gen/model/v1CSIVolumeSource.d.ts
@@ -0,0 +1,47 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+import { V1LocalObjectReference } from './v1LocalObjectReference';
+/**
+* Represents a source location of a volume to mount, managed by an external CSI driver
+*/
+export declare class V1CSIVolumeSource {
+ /**
+ * Driver is the name of the CSI driver that handles this volume. Consult with your admin for the correct name as registered in the cluster.
+ */
+ 'driver': string;
+ /**
+ * Filesystem type to mount. Ex. \"ext4\", \"xfs\", \"ntfs\". If not provided, the empty value is passed to the associated CSI driver which will determine the default filesystem to apply.
+ */
+ 'fsType'?: string;
+ 'nodePublishSecretRef'?: V1LocalObjectReference;
+ /**
+ * Specifies a read-only configuration for the volume. Defaults to false (read/write).
+ */
+ 'readOnly'?: boolean;
+ /**
+ * VolumeAttributes stores driver-specific properties that are passed to the CSI driver. Consult your driver\'s documentation for supported values.
+ */
+ 'volumeAttributes'?: {
+ [key: string]: string;
+ };
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/v1CSIVolumeSource.js b/dist/gen/model/v1CSIVolumeSource.js
new file mode 100644
index 0000000000..1ebb3cb2bc
--- /dev/null
+++ b/dist/gen/model/v1CSIVolumeSource.js
@@ -0,0 +1,51 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* Represents a source location of a volume to mount, managed by an external CSI driver
+*/
+class V1CSIVolumeSource {
+ static getAttributeTypeMap() {
+ return V1CSIVolumeSource.attributeTypeMap;
+ }
+}
+V1CSIVolumeSource.discriminator = undefined;
+V1CSIVolumeSource.attributeTypeMap = [
+ {
+ "name": "driver",
+ "baseName": "driver",
+ "type": "string"
+ },
+ {
+ "name": "fsType",
+ "baseName": "fsType",
+ "type": "string"
+ },
+ {
+ "name": "nodePublishSecretRef",
+ "baseName": "nodePublishSecretRef",
+ "type": "V1LocalObjectReference"
+ },
+ {
+ "name": "readOnly",
+ "baseName": "readOnly",
+ "type": "boolean"
+ },
+ {
+ "name": "volumeAttributes",
+ "baseName": "volumeAttributes",
+ "type": "{ [key: string]: string; }"
+ }
+];
+exports.V1CSIVolumeSource = V1CSIVolumeSource;
+//# sourceMappingURL=v1CSIVolumeSource.js.map
\ No newline at end of file
diff --git a/dist/gen/model/v1CSIVolumeSource.js.map b/dist/gen/model/v1CSIVolumeSource.js.map
new file mode 100644
index 0000000000..d46df2acdd
--- /dev/null
+++ b/dist/gen/model/v1CSIVolumeSource.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"v1CSIVolumeSource.js","sourceRoot":"","sources":["../../../src/gen/model/v1CSIVolumeSource.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAIH;;EAEE;AACF,MAAa,iBAAiB;IAgD1B,MAAM,CAAC,mBAAmB;QACtB,OAAO,iBAAiB,CAAC,gBAAgB,CAAC;IAC9C,CAAC;;AA/BM,+BAAa,GAAuB,SAAS,CAAC;AAE9C,kCAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,QAAQ;QAChB,UAAU,EAAE,QAAQ;QACpB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,QAAQ;QAChB,UAAU,EAAE,QAAQ;QACpB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,sBAAsB;QAC9B,UAAU,EAAE,sBAAsB;QAClC,MAAM,EAAE,wBAAwB;KACnC;IACD;QACI,MAAM,EAAE,UAAU;QAClB,UAAU,EAAE,UAAU;QACtB,MAAM,EAAE,SAAS;KACpB;IACD;QACI,MAAM,EAAE,kBAAkB;QAC1B,UAAU,EAAE,kBAAkB;QAC9B,MAAM,EAAE,4BAA4B;KACvC;CAAK,CAAC;AA9Cf,8CAmDC"}
\ No newline at end of file
diff --git a/dist/gen/model/v1Capabilities.d.ts b/dist/gen/model/v1Capabilities.d.ts
new file mode 100644
index 0000000000..16f3ef9105
--- /dev/null
+++ b/dist/gen/model/v1Capabilities.d.ts
@@ -0,0 +1,35 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+/**
+* Adds and removes POSIX capabilities from running containers.
+*/
+export declare class V1Capabilities {
+ /**
+ * Added capabilities
+ */
+ 'add'?: Array;
+ /**
+ * Removed capabilities
+ */
+ 'drop'?: Array;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/v1Capabilities.js b/dist/gen/model/v1Capabilities.js
new file mode 100644
index 0000000000..e7fb5ee64e
--- /dev/null
+++ b/dist/gen/model/v1Capabilities.js
@@ -0,0 +1,36 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* Adds and removes POSIX capabilities from running containers.
+*/
+class V1Capabilities {
+ static getAttributeTypeMap() {
+ return V1Capabilities.attributeTypeMap;
+ }
+}
+V1Capabilities.discriminator = undefined;
+V1Capabilities.attributeTypeMap = [
+ {
+ "name": "add",
+ "baseName": "add",
+ "type": "Array"
+ },
+ {
+ "name": "drop",
+ "baseName": "drop",
+ "type": "Array"
+ }
+];
+exports.V1Capabilities = V1Capabilities;
+//# sourceMappingURL=v1Capabilities.js.map
\ No newline at end of file
diff --git a/dist/gen/model/v1Capabilities.js.map b/dist/gen/model/v1Capabilities.js.map
new file mode 100644
index 0000000000..16a120af2a
--- /dev/null
+++ b/dist/gen/model/v1Capabilities.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"v1Capabilities.js","sourceRoot":"","sources":["../../../src/gen/model/v1Capabilities.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAGH;;EAEE;AACF,MAAa,cAAc;IAwBvB,MAAM,CAAC,mBAAmB;QACtB,OAAO,cAAc,CAAC,gBAAgB,CAAC;IAC3C,CAAC;;AAhBM,4BAAa,GAAuB,SAAS,CAAC;AAE9C,+BAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,KAAK;QACb,UAAU,EAAE,KAAK;QACjB,MAAM,EAAE,eAAe;KAC1B;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,eAAe;KAC1B;CAAK,CAAC;AAtBf,wCA2BC"}
\ No newline at end of file
diff --git a/dist/gen/model/v1CephFSPersistentVolumeSource.d.ts b/dist/gen/model/v1CephFSPersistentVolumeSource.d.ts
new file mode 100644
index 0000000000..2df2330d74
--- /dev/null
+++ b/dist/gen/model/v1CephFSPersistentVolumeSource.d.ts
@@ -0,0 +1,49 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+import { V1SecretReference } from './v1SecretReference';
+/**
+* Represents a Ceph Filesystem mount that lasts the lifetime of a pod Cephfs volumes do not support ownership management or SELinux relabeling.
+*/
+export declare class V1CephFSPersistentVolumeSource {
+ /**
+ * Required: Monitors is a collection of Ceph monitors More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it
+ */
+ 'monitors': Array;
+ /**
+ * Optional: Used as the mounted root, rather than the full Ceph tree, default is /
+ */
+ 'path'?: string;
+ /**
+ * Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it
+ */
+ 'readOnly'?: boolean;
+ /**
+ * Optional: SecretFile is the path to key ring for User, default is /etc/ceph/user.secret More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it
+ */
+ 'secretFile'?: string;
+ 'secretRef'?: V1SecretReference;
+ /**
+ * Optional: User is the rados user name, default is admin More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it
+ */
+ 'user'?: string;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/v1CephFSPersistentVolumeSource.js b/dist/gen/model/v1CephFSPersistentVolumeSource.js
new file mode 100644
index 0000000000..2d47a3b9bd
--- /dev/null
+++ b/dist/gen/model/v1CephFSPersistentVolumeSource.js
@@ -0,0 +1,56 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* Represents a Ceph Filesystem mount that lasts the lifetime of a pod Cephfs volumes do not support ownership management or SELinux relabeling.
+*/
+class V1CephFSPersistentVolumeSource {
+ static getAttributeTypeMap() {
+ return V1CephFSPersistentVolumeSource.attributeTypeMap;
+ }
+}
+V1CephFSPersistentVolumeSource.discriminator = undefined;
+V1CephFSPersistentVolumeSource.attributeTypeMap = [
+ {
+ "name": "monitors",
+ "baseName": "monitors",
+ "type": "Array"
+ },
+ {
+ "name": "path",
+ "baseName": "path",
+ "type": "string"
+ },
+ {
+ "name": "readOnly",
+ "baseName": "readOnly",
+ "type": "boolean"
+ },
+ {
+ "name": "secretFile",
+ "baseName": "secretFile",
+ "type": "string"
+ },
+ {
+ "name": "secretRef",
+ "baseName": "secretRef",
+ "type": "V1SecretReference"
+ },
+ {
+ "name": "user",
+ "baseName": "user",
+ "type": "string"
+ }
+];
+exports.V1CephFSPersistentVolumeSource = V1CephFSPersistentVolumeSource;
+//# sourceMappingURL=v1CephFSPersistentVolumeSource.js.map
\ No newline at end of file
diff --git a/dist/gen/model/v1CephFSPersistentVolumeSource.js.map b/dist/gen/model/v1CephFSPersistentVolumeSource.js.map
new file mode 100644
index 0000000000..f090cb226e
--- /dev/null
+++ b/dist/gen/model/v1CephFSPersistentVolumeSource.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"v1CephFSPersistentVolumeSource.js","sourceRoot":"","sources":["../../../src/gen/model/v1CephFSPersistentVolumeSource.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAIH;;EAEE;AACF,MAAa,8BAA8B;IAyDvC,MAAM,CAAC,mBAAmB;QACtB,OAAO,8BAA8B,CAAC,gBAAgB,CAAC;IAC3D,CAAC;;AApCM,4CAAa,GAAuB,SAAS,CAAC;AAE9C,+CAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,UAAU;QAClB,UAAU,EAAE,UAAU;QACtB,MAAM,EAAE,eAAe;KAC1B;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,UAAU;QAClB,UAAU,EAAE,UAAU;QACtB,MAAM,EAAE,SAAS;KACpB;IACD;QACI,MAAM,EAAE,YAAY;QACpB,UAAU,EAAE,YAAY;QACxB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,WAAW;QACnB,UAAU,EAAE,WAAW;QACvB,MAAM,EAAE,mBAAmB;KAC9B;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,QAAQ;KACnB;CAAK,CAAC;AAvDf,wEA4DC"}
\ No newline at end of file
diff --git a/dist/gen/model/v1CephFSVolumeSource.d.ts b/dist/gen/model/v1CephFSVolumeSource.d.ts
new file mode 100644
index 0000000000..704ba51887
--- /dev/null
+++ b/dist/gen/model/v1CephFSVolumeSource.d.ts
@@ -0,0 +1,49 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+import { V1LocalObjectReference } from './v1LocalObjectReference';
+/**
+* Represents a Ceph Filesystem mount that lasts the lifetime of a pod Cephfs volumes do not support ownership management or SELinux relabeling.
+*/
+export declare class V1CephFSVolumeSource {
+ /**
+ * Required: Monitors is a collection of Ceph monitors More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it
+ */
+ 'monitors': Array;
+ /**
+ * Optional: Used as the mounted root, rather than the full Ceph tree, default is /
+ */
+ 'path'?: string;
+ /**
+ * Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it
+ */
+ 'readOnly'?: boolean;
+ /**
+ * Optional: SecretFile is the path to key ring for User, default is /etc/ceph/user.secret More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it
+ */
+ 'secretFile'?: string;
+ 'secretRef'?: V1LocalObjectReference;
+ /**
+ * Optional: User is the rados user name, default is admin More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it
+ */
+ 'user'?: string;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/v1CephFSVolumeSource.js b/dist/gen/model/v1CephFSVolumeSource.js
new file mode 100644
index 0000000000..9cd91e43fd
--- /dev/null
+++ b/dist/gen/model/v1CephFSVolumeSource.js
@@ -0,0 +1,56 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* Represents a Ceph Filesystem mount that lasts the lifetime of a pod Cephfs volumes do not support ownership management or SELinux relabeling.
+*/
+class V1CephFSVolumeSource {
+ static getAttributeTypeMap() {
+ return V1CephFSVolumeSource.attributeTypeMap;
+ }
+}
+V1CephFSVolumeSource.discriminator = undefined;
+V1CephFSVolumeSource.attributeTypeMap = [
+ {
+ "name": "monitors",
+ "baseName": "monitors",
+ "type": "Array"
+ },
+ {
+ "name": "path",
+ "baseName": "path",
+ "type": "string"
+ },
+ {
+ "name": "readOnly",
+ "baseName": "readOnly",
+ "type": "boolean"
+ },
+ {
+ "name": "secretFile",
+ "baseName": "secretFile",
+ "type": "string"
+ },
+ {
+ "name": "secretRef",
+ "baseName": "secretRef",
+ "type": "V1LocalObjectReference"
+ },
+ {
+ "name": "user",
+ "baseName": "user",
+ "type": "string"
+ }
+];
+exports.V1CephFSVolumeSource = V1CephFSVolumeSource;
+//# sourceMappingURL=v1CephFSVolumeSource.js.map
\ No newline at end of file
diff --git a/dist/gen/model/v1CephFSVolumeSource.js.map b/dist/gen/model/v1CephFSVolumeSource.js.map
new file mode 100644
index 0000000000..512064eb47
--- /dev/null
+++ b/dist/gen/model/v1CephFSVolumeSource.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"v1CephFSVolumeSource.js","sourceRoot":"","sources":["../../../src/gen/model/v1CephFSVolumeSource.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAIH;;EAEE;AACF,MAAa,oBAAoB;IAyD7B,MAAM,CAAC,mBAAmB;QACtB,OAAO,oBAAoB,CAAC,gBAAgB,CAAC;IACjD,CAAC;;AApCM,kCAAa,GAAuB,SAAS,CAAC;AAE9C,qCAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,UAAU;QAClB,UAAU,EAAE,UAAU;QACtB,MAAM,EAAE,eAAe;KAC1B;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,UAAU;QAClB,UAAU,EAAE,UAAU;QACtB,MAAM,EAAE,SAAS;KACpB;IACD;QACI,MAAM,EAAE,YAAY;QACpB,UAAU,EAAE,YAAY;QACxB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,WAAW;QACnB,UAAU,EAAE,WAAW;QACvB,MAAM,EAAE,wBAAwB;KACnC;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,QAAQ;KACnB;CAAK,CAAC;AAvDf,oDA4DC"}
\ No newline at end of file
diff --git a/dist/gen/model/v1CinderPersistentVolumeSource.d.ts b/dist/gen/model/v1CinderPersistentVolumeSource.d.ts
new file mode 100644
index 0000000000..7bc318bfd2
--- /dev/null
+++ b/dist/gen/model/v1CinderPersistentVolumeSource.d.ts
@@ -0,0 +1,41 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+import { V1SecretReference } from './v1SecretReference';
+/**
+* Represents a cinder volume resource in Openstack. A Cinder volume must exist before mounting to a container. The volume must also be in the same region as the kubelet. Cinder volumes support ownership management and SELinux relabeling.
+*/
+export declare class V1CinderPersistentVolumeSource {
+ /**
+ * Filesystem type to mount. Must be a filesystem type supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md
+ */
+ 'fsType'?: string;
+ /**
+ * Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md
+ */
+ 'readOnly'?: boolean;
+ 'secretRef'?: V1SecretReference;
+ /**
+ * volume id used to identify the volume in cinder More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md
+ */
+ 'volumeID': string;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/v1CinderPersistentVolumeSource.js b/dist/gen/model/v1CinderPersistentVolumeSource.js
new file mode 100644
index 0000000000..39f24b34b1
--- /dev/null
+++ b/dist/gen/model/v1CinderPersistentVolumeSource.js
@@ -0,0 +1,46 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* Represents a cinder volume resource in Openstack. A Cinder volume must exist before mounting to a container. The volume must also be in the same region as the kubelet. Cinder volumes support ownership management and SELinux relabeling.
+*/
+class V1CinderPersistentVolumeSource {
+ static getAttributeTypeMap() {
+ return V1CinderPersistentVolumeSource.attributeTypeMap;
+ }
+}
+V1CinderPersistentVolumeSource.discriminator = undefined;
+V1CinderPersistentVolumeSource.attributeTypeMap = [
+ {
+ "name": "fsType",
+ "baseName": "fsType",
+ "type": "string"
+ },
+ {
+ "name": "readOnly",
+ "baseName": "readOnly",
+ "type": "boolean"
+ },
+ {
+ "name": "secretRef",
+ "baseName": "secretRef",
+ "type": "V1SecretReference"
+ },
+ {
+ "name": "volumeID",
+ "baseName": "volumeID",
+ "type": "string"
+ }
+];
+exports.V1CinderPersistentVolumeSource = V1CinderPersistentVolumeSource;
+//# sourceMappingURL=v1CinderPersistentVolumeSource.js.map
\ No newline at end of file
diff --git a/dist/gen/model/v1CinderPersistentVolumeSource.js.map b/dist/gen/model/v1CinderPersistentVolumeSource.js.map
new file mode 100644
index 0000000000..567b15909c
--- /dev/null
+++ b/dist/gen/model/v1CinderPersistentVolumeSource.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"v1CinderPersistentVolumeSource.js","sourceRoot":"","sources":["../../../src/gen/model/v1CinderPersistentVolumeSource.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAIH;;EAEE;AACF,MAAa,8BAA8B;IAuCvC,MAAM,CAAC,mBAAmB;QACtB,OAAO,8BAA8B,CAAC,gBAAgB,CAAC;IAC3D,CAAC;;AA1BM,4CAAa,GAAuB,SAAS,CAAC;AAE9C,+CAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,QAAQ;QAChB,UAAU,EAAE,QAAQ;QACpB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,UAAU;QAClB,UAAU,EAAE,UAAU;QACtB,MAAM,EAAE,SAAS;KACpB;IACD;QACI,MAAM,EAAE,WAAW;QACnB,UAAU,EAAE,WAAW;QACvB,MAAM,EAAE,mBAAmB;KAC9B;IACD;QACI,MAAM,EAAE,UAAU;QAClB,UAAU,EAAE,UAAU;QACtB,MAAM,EAAE,QAAQ;KACnB;CAAK,CAAC;AArCf,wEA0CC"}
\ No newline at end of file
diff --git a/dist/gen/model/v1CinderVolumeSource.d.ts b/dist/gen/model/v1CinderVolumeSource.d.ts
new file mode 100644
index 0000000000..29923e6ef4
--- /dev/null
+++ b/dist/gen/model/v1CinderVolumeSource.d.ts
@@ -0,0 +1,41 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+import { V1LocalObjectReference } from './v1LocalObjectReference';
+/**
+* Represents a cinder volume resource in Openstack. A Cinder volume must exist before mounting to a container. The volume must also be in the same region as the kubelet. Cinder volumes support ownership management and SELinux relabeling.
+*/
+export declare class V1CinderVolumeSource {
+ /**
+ * Filesystem type to mount. Must be a filesystem type supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md
+ */
+ 'fsType'?: string;
+ /**
+ * Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md
+ */
+ 'readOnly'?: boolean;
+ 'secretRef'?: V1LocalObjectReference;
+ /**
+ * volume id used to identify the volume in cinder More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md
+ */
+ 'volumeID': string;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/v1CinderVolumeSource.js b/dist/gen/model/v1CinderVolumeSource.js
new file mode 100644
index 0000000000..717afcba10
--- /dev/null
+++ b/dist/gen/model/v1CinderVolumeSource.js
@@ -0,0 +1,46 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* Represents a cinder volume resource in Openstack. A Cinder volume must exist before mounting to a container. The volume must also be in the same region as the kubelet. Cinder volumes support ownership management and SELinux relabeling.
+*/
+class V1CinderVolumeSource {
+ static getAttributeTypeMap() {
+ return V1CinderVolumeSource.attributeTypeMap;
+ }
+}
+V1CinderVolumeSource.discriminator = undefined;
+V1CinderVolumeSource.attributeTypeMap = [
+ {
+ "name": "fsType",
+ "baseName": "fsType",
+ "type": "string"
+ },
+ {
+ "name": "readOnly",
+ "baseName": "readOnly",
+ "type": "boolean"
+ },
+ {
+ "name": "secretRef",
+ "baseName": "secretRef",
+ "type": "V1LocalObjectReference"
+ },
+ {
+ "name": "volumeID",
+ "baseName": "volumeID",
+ "type": "string"
+ }
+];
+exports.V1CinderVolumeSource = V1CinderVolumeSource;
+//# sourceMappingURL=v1CinderVolumeSource.js.map
\ No newline at end of file
diff --git a/dist/gen/model/v1CinderVolumeSource.js.map b/dist/gen/model/v1CinderVolumeSource.js.map
new file mode 100644
index 0000000000..d1bad0fa14
--- /dev/null
+++ b/dist/gen/model/v1CinderVolumeSource.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"v1CinderVolumeSource.js","sourceRoot":"","sources":["../../../src/gen/model/v1CinderVolumeSource.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAIH;;EAEE;AACF,MAAa,oBAAoB;IAuC7B,MAAM,CAAC,mBAAmB;QACtB,OAAO,oBAAoB,CAAC,gBAAgB,CAAC;IACjD,CAAC;;AA1BM,kCAAa,GAAuB,SAAS,CAAC;AAE9C,qCAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,QAAQ;QAChB,UAAU,EAAE,QAAQ;QACpB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,UAAU;QAClB,UAAU,EAAE,UAAU;QACtB,MAAM,EAAE,SAAS;KACpB;IACD;QACI,MAAM,EAAE,WAAW;QACnB,UAAU,EAAE,WAAW;QACvB,MAAM,EAAE,wBAAwB;KACnC;IACD;QACI,MAAM,EAAE,UAAU;QAClB,UAAU,EAAE,UAAU;QACtB,MAAM,EAAE,QAAQ;KACnB;CAAK,CAAC;AArCf,oDA0CC"}
\ No newline at end of file
diff --git a/dist/gen/model/v1ClientIPConfig.d.ts b/dist/gen/model/v1ClientIPConfig.d.ts
new file mode 100644
index 0000000000..66dfba7dc4
--- /dev/null
+++ b/dist/gen/model/v1ClientIPConfig.d.ts
@@ -0,0 +1,31 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+/**
+* ClientIPConfig represents the configurations of Client IP based session affinity.
+*/
+export declare class V1ClientIPConfig {
+ /**
+ * timeoutSeconds specifies the seconds of ClientIP type session sticky time. The value must be >0 && <=86400(for 1 day) if ServiceAffinity == \"ClientIP\". Default value is 10800(for 3 hours).
+ */
+ 'timeoutSeconds'?: number;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/v1ClientIPConfig.js b/dist/gen/model/v1ClientIPConfig.js
new file mode 100644
index 0000000000..a648e400f6
--- /dev/null
+++ b/dist/gen/model/v1ClientIPConfig.js
@@ -0,0 +1,31 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* ClientIPConfig represents the configurations of Client IP based session affinity.
+*/
+class V1ClientIPConfig {
+ static getAttributeTypeMap() {
+ return V1ClientIPConfig.attributeTypeMap;
+ }
+}
+V1ClientIPConfig.discriminator = undefined;
+V1ClientIPConfig.attributeTypeMap = [
+ {
+ "name": "timeoutSeconds",
+ "baseName": "timeoutSeconds",
+ "type": "number"
+ }
+];
+exports.V1ClientIPConfig = V1ClientIPConfig;
+//# sourceMappingURL=v1ClientIPConfig.js.map
\ No newline at end of file
diff --git a/dist/gen/model/v1ClientIPConfig.js.map b/dist/gen/model/v1ClientIPConfig.js.map
new file mode 100644
index 0000000000..8ef1082251
--- /dev/null
+++ b/dist/gen/model/v1ClientIPConfig.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"v1ClientIPConfig.js","sourceRoot":"","sources":["../../../src/gen/model/v1ClientIPConfig.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAGH;;EAEE;AACF,MAAa,gBAAgB;IAezB,MAAM,CAAC,mBAAmB;QACtB,OAAO,gBAAgB,CAAC,gBAAgB,CAAC;IAC7C,CAAC;;AAXM,8BAAa,GAAuB,SAAS,CAAC;AAE9C,iCAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,gBAAgB;QACxB,UAAU,EAAE,gBAAgB;QAC5B,MAAM,EAAE,QAAQ;KACnB;CAAK,CAAC;AAbf,4CAkBC"}
\ No newline at end of file
diff --git a/dist/gen/model/v1ClusterRole.d.ts b/dist/gen/model/v1ClusterRole.d.ts
new file mode 100644
index 0000000000..a950bc6d25
--- /dev/null
+++ b/dist/gen/model/v1ClusterRole.d.ts
@@ -0,0 +1,44 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+import { V1AggregationRule } from './v1AggregationRule';
+import { V1ObjectMeta } from './v1ObjectMeta';
+import { V1PolicyRule } from './v1PolicyRule';
+/**
+* ClusterRole is a cluster level, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding or ClusterRoleBinding.
+*/
+export declare class V1ClusterRole {
+ 'aggregationRule'?: V1AggregationRule;
+ /**
+ * APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources
+ */
+ 'apiVersion'?: string;
+ /**
+ * Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
+ */
+ 'kind'?: string;
+ 'metadata'?: V1ObjectMeta;
+ /**
+ * Rules holds all the PolicyRules for this ClusterRole
+ */
+ 'rules'?: Array;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/v1ClusterRole.js b/dist/gen/model/v1ClusterRole.js
new file mode 100644
index 0000000000..51d9ffb95a
--- /dev/null
+++ b/dist/gen/model/v1ClusterRole.js
@@ -0,0 +1,51 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* ClusterRole is a cluster level, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding or ClusterRoleBinding.
+*/
+class V1ClusterRole {
+ static getAttributeTypeMap() {
+ return V1ClusterRole.attributeTypeMap;
+ }
+}
+V1ClusterRole.discriminator = undefined;
+V1ClusterRole.attributeTypeMap = [
+ {
+ "name": "aggregationRule",
+ "baseName": "aggregationRule",
+ "type": "V1AggregationRule"
+ },
+ {
+ "name": "apiVersion",
+ "baseName": "apiVersion",
+ "type": "string"
+ },
+ {
+ "name": "kind",
+ "baseName": "kind",
+ "type": "string"
+ },
+ {
+ "name": "metadata",
+ "baseName": "metadata",
+ "type": "V1ObjectMeta"
+ },
+ {
+ "name": "rules",
+ "baseName": "rules",
+ "type": "Array"
+ }
+];
+exports.V1ClusterRole = V1ClusterRole;
+//# sourceMappingURL=v1ClusterRole.js.map
\ No newline at end of file
diff --git a/dist/gen/model/v1ClusterRole.js.map b/dist/gen/model/v1ClusterRole.js.map
new file mode 100644
index 0000000000..e3a733de52
--- /dev/null
+++ b/dist/gen/model/v1ClusterRole.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"v1ClusterRole.js","sourceRoot":"","sources":["../../../src/gen/model/v1ClusterRole.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAMH;;EAEE;AACF,MAAa,aAAa;IA6CtB,MAAM,CAAC,mBAAmB;QACtB,OAAO,aAAa,CAAC,gBAAgB,CAAC;IAC1C,CAAC;;AA/BM,2BAAa,GAAuB,SAAS,CAAC;AAE9C,8BAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,iBAAiB;QACzB,UAAU,EAAE,iBAAiB;QAC7B,MAAM,EAAE,mBAAmB;KAC9B;IACD;QACI,MAAM,EAAE,YAAY;QACpB,UAAU,EAAE,YAAY;QACxB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,UAAU;QAClB,UAAU,EAAE,UAAU;QACtB,MAAM,EAAE,cAAc;KACzB;IACD;QACI,MAAM,EAAE,OAAO;QACf,UAAU,EAAE,OAAO;QACnB,MAAM,EAAE,qBAAqB;KAChC;CAAK,CAAC;AA3Cf,sCAgDC"}
\ No newline at end of file
diff --git a/dist/gen/model/v1ClusterRoleBinding.d.ts b/dist/gen/model/v1ClusterRoleBinding.d.ts
new file mode 100644
index 0000000000..f7836f1626
--- /dev/null
+++ b/dist/gen/model/v1ClusterRoleBinding.d.ts
@@ -0,0 +1,44 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+import { V1ObjectMeta } from './v1ObjectMeta';
+import { V1RoleRef } from './v1RoleRef';
+import { V1Subject } from './v1Subject';
+/**
+* ClusterRoleBinding references a ClusterRole, but not contain it. It can reference a ClusterRole in the global namespace, and adds who information via Subject.
+*/
+export declare class V1ClusterRoleBinding {
+ /**
+ * APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources
+ */
+ 'apiVersion'?: string;
+ /**
+ * Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
+ */
+ 'kind'?: string;
+ 'metadata'?: V1ObjectMeta;
+ 'roleRef': V1RoleRef;
+ /**
+ * Subjects holds references to the objects the role applies to.
+ */
+ 'subjects'?: Array;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/v1ClusterRoleBinding.js b/dist/gen/model/v1ClusterRoleBinding.js
new file mode 100644
index 0000000000..5a9de0ef58
--- /dev/null
+++ b/dist/gen/model/v1ClusterRoleBinding.js
@@ -0,0 +1,51 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* ClusterRoleBinding references a ClusterRole, but not contain it. It can reference a ClusterRole in the global namespace, and adds who information via Subject.
+*/
+class V1ClusterRoleBinding {
+ static getAttributeTypeMap() {
+ return V1ClusterRoleBinding.attributeTypeMap;
+ }
+}
+V1ClusterRoleBinding.discriminator = undefined;
+V1ClusterRoleBinding.attributeTypeMap = [
+ {
+ "name": "apiVersion",
+ "baseName": "apiVersion",
+ "type": "string"
+ },
+ {
+ "name": "kind",
+ "baseName": "kind",
+ "type": "string"
+ },
+ {
+ "name": "metadata",
+ "baseName": "metadata",
+ "type": "V1ObjectMeta"
+ },
+ {
+ "name": "roleRef",
+ "baseName": "roleRef",
+ "type": "V1RoleRef"
+ },
+ {
+ "name": "subjects",
+ "baseName": "subjects",
+ "type": "Array"
+ }
+];
+exports.V1ClusterRoleBinding = V1ClusterRoleBinding;
+//# sourceMappingURL=v1ClusterRoleBinding.js.map
\ No newline at end of file
diff --git a/dist/gen/model/v1ClusterRoleBinding.js.map b/dist/gen/model/v1ClusterRoleBinding.js.map
new file mode 100644
index 0000000000..a30a8809f1
--- /dev/null
+++ b/dist/gen/model/v1ClusterRoleBinding.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"v1ClusterRoleBinding.js","sourceRoot":"","sources":["../../../src/gen/model/v1ClusterRoleBinding.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAMH;;EAEE;AACF,MAAa,oBAAoB;IA6C7B,MAAM,CAAC,mBAAmB;QACtB,OAAO,oBAAoB,CAAC,gBAAgB,CAAC;IACjD,CAAC;;AA/BM,kCAAa,GAAuB,SAAS,CAAC;AAE9C,qCAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,YAAY;QACpB,UAAU,EAAE,YAAY;QACxB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,UAAU;QAClB,UAAU,EAAE,UAAU;QACtB,MAAM,EAAE,cAAc;KACzB;IACD;QACI,MAAM,EAAE,SAAS;QACjB,UAAU,EAAE,SAAS;QACrB,MAAM,EAAE,WAAW;KACtB;IACD;QACI,MAAM,EAAE,UAAU;QAClB,UAAU,EAAE,UAAU;QACtB,MAAM,EAAE,kBAAkB;KAC7B;CAAK,CAAC;AA3Cf,oDAgDC"}
\ No newline at end of file
diff --git a/dist/gen/model/v1ClusterRoleBindingList.d.ts b/dist/gen/model/v1ClusterRoleBindingList.d.ts
new file mode 100644
index 0000000000..db8e7a78f1
--- /dev/null
+++ b/dist/gen/model/v1ClusterRoleBindingList.d.ts
@@ -0,0 +1,42 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+import { V1ClusterRoleBinding } from './v1ClusterRoleBinding';
+import { V1ListMeta } from './v1ListMeta';
+/**
+* ClusterRoleBindingList is a collection of ClusterRoleBindings
+*/
+export declare class V1ClusterRoleBindingList {
+ /**
+ * APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources
+ */
+ 'apiVersion'?: string;
+ /**
+ * Items is a list of ClusterRoleBindings
+ */
+ 'items': Array;
+ /**
+ * Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
+ */
+ 'kind'?: string;
+ 'metadata'?: V1ListMeta;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/v1ClusterRoleBindingList.js b/dist/gen/model/v1ClusterRoleBindingList.js
new file mode 100644
index 0000000000..e5a7c74910
--- /dev/null
+++ b/dist/gen/model/v1ClusterRoleBindingList.js
@@ -0,0 +1,46 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* ClusterRoleBindingList is a collection of ClusterRoleBindings
+*/
+class V1ClusterRoleBindingList {
+ static getAttributeTypeMap() {
+ return V1ClusterRoleBindingList.attributeTypeMap;
+ }
+}
+V1ClusterRoleBindingList.discriminator = undefined;
+V1ClusterRoleBindingList.attributeTypeMap = [
+ {
+ "name": "apiVersion",
+ "baseName": "apiVersion",
+ "type": "string"
+ },
+ {
+ "name": "items",
+ "baseName": "items",
+ "type": "Array"
+ },
+ {
+ "name": "kind",
+ "baseName": "kind",
+ "type": "string"
+ },
+ {
+ "name": "metadata",
+ "baseName": "metadata",
+ "type": "V1ListMeta"
+ }
+];
+exports.V1ClusterRoleBindingList = V1ClusterRoleBindingList;
+//# sourceMappingURL=v1ClusterRoleBindingList.js.map
\ No newline at end of file
diff --git a/dist/gen/model/v1ClusterRoleBindingList.js.map b/dist/gen/model/v1ClusterRoleBindingList.js.map
new file mode 100644
index 0000000000..9c71904cde
--- /dev/null
+++ b/dist/gen/model/v1ClusterRoleBindingList.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"v1ClusterRoleBindingList.js","sourceRoot":"","sources":["../../../src/gen/model/v1ClusterRoleBindingList.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAKH;;EAEE;AACF,MAAa,wBAAwB;IAuCjC,MAAM,CAAC,mBAAmB;QACtB,OAAO,wBAAwB,CAAC,gBAAgB,CAAC;IACrD,CAAC;;AA1BM,sCAAa,GAAuB,SAAS,CAAC;AAE9C,yCAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,YAAY;QACpB,UAAU,EAAE,YAAY;QACxB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,OAAO;QACf,UAAU,EAAE,OAAO;QACnB,MAAM,EAAE,6BAA6B;KACxC;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,UAAU;QAClB,UAAU,EAAE,UAAU;QACtB,MAAM,EAAE,YAAY;KACvB;CAAK,CAAC;AArCf,4DA0CC"}
\ No newline at end of file
diff --git a/dist/gen/model/v1ClusterRoleList.d.ts b/dist/gen/model/v1ClusterRoleList.d.ts
new file mode 100644
index 0000000000..0d1e541d1d
--- /dev/null
+++ b/dist/gen/model/v1ClusterRoleList.d.ts
@@ -0,0 +1,42 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+import { V1ClusterRole } from './v1ClusterRole';
+import { V1ListMeta } from './v1ListMeta';
+/**
+* ClusterRoleList is a collection of ClusterRoles
+*/
+export declare class V1ClusterRoleList {
+ /**
+ * APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources
+ */
+ 'apiVersion'?: string;
+ /**
+ * Items is a list of ClusterRoles
+ */
+ 'items': Array;
+ /**
+ * Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
+ */
+ 'kind'?: string;
+ 'metadata'?: V1ListMeta;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/v1ClusterRoleList.js b/dist/gen/model/v1ClusterRoleList.js
new file mode 100644
index 0000000000..8b55fd84d8
--- /dev/null
+++ b/dist/gen/model/v1ClusterRoleList.js
@@ -0,0 +1,46 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* ClusterRoleList is a collection of ClusterRoles
+*/
+class V1ClusterRoleList {
+ static getAttributeTypeMap() {
+ return V1ClusterRoleList.attributeTypeMap;
+ }
+}
+V1ClusterRoleList.discriminator = undefined;
+V1ClusterRoleList.attributeTypeMap = [
+ {
+ "name": "apiVersion",
+ "baseName": "apiVersion",
+ "type": "string"
+ },
+ {
+ "name": "items",
+ "baseName": "items",
+ "type": "Array"
+ },
+ {
+ "name": "kind",
+ "baseName": "kind",
+ "type": "string"
+ },
+ {
+ "name": "metadata",
+ "baseName": "metadata",
+ "type": "V1ListMeta"
+ }
+];
+exports.V1ClusterRoleList = V1ClusterRoleList;
+//# sourceMappingURL=v1ClusterRoleList.js.map
\ No newline at end of file
diff --git a/dist/gen/model/v1ClusterRoleList.js.map b/dist/gen/model/v1ClusterRoleList.js.map
new file mode 100644
index 0000000000..17b8531aac
--- /dev/null
+++ b/dist/gen/model/v1ClusterRoleList.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"v1ClusterRoleList.js","sourceRoot":"","sources":["../../../src/gen/model/v1ClusterRoleList.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAKH;;EAEE;AACF,MAAa,iBAAiB;IAuC1B,MAAM,CAAC,mBAAmB;QACtB,OAAO,iBAAiB,CAAC,gBAAgB,CAAC;IAC9C,CAAC;;AA1BM,+BAAa,GAAuB,SAAS,CAAC;AAE9C,kCAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,YAAY;QACpB,UAAU,EAAE,YAAY;QACxB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,OAAO;QACf,UAAU,EAAE,OAAO;QACnB,MAAM,EAAE,sBAAsB;KACjC;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,UAAU;QAClB,UAAU,EAAE,UAAU;QACtB,MAAM,EAAE,YAAY;KACvB;CAAK,CAAC;AArCf,8CA0CC"}
\ No newline at end of file
diff --git a/dist/gen/model/v1ComponentCondition.d.ts b/dist/gen/model/v1ComponentCondition.d.ts
new file mode 100644
index 0000000000..df9fa4ed76
--- /dev/null
+++ b/dist/gen/model/v1ComponentCondition.d.ts
@@ -0,0 +1,43 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+/**
+* Information about the condition of a component.
+*/
+export declare class V1ComponentCondition {
+ /**
+ * Condition error code for a component. For example, a health check error code.
+ */
+ 'error'?: string;
+ /**
+ * Message about the condition for a component. For example, information about a health check.
+ */
+ 'message'?: string;
+ /**
+ * Status of the condition for a component. Valid values for \"Healthy\": \"True\", \"False\", or \"Unknown\".
+ */
+ 'status': string;
+ /**
+ * Type of condition for a component. Valid value: \"Healthy\"
+ */
+ 'type': string;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/v1ComponentCondition.js b/dist/gen/model/v1ComponentCondition.js
new file mode 100644
index 0000000000..9b5f3a6d8f
--- /dev/null
+++ b/dist/gen/model/v1ComponentCondition.js
@@ -0,0 +1,46 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* Information about the condition of a component.
+*/
+class V1ComponentCondition {
+ static getAttributeTypeMap() {
+ return V1ComponentCondition.attributeTypeMap;
+ }
+}
+V1ComponentCondition.discriminator = undefined;
+V1ComponentCondition.attributeTypeMap = [
+ {
+ "name": "error",
+ "baseName": "error",
+ "type": "string"
+ },
+ {
+ "name": "message",
+ "baseName": "message",
+ "type": "string"
+ },
+ {
+ "name": "status",
+ "baseName": "status",
+ "type": "string"
+ },
+ {
+ "name": "type",
+ "baseName": "type",
+ "type": "string"
+ }
+];
+exports.V1ComponentCondition = V1ComponentCondition;
+//# sourceMappingURL=v1ComponentCondition.js.map
\ No newline at end of file
diff --git a/dist/gen/model/v1ComponentCondition.js.map b/dist/gen/model/v1ComponentCondition.js.map
new file mode 100644
index 0000000000..c2eb782ee6
--- /dev/null
+++ b/dist/gen/model/v1ComponentCondition.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"v1ComponentCondition.js","sourceRoot":"","sources":["../../../src/gen/model/v1ComponentCondition.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAGH;;EAEE;AACF,MAAa,oBAAoB;IA0C7B,MAAM,CAAC,mBAAmB;QACtB,OAAO,oBAAoB,CAAC,gBAAgB,CAAC;IACjD,CAAC;;AA1BM,kCAAa,GAAuB,SAAS,CAAC;AAE9C,qCAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,OAAO;QACf,UAAU,EAAE,OAAO;QACnB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,SAAS;QACjB,UAAU,EAAE,SAAS;QACrB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,QAAQ;QAChB,UAAU,EAAE,QAAQ;QACpB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,QAAQ;KACnB;CAAK,CAAC;AAxCf,oDA6CC"}
\ No newline at end of file
diff --git a/dist/gen/model/v1ComponentStatus.d.ts b/dist/gen/model/v1ComponentStatus.d.ts
new file mode 100644
index 0000000000..120bbe241b
--- /dev/null
+++ b/dist/gen/model/v1ComponentStatus.d.ts
@@ -0,0 +1,42 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+import { V1ComponentCondition } from './v1ComponentCondition';
+import { V1ObjectMeta } from './v1ObjectMeta';
+/**
+* ComponentStatus (and ComponentStatusList) holds the cluster validation info.
+*/
+export declare class V1ComponentStatus {
+ /**
+ * APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources
+ */
+ 'apiVersion'?: string;
+ /**
+ * List of component conditions observed
+ */
+ 'conditions'?: Array;
+ /**
+ * Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
+ */
+ 'kind'?: string;
+ 'metadata'?: V1ObjectMeta;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/v1ComponentStatus.js b/dist/gen/model/v1ComponentStatus.js
new file mode 100644
index 0000000000..1ff3606af8
--- /dev/null
+++ b/dist/gen/model/v1ComponentStatus.js
@@ -0,0 +1,46 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* ComponentStatus (and ComponentStatusList) holds the cluster validation info.
+*/
+class V1ComponentStatus {
+ static getAttributeTypeMap() {
+ return V1ComponentStatus.attributeTypeMap;
+ }
+}
+V1ComponentStatus.discriminator = undefined;
+V1ComponentStatus.attributeTypeMap = [
+ {
+ "name": "apiVersion",
+ "baseName": "apiVersion",
+ "type": "string"
+ },
+ {
+ "name": "conditions",
+ "baseName": "conditions",
+ "type": "Array"
+ },
+ {
+ "name": "kind",
+ "baseName": "kind",
+ "type": "string"
+ },
+ {
+ "name": "metadata",
+ "baseName": "metadata",
+ "type": "V1ObjectMeta"
+ }
+];
+exports.V1ComponentStatus = V1ComponentStatus;
+//# sourceMappingURL=v1ComponentStatus.js.map
\ No newline at end of file
diff --git a/dist/gen/model/v1ComponentStatus.js.map b/dist/gen/model/v1ComponentStatus.js.map
new file mode 100644
index 0000000000..cf0a0f2dc4
--- /dev/null
+++ b/dist/gen/model/v1ComponentStatus.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"v1ComponentStatus.js","sourceRoot":"","sources":["../../../src/gen/model/v1ComponentStatus.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAKH;;EAEE;AACF,MAAa,iBAAiB;IAuC1B,MAAM,CAAC,mBAAmB;QACtB,OAAO,iBAAiB,CAAC,gBAAgB,CAAC;IAC9C,CAAC;;AA1BM,+BAAa,GAAuB,SAAS,CAAC;AAE9C,kCAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,YAAY;QACpB,UAAU,EAAE,YAAY;QACxB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,YAAY;QACpB,UAAU,EAAE,YAAY;QACxB,MAAM,EAAE,6BAA6B;KACxC;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,UAAU;QAClB,UAAU,EAAE,UAAU;QACtB,MAAM,EAAE,cAAc;KACzB;CAAK,CAAC;AArCf,8CA0CC"}
\ No newline at end of file
diff --git a/dist/gen/model/v1ComponentStatusList.d.ts b/dist/gen/model/v1ComponentStatusList.d.ts
new file mode 100644
index 0000000000..db28f5acaf
--- /dev/null
+++ b/dist/gen/model/v1ComponentStatusList.d.ts
@@ -0,0 +1,42 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+import { V1ComponentStatus } from './v1ComponentStatus';
+import { V1ListMeta } from './v1ListMeta';
+/**
+* Status of all the conditions for the component as a list of ComponentStatus objects.
+*/
+export declare class V1ComponentStatusList {
+ /**
+ * APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources
+ */
+ 'apiVersion'?: string;
+ /**
+ * List of ComponentStatus objects.
+ */
+ 'items': Array;
+ /**
+ * Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
+ */
+ 'kind'?: string;
+ 'metadata'?: V1ListMeta;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/v1ComponentStatusList.js b/dist/gen/model/v1ComponentStatusList.js
new file mode 100644
index 0000000000..76ecc99f6e
--- /dev/null
+++ b/dist/gen/model/v1ComponentStatusList.js
@@ -0,0 +1,46 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* Status of all the conditions for the component as a list of ComponentStatus objects.
+*/
+class V1ComponentStatusList {
+ static getAttributeTypeMap() {
+ return V1ComponentStatusList.attributeTypeMap;
+ }
+}
+V1ComponentStatusList.discriminator = undefined;
+V1ComponentStatusList.attributeTypeMap = [
+ {
+ "name": "apiVersion",
+ "baseName": "apiVersion",
+ "type": "string"
+ },
+ {
+ "name": "items",
+ "baseName": "items",
+ "type": "Array"
+ },
+ {
+ "name": "kind",
+ "baseName": "kind",
+ "type": "string"
+ },
+ {
+ "name": "metadata",
+ "baseName": "metadata",
+ "type": "V1ListMeta"
+ }
+];
+exports.V1ComponentStatusList = V1ComponentStatusList;
+//# sourceMappingURL=v1ComponentStatusList.js.map
\ No newline at end of file
diff --git a/dist/gen/model/v1ComponentStatusList.js.map b/dist/gen/model/v1ComponentStatusList.js.map
new file mode 100644
index 0000000000..93673ce78a
--- /dev/null
+++ b/dist/gen/model/v1ComponentStatusList.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"v1ComponentStatusList.js","sourceRoot":"","sources":["../../../src/gen/model/v1ComponentStatusList.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAKH;;EAEE;AACF,MAAa,qBAAqB;IAuC9B,MAAM,CAAC,mBAAmB;QACtB,OAAO,qBAAqB,CAAC,gBAAgB,CAAC;IAClD,CAAC;;AA1BM,mCAAa,GAAuB,SAAS,CAAC;AAE9C,sCAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,YAAY;QACpB,UAAU,EAAE,YAAY;QACxB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,OAAO;QACf,UAAU,EAAE,OAAO;QACnB,MAAM,EAAE,0BAA0B;KACrC;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,UAAU;QAClB,UAAU,EAAE,UAAU;QACtB,MAAM,EAAE,YAAY;KACvB;CAAK,CAAC;AArCf,sDA0CC"}
\ No newline at end of file
diff --git a/dist/gen/model/v1ConfigMap.d.ts b/dist/gen/model/v1ConfigMap.d.ts
new file mode 100644
index 0000000000..f006ad9415
--- /dev/null
+++ b/dist/gen/model/v1ConfigMap.d.ts
@@ -0,0 +1,49 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+import { V1ObjectMeta } from './v1ObjectMeta';
+/**
+* ConfigMap holds configuration data for pods to consume.
+*/
+export declare class V1ConfigMap {
+ /**
+ * APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources
+ */
+ 'apiVersion'?: string;
+ /**
+ * BinaryData contains the binary data. Each key must consist of alphanumeric characters, \'-\', \'_\' or \'.\'. BinaryData can contain byte sequences that are not in the UTF-8 range. The keys stored in BinaryData must not overlap with the ones in the Data field, this is enforced during validation process. Using this field will require 1.10+ apiserver and kubelet.
+ */
+ 'binaryData'?: {
+ [key: string]: string;
+ };
+ /**
+ * Data contains the configuration data. Each key must consist of alphanumeric characters, \'-\', \'_\' or \'.\'. Values with non-UTF-8 byte sequences must use the BinaryData field. The keys stored in Data must not overlap with the keys in the BinaryData field, this is enforced during validation process.
+ */
+ 'data'?: {
+ [key: string]: string;
+ };
+ /**
+ * Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
+ */
+ 'kind'?: string;
+ 'metadata'?: V1ObjectMeta;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/v1ConfigMap.js b/dist/gen/model/v1ConfigMap.js
new file mode 100644
index 0000000000..8c16c0796d
--- /dev/null
+++ b/dist/gen/model/v1ConfigMap.js
@@ -0,0 +1,51 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* ConfigMap holds configuration data for pods to consume.
+*/
+class V1ConfigMap {
+ static getAttributeTypeMap() {
+ return V1ConfigMap.attributeTypeMap;
+ }
+}
+V1ConfigMap.discriminator = undefined;
+V1ConfigMap.attributeTypeMap = [
+ {
+ "name": "apiVersion",
+ "baseName": "apiVersion",
+ "type": "string"
+ },
+ {
+ "name": "binaryData",
+ "baseName": "binaryData",
+ "type": "{ [key: string]: string; }"
+ },
+ {
+ "name": "data",
+ "baseName": "data",
+ "type": "{ [key: string]: string; }"
+ },
+ {
+ "name": "kind",
+ "baseName": "kind",
+ "type": "string"
+ },
+ {
+ "name": "metadata",
+ "baseName": "metadata",
+ "type": "V1ObjectMeta"
+ }
+];
+exports.V1ConfigMap = V1ConfigMap;
+//# sourceMappingURL=v1ConfigMap.js.map
\ No newline at end of file
diff --git a/dist/gen/model/v1ConfigMap.js.map b/dist/gen/model/v1ConfigMap.js.map
new file mode 100644
index 0000000000..71309f6437
--- /dev/null
+++ b/dist/gen/model/v1ConfigMap.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"v1ConfigMap.js","sourceRoot":"","sources":["../../../src/gen/model/v1ConfigMap.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAIH;;EAEE;AACF,MAAa,WAAW;IAgDpB,MAAM,CAAC,mBAAmB;QACtB,OAAO,WAAW,CAAC,gBAAgB,CAAC;IACxC,CAAC;;AA/BM,yBAAa,GAAuB,SAAS,CAAC;AAE9C,4BAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,YAAY;QACpB,UAAU,EAAE,YAAY;QACxB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,YAAY;QACpB,UAAU,EAAE,YAAY;QACxB,MAAM,EAAE,4BAA4B;KACvC;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,4BAA4B;KACvC;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,UAAU;QAClB,UAAU,EAAE,UAAU;QACtB,MAAM,EAAE,cAAc;KACzB;CAAK,CAAC;AA9Cf,kCAmDC"}
\ No newline at end of file
diff --git a/dist/gen/model/v1ConfigMapEnvSource.d.ts b/dist/gen/model/v1ConfigMapEnvSource.d.ts
new file mode 100644
index 0000000000..c218b899f4
--- /dev/null
+++ b/dist/gen/model/v1ConfigMapEnvSource.d.ts
@@ -0,0 +1,35 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+/**
+* ConfigMapEnvSource selects a ConfigMap to populate the environment variables with. The contents of the target ConfigMap\'s Data field will represent the key-value pairs as environment variables.
+*/
+export declare class V1ConfigMapEnvSource {
+ /**
+ * Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
+ */
+ 'name'?: string;
+ /**
+ * Specify whether the ConfigMap must be defined
+ */
+ 'optional'?: boolean;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/v1ConfigMapEnvSource.js b/dist/gen/model/v1ConfigMapEnvSource.js
new file mode 100644
index 0000000000..dcc0a584ad
--- /dev/null
+++ b/dist/gen/model/v1ConfigMapEnvSource.js
@@ -0,0 +1,36 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* ConfigMapEnvSource selects a ConfigMap to populate the environment variables with. The contents of the target ConfigMap\'s Data field will represent the key-value pairs as environment variables.
+*/
+class V1ConfigMapEnvSource {
+ static getAttributeTypeMap() {
+ return V1ConfigMapEnvSource.attributeTypeMap;
+ }
+}
+V1ConfigMapEnvSource.discriminator = undefined;
+V1ConfigMapEnvSource.attributeTypeMap = [
+ {
+ "name": "name",
+ "baseName": "name",
+ "type": "string"
+ },
+ {
+ "name": "optional",
+ "baseName": "optional",
+ "type": "boolean"
+ }
+];
+exports.V1ConfigMapEnvSource = V1ConfigMapEnvSource;
+//# sourceMappingURL=v1ConfigMapEnvSource.js.map
\ No newline at end of file
diff --git a/dist/gen/model/v1ConfigMapEnvSource.js.map b/dist/gen/model/v1ConfigMapEnvSource.js.map
new file mode 100644
index 0000000000..163c651f61
--- /dev/null
+++ b/dist/gen/model/v1ConfigMapEnvSource.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"v1ConfigMapEnvSource.js","sourceRoot":"","sources":["../../../src/gen/model/v1ConfigMapEnvSource.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAGH;;EAEE;AACF,MAAa,oBAAoB;IAwB7B,MAAM,CAAC,mBAAmB;QACtB,OAAO,oBAAoB,CAAC,gBAAgB,CAAC;IACjD,CAAC;;AAhBM,kCAAa,GAAuB,SAAS,CAAC;AAE9C,qCAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,UAAU;QAClB,UAAU,EAAE,UAAU;QACtB,MAAM,EAAE,SAAS;KACpB;CAAK,CAAC;AAtBf,oDA2BC"}
\ No newline at end of file
diff --git a/dist/gen/model/v1ConfigMapKeySelector.d.ts b/dist/gen/model/v1ConfigMapKeySelector.d.ts
new file mode 100644
index 0000000000..6b10089e79
--- /dev/null
+++ b/dist/gen/model/v1ConfigMapKeySelector.d.ts
@@ -0,0 +1,39 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+/**
+* Selects a key from a ConfigMap.
+*/
+export declare class V1ConfigMapKeySelector {
+ /**
+ * The key to select.
+ */
+ 'key': string;
+ /**
+ * Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
+ */
+ 'name'?: string;
+ /**
+ * Specify whether the ConfigMap or its key must be defined
+ */
+ 'optional'?: boolean;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/v1ConfigMapKeySelector.js b/dist/gen/model/v1ConfigMapKeySelector.js
new file mode 100644
index 0000000000..5af08477b1
--- /dev/null
+++ b/dist/gen/model/v1ConfigMapKeySelector.js
@@ -0,0 +1,41 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* Selects a key from a ConfigMap.
+*/
+class V1ConfigMapKeySelector {
+ static getAttributeTypeMap() {
+ return V1ConfigMapKeySelector.attributeTypeMap;
+ }
+}
+V1ConfigMapKeySelector.discriminator = undefined;
+V1ConfigMapKeySelector.attributeTypeMap = [
+ {
+ "name": "key",
+ "baseName": "key",
+ "type": "string"
+ },
+ {
+ "name": "name",
+ "baseName": "name",
+ "type": "string"
+ },
+ {
+ "name": "optional",
+ "baseName": "optional",
+ "type": "boolean"
+ }
+];
+exports.V1ConfigMapKeySelector = V1ConfigMapKeySelector;
+//# sourceMappingURL=v1ConfigMapKeySelector.js.map
\ No newline at end of file
diff --git a/dist/gen/model/v1ConfigMapKeySelector.js.map b/dist/gen/model/v1ConfigMapKeySelector.js.map
new file mode 100644
index 0000000000..468f37e3f6
--- /dev/null
+++ b/dist/gen/model/v1ConfigMapKeySelector.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"v1ConfigMapKeySelector.js","sourceRoot":"","sources":["../../../src/gen/model/v1ConfigMapKeySelector.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAGH;;EAEE;AACF,MAAa,sBAAsB;IAiC/B,MAAM,CAAC,mBAAmB;QACtB,OAAO,sBAAsB,CAAC,gBAAgB,CAAC;IACnD,CAAC;;AArBM,oCAAa,GAAuB,SAAS,CAAC;AAE9C,uCAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,KAAK;QACb,UAAU,EAAE,KAAK;QACjB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,UAAU;QAClB,UAAU,EAAE,UAAU;QACtB,MAAM,EAAE,SAAS;KACpB;CAAK,CAAC;AA/Bf,wDAoCC"}
\ No newline at end of file
diff --git a/dist/gen/model/v1ConfigMapList.d.ts b/dist/gen/model/v1ConfigMapList.d.ts
new file mode 100644
index 0000000000..d85b54930c
--- /dev/null
+++ b/dist/gen/model/v1ConfigMapList.d.ts
@@ -0,0 +1,42 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+import { V1ConfigMap } from './v1ConfigMap';
+import { V1ListMeta } from './v1ListMeta';
+/**
+* ConfigMapList is a resource containing a list of ConfigMap objects.
+*/
+export declare class V1ConfigMapList {
+ /**
+ * APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources
+ */
+ 'apiVersion'?: string;
+ /**
+ * Items is the list of ConfigMaps.
+ */
+ 'items': Array;
+ /**
+ * Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
+ */
+ 'kind'?: string;
+ 'metadata'?: V1ListMeta;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/v1ConfigMapList.js b/dist/gen/model/v1ConfigMapList.js
new file mode 100644
index 0000000000..753dea6a3e
--- /dev/null
+++ b/dist/gen/model/v1ConfigMapList.js
@@ -0,0 +1,46 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* ConfigMapList is a resource containing a list of ConfigMap objects.
+*/
+class V1ConfigMapList {
+ static getAttributeTypeMap() {
+ return V1ConfigMapList.attributeTypeMap;
+ }
+}
+V1ConfigMapList.discriminator = undefined;
+V1ConfigMapList.attributeTypeMap = [
+ {
+ "name": "apiVersion",
+ "baseName": "apiVersion",
+ "type": "string"
+ },
+ {
+ "name": "items",
+ "baseName": "items",
+ "type": "Array"
+ },
+ {
+ "name": "kind",
+ "baseName": "kind",
+ "type": "string"
+ },
+ {
+ "name": "metadata",
+ "baseName": "metadata",
+ "type": "V1ListMeta"
+ }
+];
+exports.V1ConfigMapList = V1ConfigMapList;
+//# sourceMappingURL=v1ConfigMapList.js.map
\ No newline at end of file
diff --git a/dist/gen/model/v1ConfigMapList.js.map b/dist/gen/model/v1ConfigMapList.js.map
new file mode 100644
index 0000000000..d7dacf4979
--- /dev/null
+++ b/dist/gen/model/v1ConfigMapList.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"v1ConfigMapList.js","sourceRoot":"","sources":["../../../src/gen/model/v1ConfigMapList.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAKH;;EAEE;AACF,MAAa,eAAe;IAuCxB,MAAM,CAAC,mBAAmB;QACtB,OAAO,eAAe,CAAC,gBAAgB,CAAC;IAC5C,CAAC;;AA1BM,6BAAa,GAAuB,SAAS,CAAC;AAE9C,gCAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,YAAY;QACpB,UAAU,EAAE,YAAY;QACxB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,OAAO;QACf,UAAU,EAAE,OAAO;QACnB,MAAM,EAAE,oBAAoB;KAC/B;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,UAAU;QAClB,UAAU,EAAE,UAAU;QACtB,MAAM,EAAE,YAAY;KACvB;CAAK,CAAC;AArCf,0CA0CC"}
\ No newline at end of file
diff --git a/dist/gen/model/v1ConfigMapNodeConfigSource.d.ts b/dist/gen/model/v1ConfigMapNodeConfigSource.d.ts
new file mode 100644
index 0000000000..ab20cd013b
--- /dev/null
+++ b/dist/gen/model/v1ConfigMapNodeConfigSource.d.ts
@@ -0,0 +1,47 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+/**
+* ConfigMapNodeConfigSource contains the information to reference a ConfigMap as a config source for the Node.
+*/
+export declare class V1ConfigMapNodeConfigSource {
+ /**
+ * KubeletConfigKey declares which key of the referenced ConfigMap corresponds to the KubeletConfiguration structure This field is required in all cases.
+ */
+ 'kubeletConfigKey': string;
+ /**
+ * Name is the metadata.name of the referenced ConfigMap. This field is required in all cases.
+ */
+ 'name': string;
+ /**
+ * Namespace is the metadata.namespace of the referenced ConfigMap. This field is required in all cases.
+ */
+ 'namespace': string;
+ /**
+ * ResourceVersion is the metadata.ResourceVersion of the referenced ConfigMap. This field is forbidden in Node.Spec, and required in Node.Status.
+ */
+ 'resourceVersion'?: string;
+ /**
+ * UID is the metadata.UID of the referenced ConfigMap. This field is forbidden in Node.Spec, and required in Node.Status.
+ */
+ 'uid'?: string;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/v1ConfigMapNodeConfigSource.js b/dist/gen/model/v1ConfigMapNodeConfigSource.js
new file mode 100644
index 0000000000..165f1fe476
--- /dev/null
+++ b/dist/gen/model/v1ConfigMapNodeConfigSource.js
@@ -0,0 +1,51 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* ConfigMapNodeConfigSource contains the information to reference a ConfigMap as a config source for the Node.
+*/
+class V1ConfigMapNodeConfigSource {
+ static getAttributeTypeMap() {
+ return V1ConfigMapNodeConfigSource.attributeTypeMap;
+ }
+}
+V1ConfigMapNodeConfigSource.discriminator = undefined;
+V1ConfigMapNodeConfigSource.attributeTypeMap = [
+ {
+ "name": "kubeletConfigKey",
+ "baseName": "kubeletConfigKey",
+ "type": "string"
+ },
+ {
+ "name": "name",
+ "baseName": "name",
+ "type": "string"
+ },
+ {
+ "name": "namespace",
+ "baseName": "namespace",
+ "type": "string"
+ },
+ {
+ "name": "resourceVersion",
+ "baseName": "resourceVersion",
+ "type": "string"
+ },
+ {
+ "name": "uid",
+ "baseName": "uid",
+ "type": "string"
+ }
+];
+exports.V1ConfigMapNodeConfigSource = V1ConfigMapNodeConfigSource;
+//# sourceMappingURL=v1ConfigMapNodeConfigSource.js.map
\ No newline at end of file
diff --git a/dist/gen/model/v1ConfigMapNodeConfigSource.js.map b/dist/gen/model/v1ConfigMapNodeConfigSource.js.map
new file mode 100644
index 0000000000..3144bf9d60
--- /dev/null
+++ b/dist/gen/model/v1ConfigMapNodeConfigSource.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"v1ConfigMapNodeConfigSource.js","sourceRoot":"","sources":["../../../src/gen/model/v1ConfigMapNodeConfigSource.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAGH;;EAEE;AACF,MAAa,2BAA2B;IAmDpC,MAAM,CAAC,mBAAmB;QACtB,OAAO,2BAA2B,CAAC,gBAAgB,CAAC;IACxD,CAAC;;AA/BM,yCAAa,GAAuB,SAAS,CAAC;AAE9C,4CAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,kBAAkB;QAC1B,UAAU,EAAE,kBAAkB;QAC9B,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,WAAW;QACnB,UAAU,EAAE,WAAW;QACvB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,iBAAiB;QACzB,UAAU,EAAE,iBAAiB;QAC7B,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,KAAK;QACb,UAAU,EAAE,KAAK;QACjB,MAAM,EAAE,QAAQ;KACnB;CAAK,CAAC;AAjDf,kEAsDC"}
\ No newline at end of file
diff --git a/dist/gen/model/v1ConfigMapProjection.d.ts b/dist/gen/model/v1ConfigMapProjection.d.ts
new file mode 100644
index 0000000000..ebcaaa1af1
--- /dev/null
+++ b/dist/gen/model/v1ConfigMapProjection.d.ts
@@ -0,0 +1,40 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+import { V1KeyToPath } from './v1KeyToPath';
+/**
+* Adapts a ConfigMap into a projected volume. The contents of the target ConfigMap\'s Data field will be presented in a projected volume as files using the keys in the Data field as the file names, unless the items element is populated with specific mappings of keys to paths. Note that this is identical to a configmap volume source without the default mode.
+*/
+export declare class V1ConfigMapProjection {
+ /**
+ * If unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the \'..\' path or start with \'..\'.
+ */
+ 'items'?: Array;
+ /**
+ * Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
+ */
+ 'name'?: string;
+ /**
+ * Specify whether the ConfigMap or its keys must be defined
+ */
+ 'optional'?: boolean;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/v1ConfigMapProjection.js b/dist/gen/model/v1ConfigMapProjection.js
new file mode 100644
index 0000000000..f72981f67d
--- /dev/null
+++ b/dist/gen/model/v1ConfigMapProjection.js
@@ -0,0 +1,41 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* Adapts a ConfigMap into a projected volume. The contents of the target ConfigMap\'s Data field will be presented in a projected volume as files using the keys in the Data field as the file names, unless the items element is populated with specific mappings of keys to paths. Note that this is identical to a configmap volume source without the default mode.
+*/
+class V1ConfigMapProjection {
+ static getAttributeTypeMap() {
+ return V1ConfigMapProjection.attributeTypeMap;
+ }
+}
+V1ConfigMapProjection.discriminator = undefined;
+V1ConfigMapProjection.attributeTypeMap = [
+ {
+ "name": "items",
+ "baseName": "items",
+ "type": "Array"
+ },
+ {
+ "name": "name",
+ "baseName": "name",
+ "type": "string"
+ },
+ {
+ "name": "optional",
+ "baseName": "optional",
+ "type": "boolean"
+ }
+];
+exports.V1ConfigMapProjection = V1ConfigMapProjection;
+//# sourceMappingURL=v1ConfigMapProjection.js.map
\ No newline at end of file
diff --git a/dist/gen/model/v1ConfigMapProjection.js.map b/dist/gen/model/v1ConfigMapProjection.js.map
new file mode 100644
index 0000000000..cc68ec56f4
--- /dev/null
+++ b/dist/gen/model/v1ConfigMapProjection.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"v1ConfigMapProjection.js","sourceRoot":"","sources":["../../../src/gen/model/v1ConfigMapProjection.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAIH;;EAEE;AACF,MAAa,qBAAqB;IAiC9B,MAAM,CAAC,mBAAmB;QACtB,OAAO,qBAAqB,CAAC,gBAAgB,CAAC;IAClD,CAAC;;AArBM,mCAAa,GAAuB,SAAS,CAAC;AAE9C,sCAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,OAAO;QACf,UAAU,EAAE,OAAO;QACnB,MAAM,EAAE,oBAAoB;KAC/B;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,UAAU;QAClB,UAAU,EAAE,UAAU;QACtB,MAAM,EAAE,SAAS;KACpB;CAAK,CAAC;AA/Bf,sDAoCC"}
\ No newline at end of file
diff --git a/dist/gen/model/v1ConfigMapVolumeSource.d.ts b/dist/gen/model/v1ConfigMapVolumeSource.d.ts
new file mode 100644
index 0000000000..ab08bdff9e
--- /dev/null
+++ b/dist/gen/model/v1ConfigMapVolumeSource.d.ts
@@ -0,0 +1,44 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+import { V1KeyToPath } from './v1KeyToPath';
+/**
+* Adapts a ConfigMap into a volume. The contents of the target ConfigMap\'s Data field will be presented in a volume as files using the keys in the Data field as the file names, unless the items element is populated with specific mappings of keys to paths. ConfigMap volumes support ownership management and SELinux relabeling.
+*/
+export declare class V1ConfigMapVolumeSource {
+ /**
+ * Optional: mode bits to use on created files by default. Must be a value between 0 and 0777. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.
+ */
+ 'defaultMode'?: number;
+ /**
+ * If unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the \'..\' path or start with \'..\'.
+ */
+ 'items'?: Array;
+ /**
+ * Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
+ */
+ 'name'?: string;
+ /**
+ * Specify whether the ConfigMap or its keys must be defined
+ */
+ 'optional'?: boolean;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/v1ConfigMapVolumeSource.js b/dist/gen/model/v1ConfigMapVolumeSource.js
new file mode 100644
index 0000000000..ed56b23da5
--- /dev/null
+++ b/dist/gen/model/v1ConfigMapVolumeSource.js
@@ -0,0 +1,46 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* Adapts a ConfigMap into a volume. The contents of the target ConfigMap\'s Data field will be presented in a volume as files using the keys in the Data field as the file names, unless the items element is populated with specific mappings of keys to paths. ConfigMap volumes support ownership management and SELinux relabeling.
+*/
+class V1ConfigMapVolumeSource {
+ static getAttributeTypeMap() {
+ return V1ConfigMapVolumeSource.attributeTypeMap;
+ }
+}
+V1ConfigMapVolumeSource.discriminator = undefined;
+V1ConfigMapVolumeSource.attributeTypeMap = [
+ {
+ "name": "defaultMode",
+ "baseName": "defaultMode",
+ "type": "number"
+ },
+ {
+ "name": "items",
+ "baseName": "items",
+ "type": "Array"
+ },
+ {
+ "name": "name",
+ "baseName": "name",
+ "type": "string"
+ },
+ {
+ "name": "optional",
+ "baseName": "optional",
+ "type": "boolean"
+ }
+];
+exports.V1ConfigMapVolumeSource = V1ConfigMapVolumeSource;
+//# sourceMappingURL=v1ConfigMapVolumeSource.js.map
\ No newline at end of file
diff --git a/dist/gen/model/v1ConfigMapVolumeSource.js.map b/dist/gen/model/v1ConfigMapVolumeSource.js.map
new file mode 100644
index 0000000000..e2174c79d3
--- /dev/null
+++ b/dist/gen/model/v1ConfigMapVolumeSource.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"v1ConfigMapVolumeSource.js","sourceRoot":"","sources":["../../../src/gen/model/v1ConfigMapVolumeSource.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAIH;;EAEE;AACF,MAAa,uBAAuB;IA0ChC,MAAM,CAAC,mBAAmB;QACtB,OAAO,uBAAuB,CAAC,gBAAgB,CAAC;IACpD,CAAC;;AA1BM,qCAAa,GAAuB,SAAS,CAAC;AAE9C,wCAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,aAAa;QACrB,UAAU,EAAE,aAAa;QACzB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,OAAO;QACf,UAAU,EAAE,OAAO;QACnB,MAAM,EAAE,oBAAoB;KAC/B;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,UAAU;QAClB,UAAU,EAAE,UAAU;QACtB,MAAM,EAAE,SAAS;KACpB;CAAK,CAAC;AAxCf,0DA6CC"}
\ No newline at end of file
diff --git a/dist/gen/model/v1Container.d.ts b/dist/gen/model/v1Container.d.ts
new file mode 100644
index 0000000000..e7b71733a7
--- /dev/null
+++ b/dist/gen/model/v1Container.d.ts
@@ -0,0 +1,105 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+import { V1ContainerPort } from './v1ContainerPort';
+import { V1EnvFromSource } from './v1EnvFromSource';
+import { V1EnvVar } from './v1EnvVar';
+import { V1Lifecycle } from './v1Lifecycle';
+import { V1Probe } from './v1Probe';
+import { V1ResourceRequirements } from './v1ResourceRequirements';
+import { V1SecurityContext } from './v1SecurityContext';
+import { V1VolumeDevice } from './v1VolumeDevice';
+import { V1VolumeMount } from './v1VolumeMount';
+/**
+* A single application container that you want to run within a pod.
+*/
+export declare class V1Container {
+ /**
+ * Arguments to the entrypoint. The docker image\'s CMD is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container\'s environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell
+ */
+ 'args'?: Array;
+ /**
+ * Entrypoint array. Not executed within a shell. The docker image\'s ENTRYPOINT is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container\'s environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell
+ */
+ 'command'?: Array;
+ /**
+ * List of environment variables to set in the container. Cannot be updated.
+ */
+ 'env'?: Array;
+ /**
+ * List of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. All invalid keys will be reported as an event when the container is starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated.
+ */
+ 'envFrom'?: Array;
+ /**
+ * Docker image name. More info: https://kubernetes.io/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets.
+ */
+ 'image'?: string;
+ /**
+ * Image pull policy. One of Always, Never, IfNotPresent. Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. Cannot be updated. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images
+ */
+ 'imagePullPolicy'?: string;
+ 'lifecycle'?: V1Lifecycle;
+ 'livenessProbe'?: V1Probe;
+ /**
+ * Name of the container specified as a DNS_LABEL. Each container in a pod must have a unique name (DNS_LABEL). Cannot be updated.
+ */
+ 'name': string;
+ /**
+ * List of ports to expose from the container. Exposing a port here gives the system additional information about the network connections a container uses, but is primarily informational. Not specifying a port here DOES NOT prevent that port from being exposed. Any port which is listening on the default \"0.0.0.0\" address inside a container will be accessible from the network. Cannot be updated.
+ */
+ 'ports'?: Array;
+ 'readinessProbe'?: V1Probe;
+ 'resources'?: V1ResourceRequirements;
+ 'securityContext'?: V1SecurityContext;
+ /**
+ * Whether this container should allocate a buffer for stdin in the container runtime. If this is not set, reads from stdin in the container will always result in EOF. Default is false.
+ */
+ 'stdin'?: boolean;
+ /**
+ * Whether the container runtime should close the stdin channel after it has been opened by a single attach. When stdin is true the stdin stream will remain open across multiple attach sessions. If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted. If this flag is false, a container processes that reads from stdin will never receive an EOF. Default is false
+ */
+ 'stdinOnce'?: boolean;
+ /**
+ * Optional: Path at which the file to which the container\'s termination message will be written is mounted into the container\'s filesystem. Message written is intended to be brief final status, such as an assertion failure message. Will be truncated by the node if greater than 4096 bytes. The total message length across all containers will be limited to 12kb. Defaults to /dev/termination-log. Cannot be updated.
+ */
+ 'terminationMessagePath'?: string;
+ /**
+ * Indicate how the termination message should be populated. File will use the contents of terminationMessagePath to populate the container status message on both success and failure. FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error. The log output is limited to 2048 bytes or 80 lines, whichever is smaller. Defaults to File. Cannot be updated.
+ */
+ 'terminationMessagePolicy'?: string;
+ /**
+ * Whether this container should allocate a TTY for itself, also requires \'stdin\' to be true. Default is false.
+ */
+ 'tty'?: boolean;
+ /**
+ * volumeDevices is the list of block devices to be used by the container. This is a beta feature.
+ */
+ 'volumeDevices'?: Array;
+ /**
+ * Pod volumes to mount into the container\'s filesystem. Cannot be updated.
+ */
+ 'volumeMounts'?: Array;
+ /**
+ * Container\'s working directory. If not specified, the container runtime\'s default will be used, which might be configured in the container image. Cannot be updated.
+ */
+ 'workingDir'?: string;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/v1Container.js b/dist/gen/model/v1Container.js
new file mode 100644
index 0000000000..399db24cd3
--- /dev/null
+++ b/dist/gen/model/v1Container.js
@@ -0,0 +1,131 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* A single application container that you want to run within a pod.
+*/
+class V1Container {
+ static getAttributeTypeMap() {
+ return V1Container.attributeTypeMap;
+ }
+}
+V1Container.discriminator = undefined;
+V1Container.attributeTypeMap = [
+ {
+ "name": "args",
+ "baseName": "args",
+ "type": "Array"
+ },
+ {
+ "name": "command",
+ "baseName": "command",
+ "type": "Array"
+ },
+ {
+ "name": "env",
+ "baseName": "env",
+ "type": "Array"
+ },
+ {
+ "name": "envFrom",
+ "baseName": "envFrom",
+ "type": "Array"
+ },
+ {
+ "name": "image",
+ "baseName": "image",
+ "type": "string"
+ },
+ {
+ "name": "imagePullPolicy",
+ "baseName": "imagePullPolicy",
+ "type": "string"
+ },
+ {
+ "name": "lifecycle",
+ "baseName": "lifecycle",
+ "type": "V1Lifecycle"
+ },
+ {
+ "name": "livenessProbe",
+ "baseName": "livenessProbe",
+ "type": "V1Probe"
+ },
+ {
+ "name": "name",
+ "baseName": "name",
+ "type": "string"
+ },
+ {
+ "name": "ports",
+ "baseName": "ports",
+ "type": "Array"
+ },
+ {
+ "name": "readinessProbe",
+ "baseName": "readinessProbe",
+ "type": "V1Probe"
+ },
+ {
+ "name": "resources",
+ "baseName": "resources",
+ "type": "V1ResourceRequirements"
+ },
+ {
+ "name": "securityContext",
+ "baseName": "securityContext",
+ "type": "V1SecurityContext"
+ },
+ {
+ "name": "stdin",
+ "baseName": "stdin",
+ "type": "boolean"
+ },
+ {
+ "name": "stdinOnce",
+ "baseName": "stdinOnce",
+ "type": "boolean"
+ },
+ {
+ "name": "terminationMessagePath",
+ "baseName": "terminationMessagePath",
+ "type": "string"
+ },
+ {
+ "name": "terminationMessagePolicy",
+ "baseName": "terminationMessagePolicy",
+ "type": "string"
+ },
+ {
+ "name": "tty",
+ "baseName": "tty",
+ "type": "boolean"
+ },
+ {
+ "name": "volumeDevices",
+ "baseName": "volumeDevices",
+ "type": "Array"
+ },
+ {
+ "name": "volumeMounts",
+ "baseName": "volumeMounts",
+ "type": "Array"
+ },
+ {
+ "name": "workingDir",
+ "baseName": "workingDir",
+ "type": "string"
+ }
+];
+exports.V1Container = V1Container;
+//# sourceMappingURL=v1Container.js.map
\ No newline at end of file
diff --git a/dist/gen/model/v1Container.js.map b/dist/gen/model/v1Container.js.map
new file mode 100644
index 0000000000..e41e7dbc98
--- /dev/null
+++ b/dist/gen/model/v1Container.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"v1Container.js","sourceRoot":"","sources":["../../../src/gen/model/v1Container.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAYH;;EAEE;AACF,MAAa,WAAW;IAoLpB,MAAM,CAAC,mBAAmB;QACtB,OAAO,WAAW,CAAC,gBAAgB,CAAC;IACxC,CAAC;;AA/GM,yBAAa,GAAuB,SAAS,CAAC;AAE9C,4BAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,eAAe;KAC1B;IACD;QACI,MAAM,EAAE,SAAS;QACjB,UAAU,EAAE,SAAS;QACrB,MAAM,EAAE,eAAe;KAC1B;IACD;QACI,MAAM,EAAE,KAAK;QACb,UAAU,EAAE,KAAK;QACjB,MAAM,EAAE,iBAAiB;KAC5B;IACD;QACI,MAAM,EAAE,SAAS;QACjB,UAAU,EAAE,SAAS;QACrB,MAAM,EAAE,wBAAwB;KACnC;IACD;QACI,MAAM,EAAE,OAAO;QACf,UAAU,EAAE,OAAO;QACnB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,iBAAiB;QACzB,UAAU,EAAE,iBAAiB;QAC7B,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,WAAW;QACnB,UAAU,EAAE,WAAW;QACvB,MAAM,EAAE,aAAa;KACxB;IACD;QACI,MAAM,EAAE,eAAe;QACvB,UAAU,EAAE,eAAe;QAC3B,MAAM,EAAE,SAAS;KACpB;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,OAAO;QACf,UAAU,EAAE,OAAO;QACnB,MAAM,EAAE,wBAAwB;KACnC;IACD;QACI,MAAM,EAAE,gBAAgB;QACxB,UAAU,EAAE,gBAAgB;QAC5B,MAAM,EAAE,SAAS;KACpB;IACD;QACI,MAAM,EAAE,WAAW;QACnB,UAAU,EAAE,WAAW;QACvB,MAAM,EAAE,wBAAwB;KACnC;IACD;QACI,MAAM,EAAE,iBAAiB;QACzB,UAAU,EAAE,iBAAiB;QAC7B,MAAM,EAAE,mBAAmB;KAC9B;IACD;QACI,MAAM,EAAE,OAAO;QACf,UAAU,EAAE,OAAO;QACnB,MAAM,EAAE,SAAS;KACpB;IACD;QACI,MAAM,EAAE,WAAW;QACnB,UAAU,EAAE,WAAW;QACvB,MAAM,EAAE,SAAS;KACpB;IACD;QACI,MAAM,EAAE,wBAAwB;QAChC,UAAU,EAAE,wBAAwB;QACpC,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,0BAA0B;QAClC,UAAU,EAAE,0BAA0B;QACtC,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,KAAK;QACb,UAAU,EAAE,KAAK;QACjB,MAAM,EAAE,SAAS;KACpB;IACD;QACI,MAAM,EAAE,eAAe;QACvB,UAAU,EAAE,eAAe;QAC3B,MAAM,EAAE,uBAAuB;KAClC;IACD;QACI,MAAM,EAAE,cAAc;QACtB,UAAU,EAAE,cAAc;QAC1B,MAAM,EAAE,sBAAsB;KACjC;IACD;QACI,MAAM,EAAE,YAAY;QACpB,UAAU,EAAE,YAAY;QACxB,MAAM,EAAE,QAAQ;KACnB;CAAK,CAAC;AAlLf,kCAuLC"}
\ No newline at end of file
diff --git a/dist/gen/model/v1ContainerImage.d.ts b/dist/gen/model/v1ContainerImage.d.ts
new file mode 100644
index 0000000000..ac931be0e2
--- /dev/null
+++ b/dist/gen/model/v1ContainerImage.d.ts
@@ -0,0 +1,35 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+/**
+* Describe a container image
+*/
+export declare class V1ContainerImage {
+ /**
+ * Names by which this image is known. e.g. [\"k8s.gcr.io/hyperkube:v1.0.7\", \"dockerhub.io/google_containers/hyperkube:v1.0.7\"]
+ */
+ 'names': Array;
+ /**
+ * The size of the image in bytes.
+ */
+ 'sizeBytes'?: number;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/v1ContainerImage.js b/dist/gen/model/v1ContainerImage.js
new file mode 100644
index 0000000000..55137ec214
--- /dev/null
+++ b/dist/gen/model/v1ContainerImage.js
@@ -0,0 +1,36 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* Describe a container image
+*/
+class V1ContainerImage {
+ static getAttributeTypeMap() {
+ return V1ContainerImage.attributeTypeMap;
+ }
+}
+V1ContainerImage.discriminator = undefined;
+V1ContainerImage.attributeTypeMap = [
+ {
+ "name": "names",
+ "baseName": "names",
+ "type": "Array"
+ },
+ {
+ "name": "sizeBytes",
+ "baseName": "sizeBytes",
+ "type": "number"
+ }
+];
+exports.V1ContainerImage = V1ContainerImage;
+//# sourceMappingURL=v1ContainerImage.js.map
\ No newline at end of file
diff --git a/dist/gen/model/v1ContainerImage.js.map b/dist/gen/model/v1ContainerImage.js.map
new file mode 100644
index 0000000000..a13db9519f
--- /dev/null
+++ b/dist/gen/model/v1ContainerImage.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"v1ContainerImage.js","sourceRoot":"","sources":["../../../src/gen/model/v1ContainerImage.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAGH;;EAEE;AACF,MAAa,gBAAgB;IAwBzB,MAAM,CAAC,mBAAmB;QACtB,OAAO,gBAAgB,CAAC,gBAAgB,CAAC;IAC7C,CAAC;;AAhBM,8BAAa,GAAuB,SAAS,CAAC;AAE9C,iCAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,OAAO;QACf,UAAU,EAAE,OAAO;QACnB,MAAM,EAAE,eAAe;KAC1B;IACD;QACI,MAAM,EAAE,WAAW;QACnB,UAAU,EAAE,WAAW;QACvB,MAAM,EAAE,QAAQ;KACnB;CAAK,CAAC;AAtBf,4CA2BC"}
\ No newline at end of file
diff --git a/dist/gen/model/v1ContainerPort.d.ts b/dist/gen/model/v1ContainerPort.d.ts
new file mode 100644
index 0000000000..45fd0a4a2e
--- /dev/null
+++ b/dist/gen/model/v1ContainerPort.d.ts
@@ -0,0 +1,47 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+/**
+* ContainerPort represents a network port in a single container.
+*/
+export declare class V1ContainerPort {
+ /**
+ * Number of port to expose on the pod\'s IP address. This must be a valid port number, 0 < x < 65536.
+ */
+ 'containerPort': number;
+ /**
+ * What host IP to bind the external port to.
+ */
+ 'hostIP'?: string;
+ /**
+ * Number of port to expose on the host. If specified, this must be a valid port number, 0 < x < 65536. If HostNetwork is specified, this must match ContainerPort. Most containers do not need this.
+ */
+ 'hostPort'?: number;
+ /**
+ * If specified, this must be an IANA_SVC_NAME and unique within the pod. Each named port in a pod must have a unique name. Name for the port that can be referred to by services.
+ */
+ 'name'?: string;
+ /**
+ * Protocol for port. Must be UDP, TCP, or SCTP. Defaults to \"TCP\".
+ */
+ 'protocol'?: string;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/v1ContainerPort.js b/dist/gen/model/v1ContainerPort.js
new file mode 100644
index 0000000000..d589923367
--- /dev/null
+++ b/dist/gen/model/v1ContainerPort.js
@@ -0,0 +1,51 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* ContainerPort represents a network port in a single container.
+*/
+class V1ContainerPort {
+ static getAttributeTypeMap() {
+ return V1ContainerPort.attributeTypeMap;
+ }
+}
+V1ContainerPort.discriminator = undefined;
+V1ContainerPort.attributeTypeMap = [
+ {
+ "name": "containerPort",
+ "baseName": "containerPort",
+ "type": "number"
+ },
+ {
+ "name": "hostIP",
+ "baseName": "hostIP",
+ "type": "string"
+ },
+ {
+ "name": "hostPort",
+ "baseName": "hostPort",
+ "type": "number"
+ },
+ {
+ "name": "name",
+ "baseName": "name",
+ "type": "string"
+ },
+ {
+ "name": "protocol",
+ "baseName": "protocol",
+ "type": "string"
+ }
+];
+exports.V1ContainerPort = V1ContainerPort;
+//# sourceMappingURL=v1ContainerPort.js.map
\ No newline at end of file
diff --git a/dist/gen/model/v1ContainerPort.js.map b/dist/gen/model/v1ContainerPort.js.map
new file mode 100644
index 0000000000..fa382e0951
--- /dev/null
+++ b/dist/gen/model/v1ContainerPort.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"v1ContainerPort.js","sourceRoot":"","sources":["../../../src/gen/model/v1ContainerPort.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAGH;;EAEE;AACF,MAAa,eAAe;IAmDxB,MAAM,CAAC,mBAAmB;QACtB,OAAO,eAAe,CAAC,gBAAgB,CAAC;IAC5C,CAAC;;AA/BM,6BAAa,GAAuB,SAAS,CAAC;AAE9C,gCAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,eAAe;QACvB,UAAU,EAAE,eAAe;QAC3B,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,QAAQ;QAChB,UAAU,EAAE,QAAQ;QACpB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,UAAU;QAClB,UAAU,EAAE,UAAU;QACtB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,UAAU;QAClB,UAAU,EAAE,UAAU;QACtB,MAAM,EAAE,QAAQ;KACnB;CAAK,CAAC;AAjDf,0CAsDC"}
\ No newline at end of file
diff --git a/dist/gen/model/v1ContainerState.d.ts b/dist/gen/model/v1ContainerState.d.ts
new file mode 100644
index 0000000000..213ab04660
--- /dev/null
+++ b/dist/gen/model/v1ContainerState.d.ts
@@ -0,0 +1,33 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+import { V1ContainerStateRunning } from './v1ContainerStateRunning';
+import { V1ContainerStateTerminated } from './v1ContainerStateTerminated';
+import { V1ContainerStateWaiting } from './v1ContainerStateWaiting';
+/**
+* ContainerState holds a possible state of container. Only one of its members may be specified. If none of them is specified, the default one is ContainerStateWaiting.
+*/
+export declare class V1ContainerState {
+ 'running'?: V1ContainerStateRunning;
+ 'terminated'?: V1ContainerStateTerminated;
+ 'waiting'?: V1ContainerStateWaiting;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/v1ContainerState.js b/dist/gen/model/v1ContainerState.js
new file mode 100644
index 0000000000..23556cd262
--- /dev/null
+++ b/dist/gen/model/v1ContainerState.js
@@ -0,0 +1,41 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* ContainerState holds a possible state of container. Only one of its members may be specified. If none of them is specified, the default one is ContainerStateWaiting.
+*/
+class V1ContainerState {
+ static getAttributeTypeMap() {
+ return V1ContainerState.attributeTypeMap;
+ }
+}
+V1ContainerState.discriminator = undefined;
+V1ContainerState.attributeTypeMap = [
+ {
+ "name": "running",
+ "baseName": "running",
+ "type": "V1ContainerStateRunning"
+ },
+ {
+ "name": "terminated",
+ "baseName": "terminated",
+ "type": "V1ContainerStateTerminated"
+ },
+ {
+ "name": "waiting",
+ "baseName": "waiting",
+ "type": "V1ContainerStateWaiting"
+ }
+];
+exports.V1ContainerState = V1ContainerState;
+//# sourceMappingURL=v1ContainerState.js.map
\ No newline at end of file
diff --git a/dist/gen/model/v1ContainerState.js.map b/dist/gen/model/v1ContainerState.js.map
new file mode 100644
index 0000000000..2c3b6b5fdb
--- /dev/null
+++ b/dist/gen/model/v1ContainerState.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"v1ContainerState.js","sourceRoot":"","sources":["../../../src/gen/model/v1ContainerState.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAMH;;EAEE;AACF,MAAa,gBAAgB;IAwBzB,MAAM,CAAC,mBAAmB;QACtB,OAAO,gBAAgB,CAAC,gBAAgB,CAAC;IAC7C,CAAC;;AArBM,8BAAa,GAAuB,SAAS,CAAC;AAE9C,iCAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,SAAS;QACjB,UAAU,EAAE,SAAS;QACrB,MAAM,EAAE,yBAAyB;KACpC;IACD;QACI,MAAM,EAAE,YAAY;QACpB,UAAU,EAAE,YAAY;QACxB,MAAM,EAAE,4BAA4B;KACvC;IACD;QACI,MAAM,EAAE,SAAS;QACjB,UAAU,EAAE,SAAS;QACrB,MAAM,EAAE,yBAAyB;KACpC;CAAK,CAAC;AAtBf,4CA2BC"}
\ No newline at end of file
diff --git a/dist/gen/model/v1ContainerStateRunning.d.ts b/dist/gen/model/v1ContainerStateRunning.d.ts
new file mode 100644
index 0000000000..84cccecf71
--- /dev/null
+++ b/dist/gen/model/v1ContainerStateRunning.d.ts
@@ -0,0 +1,31 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+/**
+* ContainerStateRunning is a running state of a container.
+*/
+export declare class V1ContainerStateRunning {
+ /**
+ * Time at which the container was last (re-)started
+ */
+ 'startedAt'?: Date;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/v1ContainerStateRunning.js b/dist/gen/model/v1ContainerStateRunning.js
new file mode 100644
index 0000000000..dca3717b77
--- /dev/null
+++ b/dist/gen/model/v1ContainerStateRunning.js
@@ -0,0 +1,31 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* ContainerStateRunning is a running state of a container.
+*/
+class V1ContainerStateRunning {
+ static getAttributeTypeMap() {
+ return V1ContainerStateRunning.attributeTypeMap;
+ }
+}
+V1ContainerStateRunning.discriminator = undefined;
+V1ContainerStateRunning.attributeTypeMap = [
+ {
+ "name": "startedAt",
+ "baseName": "startedAt",
+ "type": "Date"
+ }
+];
+exports.V1ContainerStateRunning = V1ContainerStateRunning;
+//# sourceMappingURL=v1ContainerStateRunning.js.map
\ No newline at end of file
diff --git a/dist/gen/model/v1ContainerStateRunning.js.map b/dist/gen/model/v1ContainerStateRunning.js.map
new file mode 100644
index 0000000000..72949efdd8
--- /dev/null
+++ b/dist/gen/model/v1ContainerStateRunning.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"v1ContainerStateRunning.js","sourceRoot":"","sources":["../../../src/gen/model/v1ContainerStateRunning.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAGH;;EAEE;AACF,MAAa,uBAAuB;IAehC,MAAM,CAAC,mBAAmB;QACtB,OAAO,uBAAuB,CAAC,gBAAgB,CAAC;IACpD,CAAC;;AAXM,qCAAa,GAAuB,SAAS,CAAC;AAE9C,wCAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,WAAW;QACnB,UAAU,EAAE,WAAW;QACvB,MAAM,EAAE,MAAM;KACjB;CAAK,CAAC;AAbf,0DAkBC"}
\ No newline at end of file
diff --git a/dist/gen/model/v1ContainerStateTerminated.d.ts b/dist/gen/model/v1ContainerStateTerminated.d.ts
new file mode 100644
index 0000000000..201eaea8e0
--- /dev/null
+++ b/dist/gen/model/v1ContainerStateTerminated.d.ts
@@ -0,0 +1,55 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+/**
+* ContainerStateTerminated is a terminated state of a container.
+*/
+export declare class V1ContainerStateTerminated {
+ /**
+ * Container\'s ID in the format \'docker://\'
+ */
+ 'containerID'?: string;
+ /**
+ * Exit status from the last termination of the container
+ */
+ 'exitCode': number;
+ /**
+ * Time at which the container last terminated
+ */
+ 'finishedAt'?: Date;
+ /**
+ * Message regarding the last termination of the container
+ */
+ 'message'?: string;
+ /**
+ * (brief) reason from the last termination of the container
+ */
+ 'reason'?: string;
+ /**
+ * Signal from the last termination of the container
+ */
+ 'signal'?: number;
+ /**
+ * Time at which previous execution of the container started
+ */
+ 'startedAt'?: Date;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/v1ContainerStateTerminated.js b/dist/gen/model/v1ContainerStateTerminated.js
new file mode 100644
index 0000000000..942033fab0
--- /dev/null
+++ b/dist/gen/model/v1ContainerStateTerminated.js
@@ -0,0 +1,61 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* ContainerStateTerminated is a terminated state of a container.
+*/
+class V1ContainerStateTerminated {
+ static getAttributeTypeMap() {
+ return V1ContainerStateTerminated.attributeTypeMap;
+ }
+}
+V1ContainerStateTerminated.discriminator = undefined;
+V1ContainerStateTerminated.attributeTypeMap = [
+ {
+ "name": "containerID",
+ "baseName": "containerID",
+ "type": "string"
+ },
+ {
+ "name": "exitCode",
+ "baseName": "exitCode",
+ "type": "number"
+ },
+ {
+ "name": "finishedAt",
+ "baseName": "finishedAt",
+ "type": "Date"
+ },
+ {
+ "name": "message",
+ "baseName": "message",
+ "type": "string"
+ },
+ {
+ "name": "reason",
+ "baseName": "reason",
+ "type": "string"
+ },
+ {
+ "name": "signal",
+ "baseName": "signal",
+ "type": "number"
+ },
+ {
+ "name": "startedAt",
+ "baseName": "startedAt",
+ "type": "Date"
+ }
+];
+exports.V1ContainerStateTerminated = V1ContainerStateTerminated;
+//# sourceMappingURL=v1ContainerStateTerminated.js.map
\ No newline at end of file
diff --git a/dist/gen/model/v1ContainerStateTerminated.js.map b/dist/gen/model/v1ContainerStateTerminated.js.map
new file mode 100644
index 0000000000..8c5c144fb4
--- /dev/null
+++ b/dist/gen/model/v1ContainerStateTerminated.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"v1ContainerStateTerminated.js","sourceRoot":"","sources":["../../../src/gen/model/v1ContainerStateTerminated.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAGH;;EAEE;AACF,MAAa,0BAA0B;IAqEnC,MAAM,CAAC,mBAAmB;QACtB,OAAO,0BAA0B,CAAC,gBAAgB,CAAC;IACvD,CAAC;;AAzCM,wCAAa,GAAuB,SAAS,CAAC;AAE9C,2CAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,aAAa;QACrB,UAAU,EAAE,aAAa;QACzB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,UAAU;QAClB,UAAU,EAAE,UAAU;QACtB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,YAAY;QACpB,UAAU,EAAE,YAAY;QACxB,MAAM,EAAE,MAAM;KACjB;IACD;QACI,MAAM,EAAE,SAAS;QACjB,UAAU,EAAE,SAAS;QACrB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,QAAQ;QAChB,UAAU,EAAE,QAAQ;QACpB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,QAAQ;QAChB,UAAU,EAAE,QAAQ;QACpB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,WAAW;QACnB,UAAU,EAAE,WAAW;QACvB,MAAM,EAAE,MAAM;KACjB;CAAK,CAAC;AAnEf,gEAwEC"}
\ No newline at end of file
diff --git a/dist/gen/model/v1ContainerStateWaiting.d.ts b/dist/gen/model/v1ContainerStateWaiting.d.ts
new file mode 100644
index 0000000000..60b184439e
--- /dev/null
+++ b/dist/gen/model/v1ContainerStateWaiting.d.ts
@@ -0,0 +1,35 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+/**
+* ContainerStateWaiting is a waiting state of a container.
+*/
+export declare class V1ContainerStateWaiting {
+ /**
+ * Message regarding why the container is not yet running.
+ */
+ 'message'?: string;
+ /**
+ * (brief) reason the container is not yet running.
+ */
+ 'reason'?: string;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/v1ContainerStateWaiting.js b/dist/gen/model/v1ContainerStateWaiting.js
new file mode 100644
index 0000000000..65e0f2c157
--- /dev/null
+++ b/dist/gen/model/v1ContainerStateWaiting.js
@@ -0,0 +1,36 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* ContainerStateWaiting is a waiting state of a container.
+*/
+class V1ContainerStateWaiting {
+ static getAttributeTypeMap() {
+ return V1ContainerStateWaiting.attributeTypeMap;
+ }
+}
+V1ContainerStateWaiting.discriminator = undefined;
+V1ContainerStateWaiting.attributeTypeMap = [
+ {
+ "name": "message",
+ "baseName": "message",
+ "type": "string"
+ },
+ {
+ "name": "reason",
+ "baseName": "reason",
+ "type": "string"
+ }
+];
+exports.V1ContainerStateWaiting = V1ContainerStateWaiting;
+//# sourceMappingURL=v1ContainerStateWaiting.js.map
\ No newline at end of file
diff --git a/dist/gen/model/v1ContainerStateWaiting.js.map b/dist/gen/model/v1ContainerStateWaiting.js.map
new file mode 100644
index 0000000000..6b090781c3
--- /dev/null
+++ b/dist/gen/model/v1ContainerStateWaiting.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"v1ContainerStateWaiting.js","sourceRoot":"","sources":["../../../src/gen/model/v1ContainerStateWaiting.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAGH;;EAEE;AACF,MAAa,uBAAuB;IAwBhC,MAAM,CAAC,mBAAmB;QACtB,OAAO,uBAAuB,CAAC,gBAAgB,CAAC;IACpD,CAAC;;AAhBM,qCAAa,GAAuB,SAAS,CAAC;AAE9C,wCAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,SAAS;QACjB,UAAU,EAAE,SAAS;QACrB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,QAAQ;QAChB,UAAU,EAAE,QAAQ;QACpB,MAAM,EAAE,QAAQ;KACnB;CAAK,CAAC;AAtBf,0DA2BC"}
\ No newline at end of file
diff --git a/dist/gen/model/v1ContainerStatus.d.ts b/dist/gen/model/v1ContainerStatus.d.ts
new file mode 100644
index 0000000000..d2aec2ac9a
--- /dev/null
+++ b/dist/gen/model/v1ContainerStatus.d.ts
@@ -0,0 +1,54 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+import { V1ContainerState } from './v1ContainerState';
+/**
+* ContainerStatus contains details for the current status of this container.
+*/
+export declare class V1ContainerStatus {
+ /**
+ * Container\'s ID in the format \'docker://\'.
+ */
+ 'containerID'?: string;
+ /**
+ * The image the container is running. More info: https://kubernetes.io/docs/concepts/containers/images
+ */
+ 'image': string;
+ /**
+ * ImageID of the container\'s image.
+ */
+ 'imageID': string;
+ 'lastState'?: V1ContainerState;
+ /**
+ * This must be a DNS_LABEL. Each container in a pod must have a unique name. Cannot be updated.
+ */
+ 'name': string;
+ /**
+ * Specifies whether the container has passed its readiness probe.
+ */
+ 'ready': boolean;
+ /**
+ * The number of times the container has been restarted, currently based on the number of dead containers that have not yet been removed. Note that this is calculated from dead containers. But those containers are subject to garbage collection. This value will get capped at 5 by GC.
+ */
+ 'restartCount': number;
+ 'state'?: V1ContainerState;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/v1ContainerStatus.js b/dist/gen/model/v1ContainerStatus.js
new file mode 100644
index 0000000000..555c3c79d3
--- /dev/null
+++ b/dist/gen/model/v1ContainerStatus.js
@@ -0,0 +1,66 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* ContainerStatus contains details for the current status of this container.
+*/
+class V1ContainerStatus {
+ static getAttributeTypeMap() {
+ return V1ContainerStatus.attributeTypeMap;
+ }
+}
+V1ContainerStatus.discriminator = undefined;
+V1ContainerStatus.attributeTypeMap = [
+ {
+ "name": "containerID",
+ "baseName": "containerID",
+ "type": "string"
+ },
+ {
+ "name": "image",
+ "baseName": "image",
+ "type": "string"
+ },
+ {
+ "name": "imageID",
+ "baseName": "imageID",
+ "type": "string"
+ },
+ {
+ "name": "lastState",
+ "baseName": "lastState",
+ "type": "V1ContainerState"
+ },
+ {
+ "name": "name",
+ "baseName": "name",
+ "type": "string"
+ },
+ {
+ "name": "ready",
+ "baseName": "ready",
+ "type": "boolean"
+ },
+ {
+ "name": "restartCount",
+ "baseName": "restartCount",
+ "type": "number"
+ },
+ {
+ "name": "state",
+ "baseName": "state",
+ "type": "V1ContainerState"
+ }
+];
+exports.V1ContainerStatus = V1ContainerStatus;
+//# sourceMappingURL=v1ContainerStatus.js.map
\ No newline at end of file
diff --git a/dist/gen/model/v1ContainerStatus.js.map b/dist/gen/model/v1ContainerStatus.js.map
new file mode 100644
index 0000000000..9efed71145
--- /dev/null
+++ b/dist/gen/model/v1ContainerStatus.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"v1ContainerStatus.js","sourceRoot":"","sources":["../../../src/gen/model/v1ContainerStatus.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAIH;;EAEE;AACF,MAAa,iBAAiB;IAwE1B,MAAM,CAAC,mBAAmB;QACtB,OAAO,iBAAiB,CAAC,gBAAgB,CAAC;IAC9C,CAAC;;AA9CM,+BAAa,GAAuB,SAAS,CAAC;AAE9C,kCAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,aAAa;QACrB,UAAU,EAAE,aAAa;QACzB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,OAAO;QACf,UAAU,EAAE,OAAO;QACnB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,SAAS;QACjB,UAAU,EAAE,SAAS;QACrB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,WAAW;QACnB,UAAU,EAAE,WAAW;QACvB,MAAM,EAAE,kBAAkB;KAC7B;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,OAAO;QACf,UAAU,EAAE,OAAO;QACnB,MAAM,EAAE,SAAS;KACpB;IACD;QACI,MAAM,EAAE,cAAc;QACtB,UAAU,EAAE,cAAc;QAC1B,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,OAAO;QACf,UAAU,EAAE,OAAO;QACnB,MAAM,EAAE,kBAAkB;KAC7B;CAAK,CAAC;AAtEf,8CA2EC"}
\ No newline at end of file
diff --git a/dist/gen/model/v1ControllerRevision.d.ts b/dist/gen/model/v1ControllerRevision.d.ts
new file mode 100644
index 0000000000..0d76fac568
--- /dev/null
+++ b/dist/gen/model/v1ControllerRevision.d.ts
@@ -0,0 +1,43 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+import { RuntimeRawExtension } from './runtimeRawExtension';
+import { V1ObjectMeta } from './v1ObjectMeta';
+/**
+* ControllerRevision implements an immutable snapshot of state data. Clients are responsible for serializing and deserializing the objects that contain their internal state. Once a ControllerRevision has been successfully created, it can not be updated. The API Server will fail validation of all requests that attempt to mutate the Data field. ControllerRevisions may, however, be deleted. Note that, due to its use by both the DaemonSet and StatefulSet controllers for update and rollback, this object is beta. However, it may be subject to name and representation changes in future releases, and clients should not depend on its stability. It is primarily for internal use by controllers.
+*/
+export declare class V1ControllerRevision {
+ /**
+ * APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources
+ */
+ 'apiVersion'?: string;
+ 'data'?: RuntimeRawExtension;
+ /**
+ * Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
+ */
+ 'kind'?: string;
+ 'metadata'?: V1ObjectMeta;
+ /**
+ * Revision indicates the revision of the state represented by Data.
+ */
+ 'revision': number;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/v1ControllerRevision.js b/dist/gen/model/v1ControllerRevision.js
new file mode 100644
index 0000000000..e01e24c43a
--- /dev/null
+++ b/dist/gen/model/v1ControllerRevision.js
@@ -0,0 +1,51 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* ControllerRevision implements an immutable snapshot of state data. Clients are responsible for serializing and deserializing the objects that contain their internal state. Once a ControllerRevision has been successfully created, it can not be updated. The API Server will fail validation of all requests that attempt to mutate the Data field. ControllerRevisions may, however, be deleted. Note that, due to its use by both the DaemonSet and StatefulSet controllers for update and rollback, this object is beta. However, it may be subject to name and representation changes in future releases, and clients should not depend on its stability. It is primarily for internal use by controllers.
+*/
+class V1ControllerRevision {
+ static getAttributeTypeMap() {
+ return V1ControllerRevision.attributeTypeMap;
+ }
+}
+V1ControllerRevision.discriminator = undefined;
+V1ControllerRevision.attributeTypeMap = [
+ {
+ "name": "apiVersion",
+ "baseName": "apiVersion",
+ "type": "string"
+ },
+ {
+ "name": "data",
+ "baseName": "data",
+ "type": "RuntimeRawExtension"
+ },
+ {
+ "name": "kind",
+ "baseName": "kind",
+ "type": "string"
+ },
+ {
+ "name": "metadata",
+ "baseName": "metadata",
+ "type": "V1ObjectMeta"
+ },
+ {
+ "name": "revision",
+ "baseName": "revision",
+ "type": "number"
+ }
+];
+exports.V1ControllerRevision = V1ControllerRevision;
+//# sourceMappingURL=v1ControllerRevision.js.map
\ No newline at end of file
diff --git a/dist/gen/model/v1ControllerRevision.js.map b/dist/gen/model/v1ControllerRevision.js.map
new file mode 100644
index 0000000000..f088077744
--- /dev/null
+++ b/dist/gen/model/v1ControllerRevision.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"v1ControllerRevision.js","sourceRoot":"","sources":["../../../src/gen/model/v1ControllerRevision.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAKH;;EAEE;AACF,MAAa,oBAAoB;IA6C7B,MAAM,CAAC,mBAAmB;QACtB,OAAO,oBAAoB,CAAC,gBAAgB,CAAC;IACjD,CAAC;;AA/BM,kCAAa,GAAuB,SAAS,CAAC;AAE9C,qCAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,YAAY;QACpB,UAAU,EAAE,YAAY;QACxB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,qBAAqB;KAChC;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,UAAU;QAClB,UAAU,EAAE,UAAU;QACtB,MAAM,EAAE,cAAc;KACzB;IACD;QACI,MAAM,EAAE,UAAU;QAClB,UAAU,EAAE,UAAU;QACtB,MAAM,EAAE,QAAQ;KACnB;CAAK,CAAC;AA3Cf,oDAgDC"}
\ No newline at end of file
diff --git a/dist/gen/model/v1ControllerRevisionList.d.ts b/dist/gen/model/v1ControllerRevisionList.d.ts
new file mode 100644
index 0000000000..525aa4573c
--- /dev/null
+++ b/dist/gen/model/v1ControllerRevisionList.d.ts
@@ -0,0 +1,42 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+import { V1ControllerRevision } from './v1ControllerRevision';
+import { V1ListMeta } from './v1ListMeta';
+/**
+* ControllerRevisionList is a resource containing a list of ControllerRevision objects.
+*/
+export declare class V1ControllerRevisionList {
+ /**
+ * APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources
+ */
+ 'apiVersion'?: string;
+ /**
+ * Items is the list of ControllerRevisions
+ */
+ 'items': Array;
+ /**
+ * Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
+ */
+ 'kind'?: string;
+ 'metadata'?: V1ListMeta;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/v1ControllerRevisionList.js b/dist/gen/model/v1ControllerRevisionList.js
new file mode 100644
index 0000000000..69b8340a39
--- /dev/null
+++ b/dist/gen/model/v1ControllerRevisionList.js
@@ -0,0 +1,46 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* ControllerRevisionList is a resource containing a list of ControllerRevision objects.
+*/
+class V1ControllerRevisionList {
+ static getAttributeTypeMap() {
+ return V1ControllerRevisionList.attributeTypeMap;
+ }
+}
+V1ControllerRevisionList.discriminator = undefined;
+V1ControllerRevisionList.attributeTypeMap = [
+ {
+ "name": "apiVersion",
+ "baseName": "apiVersion",
+ "type": "string"
+ },
+ {
+ "name": "items",
+ "baseName": "items",
+ "type": "Array"
+ },
+ {
+ "name": "kind",
+ "baseName": "kind",
+ "type": "string"
+ },
+ {
+ "name": "metadata",
+ "baseName": "metadata",
+ "type": "V1ListMeta"
+ }
+];
+exports.V1ControllerRevisionList = V1ControllerRevisionList;
+//# sourceMappingURL=v1ControllerRevisionList.js.map
\ No newline at end of file
diff --git a/dist/gen/model/v1ControllerRevisionList.js.map b/dist/gen/model/v1ControllerRevisionList.js.map
new file mode 100644
index 0000000000..d0688f0fd6
--- /dev/null
+++ b/dist/gen/model/v1ControllerRevisionList.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"v1ControllerRevisionList.js","sourceRoot":"","sources":["../../../src/gen/model/v1ControllerRevisionList.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAKH;;EAEE;AACF,MAAa,wBAAwB;IAuCjC,MAAM,CAAC,mBAAmB;QACtB,OAAO,wBAAwB,CAAC,gBAAgB,CAAC;IACrD,CAAC;;AA1BM,sCAAa,GAAuB,SAAS,CAAC;AAE9C,yCAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,YAAY;QACpB,UAAU,EAAE,YAAY;QACxB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,OAAO;QACf,UAAU,EAAE,OAAO;QACnB,MAAM,EAAE,6BAA6B;KACxC;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,UAAU;QAClB,UAAU,EAAE,UAAU;QACtB,MAAM,EAAE,YAAY;KACvB;CAAK,CAAC;AArCf,4DA0CC"}
\ No newline at end of file
diff --git a/dist/gen/model/v1CrossVersionObjectReference.d.ts b/dist/gen/model/v1CrossVersionObjectReference.d.ts
new file mode 100644
index 0000000000..762ad06413
--- /dev/null
+++ b/dist/gen/model/v1CrossVersionObjectReference.d.ts
@@ -0,0 +1,39 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+/**
+* CrossVersionObjectReference contains enough information to let you identify the referred resource.
+*/
+export declare class V1CrossVersionObjectReference {
+ /**
+ * API version of the referent
+ */
+ 'apiVersion'?: string;
+ /**
+ * Kind of the referent; More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds\"
+ */
+ 'kind': string;
+ /**
+ * Name of the referent; More info: http://kubernetes.io/docs/user-guide/identifiers#names
+ */
+ 'name': string;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/v1CrossVersionObjectReference.js b/dist/gen/model/v1CrossVersionObjectReference.js
new file mode 100644
index 0000000000..163e7f4cf6
--- /dev/null
+++ b/dist/gen/model/v1CrossVersionObjectReference.js
@@ -0,0 +1,41 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* CrossVersionObjectReference contains enough information to let you identify the referred resource.
+*/
+class V1CrossVersionObjectReference {
+ static getAttributeTypeMap() {
+ return V1CrossVersionObjectReference.attributeTypeMap;
+ }
+}
+V1CrossVersionObjectReference.discriminator = undefined;
+V1CrossVersionObjectReference.attributeTypeMap = [
+ {
+ "name": "apiVersion",
+ "baseName": "apiVersion",
+ "type": "string"
+ },
+ {
+ "name": "kind",
+ "baseName": "kind",
+ "type": "string"
+ },
+ {
+ "name": "name",
+ "baseName": "name",
+ "type": "string"
+ }
+];
+exports.V1CrossVersionObjectReference = V1CrossVersionObjectReference;
+//# sourceMappingURL=v1CrossVersionObjectReference.js.map
\ No newline at end of file
diff --git a/dist/gen/model/v1CrossVersionObjectReference.js.map b/dist/gen/model/v1CrossVersionObjectReference.js.map
new file mode 100644
index 0000000000..8fc00d9442
--- /dev/null
+++ b/dist/gen/model/v1CrossVersionObjectReference.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"v1CrossVersionObjectReference.js","sourceRoot":"","sources":["../../../src/gen/model/v1CrossVersionObjectReference.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAGH;;EAEE;AACF,MAAa,6BAA6B;IAiCtC,MAAM,CAAC,mBAAmB;QACtB,OAAO,6BAA6B,CAAC,gBAAgB,CAAC;IAC1D,CAAC;;AArBM,2CAAa,GAAuB,SAAS,CAAC;AAE9C,8CAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,YAAY;QACpB,UAAU,EAAE,YAAY;QACxB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,QAAQ;KACnB;CAAK,CAAC;AA/Bf,sEAoCC"}
\ No newline at end of file
diff --git a/dist/gen/model/v1DaemonEndpoint.d.ts b/dist/gen/model/v1DaemonEndpoint.d.ts
new file mode 100644
index 0000000000..3c335adb12
--- /dev/null
+++ b/dist/gen/model/v1DaemonEndpoint.d.ts
@@ -0,0 +1,31 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+/**
+* DaemonEndpoint contains information about a single Daemon endpoint.
+*/
+export declare class V1DaemonEndpoint {
+ /**
+ * Port number of the given endpoint.
+ */
+ 'Port': number;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/v1DaemonEndpoint.js b/dist/gen/model/v1DaemonEndpoint.js
new file mode 100644
index 0000000000..534461ffd8
--- /dev/null
+++ b/dist/gen/model/v1DaemonEndpoint.js
@@ -0,0 +1,31 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* DaemonEndpoint contains information about a single Daemon endpoint.
+*/
+class V1DaemonEndpoint {
+ static getAttributeTypeMap() {
+ return V1DaemonEndpoint.attributeTypeMap;
+ }
+}
+V1DaemonEndpoint.discriminator = undefined;
+V1DaemonEndpoint.attributeTypeMap = [
+ {
+ "name": "Port",
+ "baseName": "Port",
+ "type": "number"
+ }
+];
+exports.V1DaemonEndpoint = V1DaemonEndpoint;
+//# sourceMappingURL=v1DaemonEndpoint.js.map
\ No newline at end of file
diff --git a/dist/gen/model/v1DaemonEndpoint.js.map b/dist/gen/model/v1DaemonEndpoint.js.map
new file mode 100644
index 0000000000..92644df743
--- /dev/null
+++ b/dist/gen/model/v1DaemonEndpoint.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"v1DaemonEndpoint.js","sourceRoot":"","sources":["../../../src/gen/model/v1DaemonEndpoint.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAGH;;EAEE;AACF,MAAa,gBAAgB;IAezB,MAAM,CAAC,mBAAmB;QACtB,OAAO,gBAAgB,CAAC,gBAAgB,CAAC;IAC7C,CAAC;;AAXM,8BAAa,GAAuB,SAAS,CAAC;AAE9C,iCAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,QAAQ;KACnB;CAAK,CAAC;AAbf,4CAkBC"}
\ No newline at end of file
diff --git a/dist/gen/model/v1DaemonSet.d.ts b/dist/gen/model/v1DaemonSet.d.ts
new file mode 100644
index 0000000000..76ca4ccec4
--- /dev/null
+++ b/dist/gen/model/v1DaemonSet.d.ts
@@ -0,0 +1,41 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+import { V1DaemonSetSpec } from './v1DaemonSetSpec';
+import { V1DaemonSetStatus } from './v1DaemonSetStatus';
+import { V1ObjectMeta } from './v1ObjectMeta';
+/**
+* DaemonSet represents the configuration of a daemon set.
+*/
+export declare class V1DaemonSet {
+ /**
+ * APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources
+ */
+ 'apiVersion'?: string;
+ /**
+ * Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
+ */
+ 'kind'?: string;
+ 'metadata'?: V1ObjectMeta;
+ 'spec'?: V1DaemonSetSpec;
+ 'status'?: V1DaemonSetStatus;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/v1DaemonSet.js b/dist/gen/model/v1DaemonSet.js
new file mode 100644
index 0000000000..a9ebc000b9
--- /dev/null
+++ b/dist/gen/model/v1DaemonSet.js
@@ -0,0 +1,51 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* DaemonSet represents the configuration of a daemon set.
+*/
+class V1DaemonSet {
+ static getAttributeTypeMap() {
+ return V1DaemonSet.attributeTypeMap;
+ }
+}
+V1DaemonSet.discriminator = undefined;
+V1DaemonSet.attributeTypeMap = [
+ {
+ "name": "apiVersion",
+ "baseName": "apiVersion",
+ "type": "string"
+ },
+ {
+ "name": "kind",
+ "baseName": "kind",
+ "type": "string"
+ },
+ {
+ "name": "metadata",
+ "baseName": "metadata",
+ "type": "V1ObjectMeta"
+ },
+ {
+ "name": "spec",
+ "baseName": "spec",
+ "type": "V1DaemonSetSpec"
+ },
+ {
+ "name": "status",
+ "baseName": "status",
+ "type": "V1DaemonSetStatus"
+ }
+];
+exports.V1DaemonSet = V1DaemonSet;
+//# sourceMappingURL=v1DaemonSet.js.map
\ No newline at end of file
diff --git a/dist/gen/model/v1DaemonSet.js.map b/dist/gen/model/v1DaemonSet.js.map
new file mode 100644
index 0000000000..94f1e1b972
--- /dev/null
+++ b/dist/gen/model/v1DaemonSet.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"v1DaemonSet.js","sourceRoot":"","sources":["../../../src/gen/model/v1DaemonSet.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAMH;;EAEE;AACF,MAAa,WAAW;IA0CpB,MAAM,CAAC,mBAAmB;QACtB,OAAO,WAAW,CAAC,gBAAgB,CAAC;IACxC,CAAC;;AA/BM,yBAAa,GAAuB,SAAS,CAAC;AAE9C,4BAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,YAAY;QACpB,UAAU,EAAE,YAAY;QACxB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,UAAU;QAClB,UAAU,EAAE,UAAU;QACtB,MAAM,EAAE,cAAc;KACzB;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,iBAAiB;KAC5B;IACD;QACI,MAAM,EAAE,QAAQ;QAChB,UAAU,EAAE,QAAQ;QACpB,MAAM,EAAE,mBAAmB;KAC9B;CAAK,CAAC;AAxCf,kCA6CC"}
\ No newline at end of file
diff --git a/dist/gen/model/v1DaemonSetCondition.d.ts b/dist/gen/model/v1DaemonSetCondition.d.ts
new file mode 100644
index 0000000000..67cbf37354
--- /dev/null
+++ b/dist/gen/model/v1DaemonSetCondition.d.ts
@@ -0,0 +1,47 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+/**
+* DaemonSetCondition describes the state of a DaemonSet at a certain point.
+*/
+export declare class V1DaemonSetCondition {
+ /**
+ * Last time the condition transitioned from one status to another.
+ */
+ 'lastTransitionTime'?: Date;
+ /**
+ * A human readable message indicating details about the transition.
+ */
+ 'message'?: string;
+ /**
+ * The reason for the condition\'s last transition.
+ */
+ 'reason'?: string;
+ /**
+ * Status of the condition, one of True, False, Unknown.
+ */
+ 'status': string;
+ /**
+ * Type of DaemonSet condition.
+ */
+ 'type': string;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/v1DaemonSetCondition.js b/dist/gen/model/v1DaemonSetCondition.js
new file mode 100644
index 0000000000..d84458d146
--- /dev/null
+++ b/dist/gen/model/v1DaemonSetCondition.js
@@ -0,0 +1,51 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* DaemonSetCondition describes the state of a DaemonSet at a certain point.
+*/
+class V1DaemonSetCondition {
+ static getAttributeTypeMap() {
+ return V1DaemonSetCondition.attributeTypeMap;
+ }
+}
+V1DaemonSetCondition.discriminator = undefined;
+V1DaemonSetCondition.attributeTypeMap = [
+ {
+ "name": "lastTransitionTime",
+ "baseName": "lastTransitionTime",
+ "type": "Date"
+ },
+ {
+ "name": "message",
+ "baseName": "message",
+ "type": "string"
+ },
+ {
+ "name": "reason",
+ "baseName": "reason",
+ "type": "string"
+ },
+ {
+ "name": "status",
+ "baseName": "status",
+ "type": "string"
+ },
+ {
+ "name": "type",
+ "baseName": "type",
+ "type": "string"
+ }
+];
+exports.V1DaemonSetCondition = V1DaemonSetCondition;
+//# sourceMappingURL=v1DaemonSetCondition.js.map
\ No newline at end of file
diff --git a/dist/gen/model/v1DaemonSetCondition.js.map b/dist/gen/model/v1DaemonSetCondition.js.map
new file mode 100644
index 0000000000..e902315fd1
--- /dev/null
+++ b/dist/gen/model/v1DaemonSetCondition.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"v1DaemonSetCondition.js","sourceRoot":"","sources":["../../../src/gen/model/v1DaemonSetCondition.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAGH;;EAEE;AACF,MAAa,oBAAoB;IAmD7B,MAAM,CAAC,mBAAmB;QACtB,OAAO,oBAAoB,CAAC,gBAAgB,CAAC;IACjD,CAAC;;AA/BM,kCAAa,GAAuB,SAAS,CAAC;AAE9C,qCAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,oBAAoB;QAC5B,UAAU,EAAE,oBAAoB;QAChC,MAAM,EAAE,MAAM;KACjB;IACD;QACI,MAAM,EAAE,SAAS;QACjB,UAAU,EAAE,SAAS;QACrB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,QAAQ;QAChB,UAAU,EAAE,QAAQ;QACpB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,QAAQ;QAChB,UAAU,EAAE,QAAQ;QACpB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,QAAQ;KACnB;CAAK,CAAC;AAjDf,oDAsDC"}
\ No newline at end of file
diff --git a/dist/gen/model/v1DaemonSetList.d.ts b/dist/gen/model/v1DaemonSetList.d.ts
new file mode 100644
index 0000000000..e5117010e6
--- /dev/null
+++ b/dist/gen/model/v1DaemonSetList.d.ts
@@ -0,0 +1,42 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+import { V1DaemonSet } from './v1DaemonSet';
+import { V1ListMeta } from './v1ListMeta';
+/**
+* DaemonSetList is a collection of daemon sets.
+*/
+export declare class V1DaemonSetList {
+ /**
+ * APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources
+ */
+ 'apiVersion'?: string;
+ /**
+ * A list of daemon sets.
+ */
+ 'items': Array;
+ /**
+ * Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
+ */
+ 'kind'?: string;
+ 'metadata'?: V1ListMeta;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/v1DaemonSetList.js b/dist/gen/model/v1DaemonSetList.js
new file mode 100644
index 0000000000..fa8ffc7ae4
--- /dev/null
+++ b/dist/gen/model/v1DaemonSetList.js
@@ -0,0 +1,46 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* DaemonSetList is a collection of daemon sets.
+*/
+class V1DaemonSetList {
+ static getAttributeTypeMap() {
+ return V1DaemonSetList.attributeTypeMap;
+ }
+}
+V1DaemonSetList.discriminator = undefined;
+V1DaemonSetList.attributeTypeMap = [
+ {
+ "name": "apiVersion",
+ "baseName": "apiVersion",
+ "type": "string"
+ },
+ {
+ "name": "items",
+ "baseName": "items",
+ "type": "Array"
+ },
+ {
+ "name": "kind",
+ "baseName": "kind",
+ "type": "string"
+ },
+ {
+ "name": "metadata",
+ "baseName": "metadata",
+ "type": "V1ListMeta"
+ }
+];
+exports.V1DaemonSetList = V1DaemonSetList;
+//# sourceMappingURL=v1DaemonSetList.js.map
\ No newline at end of file
diff --git a/dist/gen/model/v1DaemonSetList.js.map b/dist/gen/model/v1DaemonSetList.js.map
new file mode 100644
index 0000000000..3af2ccd734
--- /dev/null
+++ b/dist/gen/model/v1DaemonSetList.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"v1DaemonSetList.js","sourceRoot":"","sources":["../../../src/gen/model/v1DaemonSetList.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAKH;;EAEE;AACF,MAAa,eAAe;IAuCxB,MAAM,CAAC,mBAAmB;QACtB,OAAO,eAAe,CAAC,gBAAgB,CAAC;IAC5C,CAAC;;AA1BM,6BAAa,GAAuB,SAAS,CAAC;AAE9C,gCAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,YAAY;QACpB,UAAU,EAAE,YAAY;QACxB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,OAAO;QACf,UAAU,EAAE,OAAO;QACnB,MAAM,EAAE,oBAAoB;KAC/B;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,UAAU;QAClB,UAAU,EAAE,UAAU;QACtB,MAAM,EAAE,YAAY;KACvB;CAAK,CAAC;AArCf,0CA0CC"}
\ No newline at end of file
diff --git a/dist/gen/model/v1DaemonSetSpec.d.ts b/dist/gen/model/v1DaemonSetSpec.d.ts
new file mode 100644
index 0000000000..8a4d67b87b
--- /dev/null
+++ b/dist/gen/model/v1DaemonSetSpec.d.ts
@@ -0,0 +1,41 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+import { V1DaemonSetUpdateStrategy } from './v1DaemonSetUpdateStrategy';
+import { V1LabelSelector } from './v1LabelSelector';
+import { V1PodTemplateSpec } from './v1PodTemplateSpec';
+/**
+* DaemonSetSpec is the specification of a daemon set.
+*/
+export declare class V1DaemonSetSpec {
+ /**
+ * The minimum number of seconds for which a newly created DaemonSet pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready).
+ */
+ 'minReadySeconds'?: number;
+ /**
+ * The number of old history to retain to allow rollback. This is a pointer to distinguish between explicit zero and not specified. Defaults to 10.
+ */
+ 'revisionHistoryLimit'?: number;
+ 'selector': V1LabelSelector;
+ 'template': V1PodTemplateSpec;
+ 'updateStrategy'?: V1DaemonSetUpdateStrategy;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/v1DaemonSetSpec.js b/dist/gen/model/v1DaemonSetSpec.js
new file mode 100644
index 0000000000..c30f7883fc
--- /dev/null
+++ b/dist/gen/model/v1DaemonSetSpec.js
@@ -0,0 +1,51 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* DaemonSetSpec is the specification of a daemon set.
+*/
+class V1DaemonSetSpec {
+ static getAttributeTypeMap() {
+ return V1DaemonSetSpec.attributeTypeMap;
+ }
+}
+V1DaemonSetSpec.discriminator = undefined;
+V1DaemonSetSpec.attributeTypeMap = [
+ {
+ "name": "minReadySeconds",
+ "baseName": "minReadySeconds",
+ "type": "number"
+ },
+ {
+ "name": "revisionHistoryLimit",
+ "baseName": "revisionHistoryLimit",
+ "type": "number"
+ },
+ {
+ "name": "selector",
+ "baseName": "selector",
+ "type": "V1LabelSelector"
+ },
+ {
+ "name": "template",
+ "baseName": "template",
+ "type": "V1PodTemplateSpec"
+ },
+ {
+ "name": "updateStrategy",
+ "baseName": "updateStrategy",
+ "type": "V1DaemonSetUpdateStrategy"
+ }
+];
+exports.V1DaemonSetSpec = V1DaemonSetSpec;
+//# sourceMappingURL=v1DaemonSetSpec.js.map
\ No newline at end of file
diff --git a/dist/gen/model/v1DaemonSetSpec.js.map b/dist/gen/model/v1DaemonSetSpec.js.map
new file mode 100644
index 0000000000..0cef85459f
--- /dev/null
+++ b/dist/gen/model/v1DaemonSetSpec.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"v1DaemonSetSpec.js","sourceRoot":"","sources":["../../../src/gen/model/v1DaemonSetSpec.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAMH;;EAEE;AACF,MAAa,eAAe;IA0CxB,MAAM,CAAC,mBAAmB;QACtB,OAAO,eAAe,CAAC,gBAAgB,CAAC;IAC5C,CAAC;;AA/BM,6BAAa,GAAuB,SAAS,CAAC;AAE9C,gCAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,iBAAiB;QACzB,UAAU,EAAE,iBAAiB;QAC7B,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,sBAAsB;QAC9B,UAAU,EAAE,sBAAsB;QAClC,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,UAAU;QAClB,UAAU,EAAE,UAAU;QACtB,MAAM,EAAE,iBAAiB;KAC5B;IACD;QACI,MAAM,EAAE,UAAU;QAClB,UAAU,EAAE,UAAU;QACtB,MAAM,EAAE,mBAAmB;KAC9B;IACD;QACI,MAAM,EAAE,gBAAgB;QACxB,UAAU,EAAE,gBAAgB;QAC5B,MAAM,EAAE,2BAA2B;KACtC;CAAK,CAAC;AAxCf,0CA6CC"}
\ No newline at end of file
diff --git a/dist/gen/model/v1DaemonSetStatus.d.ts b/dist/gen/model/v1DaemonSetStatus.d.ts
new file mode 100644
index 0000000000..fa346b86f2
--- /dev/null
+++ b/dist/gen/model/v1DaemonSetStatus.d.ts
@@ -0,0 +1,68 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+import { V1DaemonSetCondition } from './v1DaemonSetCondition';
+/**
+* DaemonSetStatus represents the current status of a daemon set.
+*/
+export declare class V1DaemonSetStatus {
+ /**
+ * Count of hash collisions for the DaemonSet. The DaemonSet controller uses this field as a collision avoidance mechanism when it needs to create the name for the newest ControllerRevision.
+ */
+ 'collisionCount'?: number;
+ /**
+ * Represents the latest available observations of a DaemonSet\'s current state.
+ */
+ 'conditions'?: Array;
+ /**
+ * The number of nodes that are running at least 1 daemon pod and are supposed to run the daemon pod. More info: https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/
+ */
+ 'currentNumberScheduled': number;
+ /**
+ * The total number of nodes that should be running the daemon pod (including nodes correctly running the daemon pod). More info: https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/
+ */
+ 'desiredNumberScheduled': number;
+ /**
+ * The number of nodes that should be running the daemon pod and have one or more of the daemon pod running and available (ready for at least spec.minReadySeconds)
+ */
+ 'numberAvailable'?: number;
+ /**
+ * The number of nodes that are running the daemon pod, but are not supposed to run the daemon pod. More info: https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/
+ */
+ 'numberMisscheduled': number;
+ /**
+ * The number of nodes that should be running the daemon pod and have one or more of the daemon pod running and ready.
+ */
+ 'numberReady': number;
+ /**
+ * The number of nodes that should be running the daemon pod and have none of the daemon pod running and available (ready for at least spec.minReadySeconds)
+ */
+ 'numberUnavailable'?: number;
+ /**
+ * The most recent generation observed by the daemon set controller.
+ */
+ 'observedGeneration'?: number;
+ /**
+ * The total number of nodes that are running updated daemon pod
+ */
+ 'updatedNumberScheduled'?: number;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/v1DaemonSetStatus.js b/dist/gen/model/v1DaemonSetStatus.js
new file mode 100644
index 0000000000..ad337ae1f7
--- /dev/null
+++ b/dist/gen/model/v1DaemonSetStatus.js
@@ -0,0 +1,76 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* DaemonSetStatus represents the current status of a daemon set.
+*/
+class V1DaemonSetStatus {
+ static getAttributeTypeMap() {
+ return V1DaemonSetStatus.attributeTypeMap;
+ }
+}
+V1DaemonSetStatus.discriminator = undefined;
+V1DaemonSetStatus.attributeTypeMap = [
+ {
+ "name": "collisionCount",
+ "baseName": "collisionCount",
+ "type": "number"
+ },
+ {
+ "name": "conditions",
+ "baseName": "conditions",
+ "type": "Array"
+ },
+ {
+ "name": "currentNumberScheduled",
+ "baseName": "currentNumberScheduled",
+ "type": "number"
+ },
+ {
+ "name": "desiredNumberScheduled",
+ "baseName": "desiredNumberScheduled",
+ "type": "number"
+ },
+ {
+ "name": "numberAvailable",
+ "baseName": "numberAvailable",
+ "type": "number"
+ },
+ {
+ "name": "numberMisscheduled",
+ "baseName": "numberMisscheduled",
+ "type": "number"
+ },
+ {
+ "name": "numberReady",
+ "baseName": "numberReady",
+ "type": "number"
+ },
+ {
+ "name": "numberUnavailable",
+ "baseName": "numberUnavailable",
+ "type": "number"
+ },
+ {
+ "name": "observedGeneration",
+ "baseName": "observedGeneration",
+ "type": "number"
+ },
+ {
+ "name": "updatedNumberScheduled",
+ "baseName": "updatedNumberScheduled",
+ "type": "number"
+ }
+];
+exports.V1DaemonSetStatus = V1DaemonSetStatus;
+//# sourceMappingURL=v1DaemonSetStatus.js.map
\ No newline at end of file
diff --git a/dist/gen/model/v1DaemonSetStatus.js.map b/dist/gen/model/v1DaemonSetStatus.js.map
new file mode 100644
index 0000000000..307e5dbc3c
--- /dev/null
+++ b/dist/gen/model/v1DaemonSetStatus.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"v1DaemonSetStatus.js","sourceRoot":"","sources":["../../../src/gen/model/v1DaemonSetStatus.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAIH;;EAEE;AACF,MAAa,iBAAiB;IAgG1B,MAAM,CAAC,mBAAmB;QACtB,OAAO,iBAAiB,CAAC,gBAAgB,CAAC;IAC9C,CAAC;;AAxDM,+BAAa,GAAuB,SAAS,CAAC;AAE9C,kCAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,gBAAgB;QACxB,UAAU,EAAE,gBAAgB;QAC5B,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,YAAY;QACpB,UAAU,EAAE,YAAY;QACxB,MAAM,EAAE,6BAA6B;KACxC;IACD;QACI,MAAM,EAAE,wBAAwB;QAChC,UAAU,EAAE,wBAAwB;QACpC,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,wBAAwB;QAChC,UAAU,EAAE,wBAAwB;QACpC,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,iBAAiB;QACzB,UAAU,EAAE,iBAAiB;QAC7B,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,oBAAoB;QAC5B,UAAU,EAAE,oBAAoB;QAChC,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,aAAa;QACrB,UAAU,EAAE,aAAa;QACzB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,mBAAmB;QAC3B,UAAU,EAAE,mBAAmB;QAC/B,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,oBAAoB;QAC5B,UAAU,EAAE,oBAAoB;QAChC,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,wBAAwB;QAChC,UAAU,EAAE,wBAAwB;QACpC,MAAM,EAAE,QAAQ;KACnB;CAAK,CAAC;AA9Ff,8CAmGC"}
\ No newline at end of file
diff --git a/dist/gen/model/v1DaemonSetUpdateStrategy.d.ts b/dist/gen/model/v1DaemonSetUpdateStrategy.d.ts
new file mode 100644
index 0000000000..e1e13ef0bf
--- /dev/null
+++ b/dist/gen/model/v1DaemonSetUpdateStrategy.d.ts
@@ -0,0 +1,33 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+import { V1RollingUpdateDaemonSet } from './v1RollingUpdateDaemonSet';
+/**
+* DaemonSetUpdateStrategy is a struct used to control the update strategy for a DaemonSet.
+*/
+export declare class V1DaemonSetUpdateStrategy {
+ 'rollingUpdate'?: V1RollingUpdateDaemonSet;
+ /**
+ * Type of daemon set update. Can be \"RollingUpdate\" or \"OnDelete\". Default is RollingUpdate.
+ */
+ 'type'?: string;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/v1DaemonSetUpdateStrategy.js b/dist/gen/model/v1DaemonSetUpdateStrategy.js
new file mode 100644
index 0000000000..89f0f4be1e
--- /dev/null
+++ b/dist/gen/model/v1DaemonSetUpdateStrategy.js
@@ -0,0 +1,36 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* DaemonSetUpdateStrategy is a struct used to control the update strategy for a DaemonSet.
+*/
+class V1DaemonSetUpdateStrategy {
+ static getAttributeTypeMap() {
+ return V1DaemonSetUpdateStrategy.attributeTypeMap;
+ }
+}
+V1DaemonSetUpdateStrategy.discriminator = undefined;
+V1DaemonSetUpdateStrategy.attributeTypeMap = [
+ {
+ "name": "rollingUpdate",
+ "baseName": "rollingUpdate",
+ "type": "V1RollingUpdateDaemonSet"
+ },
+ {
+ "name": "type",
+ "baseName": "type",
+ "type": "string"
+ }
+];
+exports.V1DaemonSetUpdateStrategy = V1DaemonSetUpdateStrategy;
+//# sourceMappingURL=v1DaemonSetUpdateStrategy.js.map
\ No newline at end of file
diff --git a/dist/gen/model/v1DaemonSetUpdateStrategy.js.map b/dist/gen/model/v1DaemonSetUpdateStrategy.js.map
new file mode 100644
index 0000000000..c33804f5ff
--- /dev/null
+++ b/dist/gen/model/v1DaemonSetUpdateStrategy.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"v1DaemonSetUpdateStrategy.js","sourceRoot":"","sources":["../../../src/gen/model/v1DaemonSetUpdateStrategy.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAIH;;EAEE;AACF,MAAa,yBAAyB;IAqBlC,MAAM,CAAC,mBAAmB;QACtB,OAAO,yBAAyB,CAAC,gBAAgB,CAAC;IACtD,CAAC;;AAhBM,uCAAa,GAAuB,SAAS,CAAC;AAE9C,0CAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,eAAe;QACvB,UAAU,EAAE,eAAe;QAC3B,MAAM,EAAE,0BAA0B;KACrC;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,QAAQ;KACnB;CAAK,CAAC;AAnBf,8DAwBC"}
\ No newline at end of file
diff --git a/dist/gen/model/v1DeleteOptions.d.ts b/dist/gen/model/v1DeleteOptions.d.ts
new file mode 100644
index 0000000000..ee4ceaf6be
--- /dev/null
+++ b/dist/gen/model/v1DeleteOptions.d.ts
@@ -0,0 +1,53 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+import { V1Preconditions } from './v1Preconditions';
+/**
+* DeleteOptions may be provided when deleting an API object.
+*/
+export declare class V1DeleteOptions {
+ /**
+ * APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources
+ */
+ 'apiVersion'?: string;
+ /**
+ * When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
+ */
+ 'dryRun'?: Array;
+ /**
+ * The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
+ */
+ 'gracePeriodSeconds'?: number;
+ /**
+ * Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
+ */
+ 'kind'?: string;
+ /**
+ * Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object\'s finalizers list. Either this field or PropagationPolicy may be set, but not both.
+ */
+ 'orphanDependents'?: boolean;
+ 'preconditions'?: V1Preconditions;
+ /**
+ * Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \'Orphan\' - orphan the dependents; \'Background\' - allow the garbage collector to delete the dependents in the background; \'Foreground\' - a cascading policy that deletes all dependents in the foreground.
+ */
+ 'propagationPolicy'?: string;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/v1DeleteOptions.js b/dist/gen/model/v1DeleteOptions.js
new file mode 100644
index 0000000000..6ff53ec32e
--- /dev/null
+++ b/dist/gen/model/v1DeleteOptions.js
@@ -0,0 +1,61 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* DeleteOptions may be provided when deleting an API object.
+*/
+class V1DeleteOptions {
+ static getAttributeTypeMap() {
+ return V1DeleteOptions.attributeTypeMap;
+ }
+}
+V1DeleteOptions.discriminator = undefined;
+V1DeleteOptions.attributeTypeMap = [
+ {
+ "name": "apiVersion",
+ "baseName": "apiVersion",
+ "type": "string"
+ },
+ {
+ "name": "dryRun",
+ "baseName": "dryRun",
+ "type": "Array"
+ },
+ {
+ "name": "gracePeriodSeconds",
+ "baseName": "gracePeriodSeconds",
+ "type": "number"
+ },
+ {
+ "name": "kind",
+ "baseName": "kind",
+ "type": "string"
+ },
+ {
+ "name": "orphanDependents",
+ "baseName": "orphanDependents",
+ "type": "boolean"
+ },
+ {
+ "name": "preconditions",
+ "baseName": "preconditions",
+ "type": "V1Preconditions"
+ },
+ {
+ "name": "propagationPolicy",
+ "baseName": "propagationPolicy",
+ "type": "string"
+ }
+];
+exports.V1DeleteOptions = V1DeleteOptions;
+//# sourceMappingURL=v1DeleteOptions.js.map
\ No newline at end of file
diff --git a/dist/gen/model/v1DeleteOptions.js.map b/dist/gen/model/v1DeleteOptions.js.map
new file mode 100644
index 0000000000..7e016ed854
--- /dev/null
+++ b/dist/gen/model/v1DeleteOptions.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"v1DeleteOptions.js","sourceRoot":"","sources":["../../../src/gen/model/v1DeleteOptions.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAIH;;EAEE;AACF,MAAa,eAAe;IAkExB,MAAM,CAAC,mBAAmB;QACtB,OAAO,eAAe,CAAC,gBAAgB,CAAC;IAC5C,CAAC;;AAzCM,6BAAa,GAAuB,SAAS,CAAC;AAE9C,gCAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,YAAY;QACpB,UAAU,EAAE,YAAY;QACxB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,QAAQ;QAChB,UAAU,EAAE,QAAQ;QACpB,MAAM,EAAE,eAAe;KAC1B;IACD;QACI,MAAM,EAAE,oBAAoB;QAC5B,UAAU,EAAE,oBAAoB;QAChC,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,kBAAkB;QAC1B,UAAU,EAAE,kBAAkB;QAC9B,MAAM,EAAE,SAAS;KACpB;IACD;QACI,MAAM,EAAE,eAAe;QACvB,UAAU,EAAE,eAAe;QAC3B,MAAM,EAAE,iBAAiB;KAC5B;IACD;QACI,MAAM,EAAE,mBAAmB;QAC3B,UAAU,EAAE,mBAAmB;QAC/B,MAAM,EAAE,QAAQ;KACnB;CAAK,CAAC;AAhEf,0CAqEC"}
\ No newline at end of file
diff --git a/dist/gen/model/v1Deployment.d.ts b/dist/gen/model/v1Deployment.d.ts
new file mode 100644
index 0000000000..bc1790d3e6
--- /dev/null
+++ b/dist/gen/model/v1Deployment.d.ts
@@ -0,0 +1,41 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+import { V1DeploymentSpec } from './v1DeploymentSpec';
+import { V1DeploymentStatus } from './v1DeploymentStatus';
+import { V1ObjectMeta } from './v1ObjectMeta';
+/**
+* Deployment enables declarative updates for Pods and ReplicaSets.
+*/
+export declare class V1Deployment {
+ /**
+ * APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources
+ */
+ 'apiVersion'?: string;
+ /**
+ * Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
+ */
+ 'kind'?: string;
+ 'metadata'?: V1ObjectMeta;
+ 'spec'?: V1DeploymentSpec;
+ 'status'?: V1DeploymentStatus;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/v1Deployment.js b/dist/gen/model/v1Deployment.js
new file mode 100644
index 0000000000..91055c7d59
--- /dev/null
+++ b/dist/gen/model/v1Deployment.js
@@ -0,0 +1,51 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* Deployment enables declarative updates for Pods and ReplicaSets.
+*/
+class V1Deployment {
+ static getAttributeTypeMap() {
+ return V1Deployment.attributeTypeMap;
+ }
+}
+V1Deployment.discriminator = undefined;
+V1Deployment.attributeTypeMap = [
+ {
+ "name": "apiVersion",
+ "baseName": "apiVersion",
+ "type": "string"
+ },
+ {
+ "name": "kind",
+ "baseName": "kind",
+ "type": "string"
+ },
+ {
+ "name": "metadata",
+ "baseName": "metadata",
+ "type": "V1ObjectMeta"
+ },
+ {
+ "name": "spec",
+ "baseName": "spec",
+ "type": "V1DeploymentSpec"
+ },
+ {
+ "name": "status",
+ "baseName": "status",
+ "type": "V1DeploymentStatus"
+ }
+];
+exports.V1Deployment = V1Deployment;
+//# sourceMappingURL=v1Deployment.js.map
\ No newline at end of file
diff --git a/dist/gen/model/v1Deployment.js.map b/dist/gen/model/v1Deployment.js.map
new file mode 100644
index 0000000000..c3cad42197
--- /dev/null
+++ b/dist/gen/model/v1Deployment.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"v1Deployment.js","sourceRoot":"","sources":["../../../src/gen/model/v1Deployment.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAMH;;EAEE;AACF,MAAa,YAAY;IA0CrB,MAAM,CAAC,mBAAmB;QACtB,OAAO,YAAY,CAAC,gBAAgB,CAAC;IACzC,CAAC;;AA/BM,0BAAa,GAAuB,SAAS,CAAC;AAE9C,6BAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,YAAY;QACpB,UAAU,EAAE,YAAY;QACxB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,UAAU;QAClB,UAAU,EAAE,UAAU;QACtB,MAAM,EAAE,cAAc;KACzB;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,kBAAkB;KAC7B;IACD;QACI,MAAM,EAAE,QAAQ;QAChB,UAAU,EAAE,QAAQ;QACpB,MAAM,EAAE,oBAAoB;KAC/B;CAAK,CAAC;AAxCf,oCA6CC"}
\ No newline at end of file
diff --git a/dist/gen/model/v1DeploymentCondition.d.ts b/dist/gen/model/v1DeploymentCondition.d.ts
new file mode 100644
index 0000000000..1f15eebdad
--- /dev/null
+++ b/dist/gen/model/v1DeploymentCondition.d.ts
@@ -0,0 +1,51 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+/**
+* DeploymentCondition describes the state of a deployment at a certain point.
+*/
+export declare class V1DeploymentCondition {
+ /**
+ * Last time the condition transitioned from one status to another.
+ */
+ 'lastTransitionTime'?: Date;
+ /**
+ * The last time this condition was updated.
+ */
+ 'lastUpdateTime'?: Date;
+ /**
+ * A human readable message indicating details about the transition.
+ */
+ 'message'?: string;
+ /**
+ * The reason for the condition\'s last transition.
+ */
+ 'reason'?: string;
+ /**
+ * Status of the condition, one of True, False, Unknown.
+ */
+ 'status': string;
+ /**
+ * Type of deployment condition.
+ */
+ 'type': string;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/v1DeploymentCondition.js b/dist/gen/model/v1DeploymentCondition.js
new file mode 100644
index 0000000000..144a3e494b
--- /dev/null
+++ b/dist/gen/model/v1DeploymentCondition.js
@@ -0,0 +1,56 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* DeploymentCondition describes the state of a deployment at a certain point.
+*/
+class V1DeploymentCondition {
+ static getAttributeTypeMap() {
+ return V1DeploymentCondition.attributeTypeMap;
+ }
+}
+V1DeploymentCondition.discriminator = undefined;
+V1DeploymentCondition.attributeTypeMap = [
+ {
+ "name": "lastTransitionTime",
+ "baseName": "lastTransitionTime",
+ "type": "Date"
+ },
+ {
+ "name": "lastUpdateTime",
+ "baseName": "lastUpdateTime",
+ "type": "Date"
+ },
+ {
+ "name": "message",
+ "baseName": "message",
+ "type": "string"
+ },
+ {
+ "name": "reason",
+ "baseName": "reason",
+ "type": "string"
+ },
+ {
+ "name": "status",
+ "baseName": "status",
+ "type": "string"
+ },
+ {
+ "name": "type",
+ "baseName": "type",
+ "type": "string"
+ }
+];
+exports.V1DeploymentCondition = V1DeploymentCondition;
+//# sourceMappingURL=v1DeploymentCondition.js.map
\ No newline at end of file
diff --git a/dist/gen/model/v1DeploymentCondition.js.map b/dist/gen/model/v1DeploymentCondition.js.map
new file mode 100644
index 0000000000..b5a81eba37
--- /dev/null
+++ b/dist/gen/model/v1DeploymentCondition.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"v1DeploymentCondition.js","sourceRoot":"","sources":["../../../src/gen/model/v1DeploymentCondition.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAGH;;EAEE;AACF,MAAa,qBAAqB;IA4D9B,MAAM,CAAC,mBAAmB;QACtB,OAAO,qBAAqB,CAAC,gBAAgB,CAAC;IAClD,CAAC;;AApCM,mCAAa,GAAuB,SAAS,CAAC;AAE9C,sCAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,oBAAoB;QAC5B,UAAU,EAAE,oBAAoB;QAChC,MAAM,EAAE,MAAM;KACjB;IACD;QACI,MAAM,EAAE,gBAAgB;QACxB,UAAU,EAAE,gBAAgB;QAC5B,MAAM,EAAE,MAAM;KACjB;IACD;QACI,MAAM,EAAE,SAAS;QACjB,UAAU,EAAE,SAAS;QACrB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,QAAQ;QAChB,UAAU,EAAE,QAAQ;QACpB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,QAAQ;QAChB,UAAU,EAAE,QAAQ;QACpB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,QAAQ;KACnB;CAAK,CAAC;AA1Df,sDA+DC"}
\ No newline at end of file
diff --git a/dist/gen/model/v1DeploymentList.d.ts b/dist/gen/model/v1DeploymentList.d.ts
new file mode 100644
index 0000000000..ab7e5acc2b
--- /dev/null
+++ b/dist/gen/model/v1DeploymentList.d.ts
@@ -0,0 +1,42 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+import { V1Deployment } from './v1Deployment';
+import { V1ListMeta } from './v1ListMeta';
+/**
+* DeploymentList is a list of Deployments.
+*/
+export declare class V1DeploymentList {
+ /**
+ * APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources
+ */
+ 'apiVersion'?: string;
+ /**
+ * Items is the list of Deployments.
+ */
+ 'items': Array;
+ /**
+ * Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
+ */
+ 'kind'?: string;
+ 'metadata'?: V1ListMeta;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/v1DeploymentList.js b/dist/gen/model/v1DeploymentList.js
new file mode 100644
index 0000000000..6d1cccb179
--- /dev/null
+++ b/dist/gen/model/v1DeploymentList.js
@@ -0,0 +1,46 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* DeploymentList is a list of Deployments.
+*/
+class V1DeploymentList {
+ static getAttributeTypeMap() {
+ return V1DeploymentList.attributeTypeMap;
+ }
+}
+V1DeploymentList.discriminator = undefined;
+V1DeploymentList.attributeTypeMap = [
+ {
+ "name": "apiVersion",
+ "baseName": "apiVersion",
+ "type": "string"
+ },
+ {
+ "name": "items",
+ "baseName": "items",
+ "type": "Array"
+ },
+ {
+ "name": "kind",
+ "baseName": "kind",
+ "type": "string"
+ },
+ {
+ "name": "metadata",
+ "baseName": "metadata",
+ "type": "V1ListMeta"
+ }
+];
+exports.V1DeploymentList = V1DeploymentList;
+//# sourceMappingURL=v1DeploymentList.js.map
\ No newline at end of file
diff --git a/dist/gen/model/v1DeploymentList.js.map b/dist/gen/model/v1DeploymentList.js.map
new file mode 100644
index 0000000000..973b629f3f
--- /dev/null
+++ b/dist/gen/model/v1DeploymentList.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"v1DeploymentList.js","sourceRoot":"","sources":["../../../src/gen/model/v1DeploymentList.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAKH;;EAEE;AACF,MAAa,gBAAgB;IAuCzB,MAAM,CAAC,mBAAmB;QACtB,OAAO,gBAAgB,CAAC,gBAAgB,CAAC;IAC7C,CAAC;;AA1BM,8BAAa,GAAuB,SAAS,CAAC;AAE9C,iCAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,YAAY;QACpB,UAAU,EAAE,YAAY;QACxB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,OAAO;QACf,UAAU,EAAE,OAAO;QACnB,MAAM,EAAE,qBAAqB;KAChC;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,UAAU;QAClB,UAAU,EAAE,UAAU;QACtB,MAAM,EAAE,YAAY;KACvB;CAAK,CAAC;AArCf,4CA0CC"}
\ No newline at end of file
diff --git a/dist/gen/model/v1DeploymentSpec.d.ts b/dist/gen/model/v1DeploymentSpec.d.ts
new file mode 100644
index 0000000000..3498a4d7cd
--- /dev/null
+++ b/dist/gen/model/v1DeploymentSpec.d.ts
@@ -0,0 +1,53 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+import { V1DeploymentStrategy } from './v1DeploymentStrategy';
+import { V1LabelSelector } from './v1LabelSelector';
+import { V1PodTemplateSpec } from './v1PodTemplateSpec';
+/**
+* DeploymentSpec is the specification of the desired behavior of the Deployment.
+*/
+export declare class V1DeploymentSpec {
+ /**
+ * Minimum number of seconds for which a newly created pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready)
+ */
+ 'minReadySeconds'?: number;
+ /**
+ * Indicates that the deployment is paused.
+ */
+ 'paused'?: boolean;
+ /**
+ * The maximum time in seconds for a deployment to make progress before it is considered to be failed. The deployment controller will continue to process failed deployments and a condition with a ProgressDeadlineExceeded reason will be surfaced in the deployment status. Note that progress will not be estimated during the time a deployment is paused. Defaults to 600s.
+ */
+ 'progressDeadlineSeconds'?: number;
+ /**
+ * Number of desired pods. This is a pointer to distinguish between explicit zero and not specified. Defaults to 1.
+ */
+ 'replicas'?: number;
+ /**
+ * The number of old ReplicaSets to retain to allow rollback. This is a pointer to distinguish between explicit zero and not specified. Defaults to 10.
+ */
+ 'revisionHistoryLimit'?: number;
+ 'selector': V1LabelSelector;
+ 'strategy'?: V1DeploymentStrategy;
+ 'template': V1PodTemplateSpec;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/v1DeploymentSpec.js b/dist/gen/model/v1DeploymentSpec.js
new file mode 100644
index 0000000000..f2149ec531
--- /dev/null
+++ b/dist/gen/model/v1DeploymentSpec.js
@@ -0,0 +1,66 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* DeploymentSpec is the specification of the desired behavior of the Deployment.
+*/
+class V1DeploymentSpec {
+ static getAttributeTypeMap() {
+ return V1DeploymentSpec.attributeTypeMap;
+ }
+}
+V1DeploymentSpec.discriminator = undefined;
+V1DeploymentSpec.attributeTypeMap = [
+ {
+ "name": "minReadySeconds",
+ "baseName": "minReadySeconds",
+ "type": "number"
+ },
+ {
+ "name": "paused",
+ "baseName": "paused",
+ "type": "boolean"
+ },
+ {
+ "name": "progressDeadlineSeconds",
+ "baseName": "progressDeadlineSeconds",
+ "type": "number"
+ },
+ {
+ "name": "replicas",
+ "baseName": "replicas",
+ "type": "number"
+ },
+ {
+ "name": "revisionHistoryLimit",
+ "baseName": "revisionHistoryLimit",
+ "type": "number"
+ },
+ {
+ "name": "selector",
+ "baseName": "selector",
+ "type": "V1LabelSelector"
+ },
+ {
+ "name": "strategy",
+ "baseName": "strategy",
+ "type": "V1DeploymentStrategy"
+ },
+ {
+ "name": "template",
+ "baseName": "template",
+ "type": "V1PodTemplateSpec"
+ }
+];
+exports.V1DeploymentSpec = V1DeploymentSpec;
+//# sourceMappingURL=v1DeploymentSpec.js.map
\ No newline at end of file
diff --git a/dist/gen/model/v1DeploymentSpec.js.map b/dist/gen/model/v1DeploymentSpec.js.map
new file mode 100644
index 0000000000..02c6823061
--- /dev/null
+++ b/dist/gen/model/v1DeploymentSpec.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"v1DeploymentSpec.js","sourceRoot":"","sources":["../../../src/gen/model/v1DeploymentSpec.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAMH;;EAEE;AACF,MAAa,gBAAgB;IAqEzB,MAAM,CAAC,mBAAmB;QACtB,OAAO,gBAAgB,CAAC,gBAAgB,CAAC;IAC7C,CAAC;;AA9CM,8BAAa,GAAuB,SAAS,CAAC;AAE9C,iCAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,iBAAiB;QACzB,UAAU,EAAE,iBAAiB;QAC7B,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,QAAQ;QAChB,UAAU,EAAE,QAAQ;QACpB,MAAM,EAAE,SAAS;KACpB;IACD;QACI,MAAM,EAAE,yBAAyB;QACjC,UAAU,EAAE,yBAAyB;QACrC,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,UAAU;QAClB,UAAU,EAAE,UAAU;QACtB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,sBAAsB;QAC9B,UAAU,EAAE,sBAAsB;QAClC,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,UAAU;QAClB,UAAU,EAAE,UAAU;QACtB,MAAM,EAAE,iBAAiB;KAC5B;IACD;QACI,MAAM,EAAE,UAAU;QAClB,UAAU,EAAE,UAAU;QACtB,MAAM,EAAE,sBAAsB;KACjC;IACD;QACI,MAAM,EAAE,UAAU;QAClB,UAAU,EAAE,UAAU;QACtB,MAAM,EAAE,mBAAmB;KAC9B;CAAK,CAAC;AAnEf,4CAwEC"}
\ No newline at end of file
diff --git a/dist/gen/model/v1DeploymentStatus.d.ts b/dist/gen/model/v1DeploymentStatus.d.ts
new file mode 100644
index 0000000000..913d8c3153
--- /dev/null
+++ b/dist/gen/model/v1DeploymentStatus.d.ts
@@ -0,0 +1,60 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+import { V1DeploymentCondition } from './v1DeploymentCondition';
+/**
+* DeploymentStatus is the most recently observed status of the Deployment.
+*/
+export declare class V1DeploymentStatus {
+ /**
+ * Total number of available pods (ready for at least minReadySeconds) targeted by this deployment.
+ */
+ 'availableReplicas'?: number;
+ /**
+ * Count of hash collisions for the Deployment. The Deployment controller uses this field as a collision avoidance mechanism when it needs to create the name for the newest ReplicaSet.
+ */
+ 'collisionCount'?: number;
+ /**
+ * Represents the latest available observations of a deployment\'s current state.
+ */
+ 'conditions'?: Array;
+ /**
+ * The generation observed by the deployment controller.
+ */
+ 'observedGeneration'?: number;
+ /**
+ * Total number of ready pods targeted by this deployment.
+ */
+ 'readyReplicas'?: number;
+ /**
+ * Total number of non-terminated pods targeted by this deployment (their labels match the selector).
+ */
+ 'replicas'?: number;
+ /**
+ * Total number of unavailable pods targeted by this deployment. This is the total number of pods that are still required for the deployment to have 100% available capacity. They may either be pods that are running but not yet available or pods that still have not been created.
+ */
+ 'unavailableReplicas'?: number;
+ /**
+ * Total number of non-terminated pods targeted by this deployment that have the desired template spec.
+ */
+ 'updatedReplicas'?: number;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/v1DeploymentStatus.js b/dist/gen/model/v1DeploymentStatus.js
new file mode 100644
index 0000000000..40f07de268
--- /dev/null
+++ b/dist/gen/model/v1DeploymentStatus.js
@@ -0,0 +1,66 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* DeploymentStatus is the most recently observed status of the Deployment.
+*/
+class V1DeploymentStatus {
+ static getAttributeTypeMap() {
+ return V1DeploymentStatus.attributeTypeMap;
+ }
+}
+V1DeploymentStatus.discriminator = undefined;
+V1DeploymentStatus.attributeTypeMap = [
+ {
+ "name": "availableReplicas",
+ "baseName": "availableReplicas",
+ "type": "number"
+ },
+ {
+ "name": "collisionCount",
+ "baseName": "collisionCount",
+ "type": "number"
+ },
+ {
+ "name": "conditions",
+ "baseName": "conditions",
+ "type": "Array"
+ },
+ {
+ "name": "observedGeneration",
+ "baseName": "observedGeneration",
+ "type": "number"
+ },
+ {
+ "name": "readyReplicas",
+ "baseName": "readyReplicas",
+ "type": "number"
+ },
+ {
+ "name": "replicas",
+ "baseName": "replicas",
+ "type": "number"
+ },
+ {
+ "name": "unavailableReplicas",
+ "baseName": "unavailableReplicas",
+ "type": "number"
+ },
+ {
+ "name": "updatedReplicas",
+ "baseName": "updatedReplicas",
+ "type": "number"
+ }
+];
+exports.V1DeploymentStatus = V1DeploymentStatus;
+//# sourceMappingURL=v1DeploymentStatus.js.map
\ No newline at end of file
diff --git a/dist/gen/model/v1DeploymentStatus.js.map b/dist/gen/model/v1DeploymentStatus.js.map
new file mode 100644
index 0000000000..d701344236
--- /dev/null
+++ b/dist/gen/model/v1DeploymentStatus.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"v1DeploymentStatus.js","sourceRoot":"","sources":["../../../src/gen/model/v1DeploymentStatus.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAIH;;EAEE;AACF,MAAa,kBAAkB;IA8E3B,MAAM,CAAC,mBAAmB;QACtB,OAAO,kBAAkB,CAAC,gBAAgB,CAAC;IAC/C,CAAC;;AA9CM,gCAAa,GAAuB,SAAS,CAAC;AAE9C,mCAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,mBAAmB;QAC3B,UAAU,EAAE,mBAAmB;QAC/B,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,gBAAgB;QACxB,UAAU,EAAE,gBAAgB;QAC5B,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,YAAY;QACpB,UAAU,EAAE,YAAY;QACxB,MAAM,EAAE,8BAA8B;KACzC;IACD;QACI,MAAM,EAAE,oBAAoB;QAC5B,UAAU,EAAE,oBAAoB;QAChC,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,eAAe;QACvB,UAAU,EAAE,eAAe;QAC3B,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,UAAU;QAClB,UAAU,EAAE,UAAU;QACtB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,qBAAqB;QAC7B,UAAU,EAAE,qBAAqB;QACjC,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,iBAAiB;QACzB,UAAU,EAAE,iBAAiB;QAC7B,MAAM,EAAE,QAAQ;KACnB;CAAK,CAAC;AA5Ef,gDAiFC"}
\ No newline at end of file
diff --git a/dist/gen/model/v1DeploymentStrategy.d.ts b/dist/gen/model/v1DeploymentStrategy.d.ts
new file mode 100644
index 0000000000..8b8f1be0de
--- /dev/null
+++ b/dist/gen/model/v1DeploymentStrategy.d.ts
@@ -0,0 +1,33 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+import { V1RollingUpdateDeployment } from './v1RollingUpdateDeployment';
+/**
+* DeploymentStrategy describes how to replace existing pods with new ones.
+*/
+export declare class V1DeploymentStrategy {
+ 'rollingUpdate'?: V1RollingUpdateDeployment;
+ /**
+ * Type of deployment. Can be \"Recreate\" or \"RollingUpdate\". Default is RollingUpdate.
+ */
+ 'type'?: string;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/v1DeploymentStrategy.js b/dist/gen/model/v1DeploymentStrategy.js
new file mode 100644
index 0000000000..edced3e72c
--- /dev/null
+++ b/dist/gen/model/v1DeploymentStrategy.js
@@ -0,0 +1,36 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* DeploymentStrategy describes how to replace existing pods with new ones.
+*/
+class V1DeploymentStrategy {
+ static getAttributeTypeMap() {
+ return V1DeploymentStrategy.attributeTypeMap;
+ }
+}
+V1DeploymentStrategy.discriminator = undefined;
+V1DeploymentStrategy.attributeTypeMap = [
+ {
+ "name": "rollingUpdate",
+ "baseName": "rollingUpdate",
+ "type": "V1RollingUpdateDeployment"
+ },
+ {
+ "name": "type",
+ "baseName": "type",
+ "type": "string"
+ }
+];
+exports.V1DeploymentStrategy = V1DeploymentStrategy;
+//# sourceMappingURL=v1DeploymentStrategy.js.map
\ No newline at end of file
diff --git a/dist/gen/model/v1DeploymentStrategy.js.map b/dist/gen/model/v1DeploymentStrategy.js.map
new file mode 100644
index 0000000000..603f6c8117
--- /dev/null
+++ b/dist/gen/model/v1DeploymentStrategy.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"v1DeploymentStrategy.js","sourceRoot":"","sources":["../../../src/gen/model/v1DeploymentStrategy.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAIH;;EAEE;AACF,MAAa,oBAAoB;IAqB7B,MAAM,CAAC,mBAAmB;QACtB,OAAO,oBAAoB,CAAC,gBAAgB,CAAC;IACjD,CAAC;;AAhBM,kCAAa,GAAuB,SAAS,CAAC;AAE9C,qCAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,eAAe;QACvB,UAAU,EAAE,eAAe;QAC3B,MAAM,EAAE,2BAA2B;KACtC;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,QAAQ;KACnB;CAAK,CAAC;AAnBf,oDAwBC"}
\ No newline at end of file
diff --git a/dist/gen/model/v1DownwardAPIProjection.d.ts b/dist/gen/model/v1DownwardAPIProjection.d.ts
new file mode 100644
index 0000000000..d6d3d3f253
--- /dev/null
+++ b/dist/gen/model/v1DownwardAPIProjection.d.ts
@@ -0,0 +1,32 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+import { V1DownwardAPIVolumeFile } from './v1DownwardAPIVolumeFile';
+/**
+* Represents downward API info for projecting into a projected volume. Note that this is identical to a downwardAPI volume source without the default mode.
+*/
+export declare class V1DownwardAPIProjection {
+ /**
+ * Items is a list of DownwardAPIVolume file
+ */
+ 'items'?: Array;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/v1DownwardAPIProjection.js b/dist/gen/model/v1DownwardAPIProjection.js
new file mode 100644
index 0000000000..c332623116
--- /dev/null
+++ b/dist/gen/model/v1DownwardAPIProjection.js
@@ -0,0 +1,31 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* Represents downward API info for projecting into a projected volume. Note that this is identical to a downwardAPI volume source without the default mode.
+*/
+class V1DownwardAPIProjection {
+ static getAttributeTypeMap() {
+ return V1DownwardAPIProjection.attributeTypeMap;
+ }
+}
+V1DownwardAPIProjection.discriminator = undefined;
+V1DownwardAPIProjection.attributeTypeMap = [
+ {
+ "name": "items",
+ "baseName": "items",
+ "type": "Array"
+ }
+];
+exports.V1DownwardAPIProjection = V1DownwardAPIProjection;
+//# sourceMappingURL=v1DownwardAPIProjection.js.map
\ No newline at end of file
diff --git a/dist/gen/model/v1DownwardAPIProjection.js.map b/dist/gen/model/v1DownwardAPIProjection.js.map
new file mode 100644
index 0000000000..44c5a322a5
--- /dev/null
+++ b/dist/gen/model/v1DownwardAPIProjection.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"v1DownwardAPIProjection.js","sourceRoot":"","sources":["../../../src/gen/model/v1DownwardAPIProjection.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAIH;;EAEE;AACF,MAAa,uBAAuB;IAehC,MAAM,CAAC,mBAAmB;QACtB,OAAO,uBAAuB,CAAC,gBAAgB,CAAC;IACpD,CAAC;;AAXM,qCAAa,GAAuB,SAAS,CAAC;AAE9C,wCAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,OAAO;QACf,UAAU,EAAE,OAAO;QACnB,MAAM,EAAE,gCAAgC;KAC3C;CAAK,CAAC;AAbf,0DAkBC"}
\ No newline at end of file
diff --git a/dist/gen/model/v1DownwardAPIVolumeFile.d.ts b/dist/gen/model/v1DownwardAPIVolumeFile.d.ts
new file mode 100644
index 0000000000..4d8d800919
--- /dev/null
+++ b/dist/gen/model/v1DownwardAPIVolumeFile.d.ts
@@ -0,0 +1,39 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+import { V1ObjectFieldSelector } from './v1ObjectFieldSelector';
+import { V1ResourceFieldSelector } from './v1ResourceFieldSelector';
+/**
+* DownwardAPIVolumeFile represents information to create the file containing the pod field
+*/
+export declare class V1DownwardAPIVolumeFile {
+ 'fieldRef'?: V1ObjectFieldSelector;
+ /**
+ * Optional: mode bits to use on this file, must be a value between 0 and 0777. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.
+ */
+ 'mode'?: number;
+ /**
+ * Required: Path is the relative path name of the file to be created. Must not be absolute or contain the \'..\' path. Must be utf-8 encoded. The first item of the relative path must not start with \'..\'
+ */
+ 'path': string;
+ 'resourceFieldRef'?: V1ResourceFieldSelector;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/v1DownwardAPIVolumeFile.js b/dist/gen/model/v1DownwardAPIVolumeFile.js
new file mode 100644
index 0000000000..9e6549d041
--- /dev/null
+++ b/dist/gen/model/v1DownwardAPIVolumeFile.js
@@ -0,0 +1,46 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* DownwardAPIVolumeFile represents information to create the file containing the pod field
+*/
+class V1DownwardAPIVolumeFile {
+ static getAttributeTypeMap() {
+ return V1DownwardAPIVolumeFile.attributeTypeMap;
+ }
+}
+V1DownwardAPIVolumeFile.discriminator = undefined;
+V1DownwardAPIVolumeFile.attributeTypeMap = [
+ {
+ "name": "fieldRef",
+ "baseName": "fieldRef",
+ "type": "V1ObjectFieldSelector"
+ },
+ {
+ "name": "mode",
+ "baseName": "mode",
+ "type": "number"
+ },
+ {
+ "name": "path",
+ "baseName": "path",
+ "type": "string"
+ },
+ {
+ "name": "resourceFieldRef",
+ "baseName": "resourceFieldRef",
+ "type": "V1ResourceFieldSelector"
+ }
+];
+exports.V1DownwardAPIVolumeFile = V1DownwardAPIVolumeFile;
+//# sourceMappingURL=v1DownwardAPIVolumeFile.js.map
\ No newline at end of file
diff --git a/dist/gen/model/v1DownwardAPIVolumeFile.js.map b/dist/gen/model/v1DownwardAPIVolumeFile.js.map
new file mode 100644
index 0000000000..3c4c87cb5b
--- /dev/null
+++ b/dist/gen/model/v1DownwardAPIVolumeFile.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"v1DownwardAPIVolumeFile.js","sourceRoot":"","sources":["../../../src/gen/model/v1DownwardAPIVolumeFile.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAKH;;EAEE;AACF,MAAa,uBAAuB;IAoChC,MAAM,CAAC,mBAAmB;QACtB,OAAO,uBAAuB,CAAC,gBAAgB,CAAC;IACpD,CAAC;;AA1BM,qCAAa,GAAuB,SAAS,CAAC;AAE9C,wCAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,UAAU;QAClB,UAAU,EAAE,UAAU;QACtB,MAAM,EAAE,uBAAuB;KAClC;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,kBAAkB;QAC1B,UAAU,EAAE,kBAAkB;QAC9B,MAAM,EAAE,yBAAyB;KACpC;CAAK,CAAC;AAlCf,0DAuCC"}
\ No newline at end of file
diff --git a/dist/gen/model/v1DownwardAPIVolumeSource.d.ts b/dist/gen/model/v1DownwardAPIVolumeSource.d.ts
new file mode 100644
index 0000000000..4abb2d25a1
--- /dev/null
+++ b/dist/gen/model/v1DownwardAPIVolumeSource.d.ts
@@ -0,0 +1,36 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+import { V1DownwardAPIVolumeFile } from './v1DownwardAPIVolumeFile';
+/**
+* DownwardAPIVolumeSource represents a volume containing downward API info. Downward API volumes support ownership management and SELinux relabeling.
+*/
+export declare class V1DownwardAPIVolumeSource {
+ /**
+ * Optional: mode bits to use on created files by default. Must be a value between 0 and 0777. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.
+ */
+ 'defaultMode'?: number;
+ /**
+ * Items is a list of downward API volume file
+ */
+ 'items'?: Array;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/v1DownwardAPIVolumeSource.js b/dist/gen/model/v1DownwardAPIVolumeSource.js
new file mode 100644
index 0000000000..0a3b436b40
--- /dev/null
+++ b/dist/gen/model/v1DownwardAPIVolumeSource.js
@@ -0,0 +1,36 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* DownwardAPIVolumeSource represents a volume containing downward API info. Downward API volumes support ownership management and SELinux relabeling.
+*/
+class V1DownwardAPIVolumeSource {
+ static getAttributeTypeMap() {
+ return V1DownwardAPIVolumeSource.attributeTypeMap;
+ }
+}
+V1DownwardAPIVolumeSource.discriminator = undefined;
+V1DownwardAPIVolumeSource.attributeTypeMap = [
+ {
+ "name": "defaultMode",
+ "baseName": "defaultMode",
+ "type": "number"
+ },
+ {
+ "name": "items",
+ "baseName": "items",
+ "type": "Array"
+ }
+];
+exports.V1DownwardAPIVolumeSource = V1DownwardAPIVolumeSource;
+//# sourceMappingURL=v1DownwardAPIVolumeSource.js.map
\ No newline at end of file
diff --git a/dist/gen/model/v1DownwardAPIVolumeSource.js.map b/dist/gen/model/v1DownwardAPIVolumeSource.js.map
new file mode 100644
index 0000000000..76001b9e15
--- /dev/null
+++ b/dist/gen/model/v1DownwardAPIVolumeSource.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"v1DownwardAPIVolumeSource.js","sourceRoot":"","sources":["../../../src/gen/model/v1DownwardAPIVolumeSource.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAIH;;EAEE;AACF,MAAa,yBAAyB;IAwBlC,MAAM,CAAC,mBAAmB;QACtB,OAAO,yBAAyB,CAAC,gBAAgB,CAAC;IACtD,CAAC;;AAhBM,uCAAa,GAAuB,SAAS,CAAC;AAE9C,0CAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,aAAa;QACrB,UAAU,EAAE,aAAa;QACzB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,OAAO;QACf,UAAU,EAAE,OAAO;QACnB,MAAM,EAAE,gCAAgC;KAC3C;CAAK,CAAC;AAtBf,8DA2BC"}
\ No newline at end of file
diff --git a/dist/gen/model/v1EmptyDirVolumeSource.d.ts b/dist/gen/model/v1EmptyDirVolumeSource.d.ts
new file mode 100644
index 0000000000..52456e3cb5
--- /dev/null
+++ b/dist/gen/model/v1EmptyDirVolumeSource.d.ts
@@ -0,0 +1,35 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+/**
+* Represents an empty directory for a pod. Empty directory volumes support ownership management and SELinux relabeling.
+*/
+export declare class V1EmptyDirVolumeSource {
+ /**
+ * What type of storage medium should back this directory. The default is \"\" which means to use the node\'s default medium. Must be an empty string (default) or Memory. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir
+ */
+ 'medium'?: string;
+ /**
+ * Total amount of local storage required for this EmptyDir volume. The size limit is also applicable for memory medium. The maximum usage on memory medium EmptyDir would be the minimum value between the SizeLimit specified here and the sum of memory limits of all containers in a pod. The default is nil which means that the limit is undefined. More info: http://kubernetes.io/docs/user-guide/volumes#emptydir
+ */
+ 'sizeLimit'?: string;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/v1EmptyDirVolumeSource.js b/dist/gen/model/v1EmptyDirVolumeSource.js
new file mode 100644
index 0000000000..be6f0266ad
--- /dev/null
+++ b/dist/gen/model/v1EmptyDirVolumeSource.js
@@ -0,0 +1,36 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* Represents an empty directory for a pod. Empty directory volumes support ownership management and SELinux relabeling.
+*/
+class V1EmptyDirVolumeSource {
+ static getAttributeTypeMap() {
+ return V1EmptyDirVolumeSource.attributeTypeMap;
+ }
+}
+V1EmptyDirVolumeSource.discriminator = undefined;
+V1EmptyDirVolumeSource.attributeTypeMap = [
+ {
+ "name": "medium",
+ "baseName": "medium",
+ "type": "string"
+ },
+ {
+ "name": "sizeLimit",
+ "baseName": "sizeLimit",
+ "type": "string"
+ }
+];
+exports.V1EmptyDirVolumeSource = V1EmptyDirVolumeSource;
+//# sourceMappingURL=v1EmptyDirVolumeSource.js.map
\ No newline at end of file
diff --git a/dist/gen/model/v1EmptyDirVolumeSource.js.map b/dist/gen/model/v1EmptyDirVolumeSource.js.map
new file mode 100644
index 0000000000..0973f47890
--- /dev/null
+++ b/dist/gen/model/v1EmptyDirVolumeSource.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"v1EmptyDirVolumeSource.js","sourceRoot":"","sources":["../../../src/gen/model/v1EmptyDirVolumeSource.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAGH;;EAEE;AACF,MAAa,sBAAsB;IAwB/B,MAAM,CAAC,mBAAmB;QACtB,OAAO,sBAAsB,CAAC,gBAAgB,CAAC;IACnD,CAAC;;AAhBM,oCAAa,GAAuB,SAAS,CAAC;AAE9C,uCAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,QAAQ;QAChB,UAAU,EAAE,QAAQ;QACpB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,WAAW;QACnB,UAAU,EAAE,WAAW;QACvB,MAAM,EAAE,QAAQ;KACnB;CAAK,CAAC;AAtBf,wDA2BC"}
\ No newline at end of file
diff --git a/dist/gen/model/v1EndpointAddress.d.ts b/dist/gen/model/v1EndpointAddress.d.ts
new file mode 100644
index 0000000000..a52c5cb13c
--- /dev/null
+++ b/dist/gen/model/v1EndpointAddress.d.ts
@@ -0,0 +1,41 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+import { V1ObjectReference } from './v1ObjectReference';
+/**
+* EndpointAddress is a tuple that describes single IP address.
+*/
+export declare class V1EndpointAddress {
+ /**
+ * The Hostname of this endpoint
+ */
+ 'hostname'?: string;
+ /**
+ * The IP of this endpoint. May not be loopback (127.0.0.0/8), link-local (169.254.0.0/16), or link-local multicast ((224.0.0.0/24). IPv6 is also accepted but not fully supported on all platforms. Also, certain kubernetes components, like kube-proxy, are not IPv6 ready.
+ */
+ 'ip': string;
+ /**
+ * Optional: Node hosting this endpoint. This can be used to determine endpoints local to a node.
+ */
+ 'nodeName'?: string;
+ 'targetRef'?: V1ObjectReference;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/v1EndpointAddress.js b/dist/gen/model/v1EndpointAddress.js
new file mode 100644
index 0000000000..7e68ae6628
--- /dev/null
+++ b/dist/gen/model/v1EndpointAddress.js
@@ -0,0 +1,46 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* EndpointAddress is a tuple that describes single IP address.
+*/
+class V1EndpointAddress {
+ static getAttributeTypeMap() {
+ return V1EndpointAddress.attributeTypeMap;
+ }
+}
+V1EndpointAddress.discriminator = undefined;
+V1EndpointAddress.attributeTypeMap = [
+ {
+ "name": "hostname",
+ "baseName": "hostname",
+ "type": "string"
+ },
+ {
+ "name": "ip",
+ "baseName": "ip",
+ "type": "string"
+ },
+ {
+ "name": "nodeName",
+ "baseName": "nodeName",
+ "type": "string"
+ },
+ {
+ "name": "targetRef",
+ "baseName": "targetRef",
+ "type": "V1ObjectReference"
+ }
+];
+exports.V1EndpointAddress = V1EndpointAddress;
+//# sourceMappingURL=v1EndpointAddress.js.map
\ No newline at end of file
diff --git a/dist/gen/model/v1EndpointAddress.js.map b/dist/gen/model/v1EndpointAddress.js.map
new file mode 100644
index 0000000000..a4b44d2ff9
--- /dev/null
+++ b/dist/gen/model/v1EndpointAddress.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"v1EndpointAddress.js","sourceRoot":"","sources":["../../../src/gen/model/v1EndpointAddress.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAIH;;EAEE;AACF,MAAa,iBAAiB;IAuC1B,MAAM,CAAC,mBAAmB;QACtB,OAAO,iBAAiB,CAAC,gBAAgB,CAAC;IAC9C,CAAC;;AA1BM,+BAAa,GAAuB,SAAS,CAAC;AAE9C,kCAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,UAAU;QAClB,UAAU,EAAE,UAAU;QACtB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,IAAI;QACZ,UAAU,EAAE,IAAI;QAChB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,UAAU;QAClB,UAAU,EAAE,UAAU;QACtB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,WAAW;QACnB,UAAU,EAAE,WAAW;QACvB,MAAM,EAAE,mBAAmB;KAC9B;CAAK,CAAC;AArCf,8CA0CC"}
\ No newline at end of file
diff --git a/dist/gen/model/v1EndpointPort.d.ts b/dist/gen/model/v1EndpointPort.d.ts
new file mode 100644
index 0000000000..f4364ac2e8
--- /dev/null
+++ b/dist/gen/model/v1EndpointPort.d.ts
@@ -0,0 +1,39 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+/**
+* EndpointPort is a tuple that describes a single port.
+*/
+export declare class V1EndpointPort {
+ /**
+ * The name of this port (corresponds to ServicePort.Name). Must be a DNS_LABEL. Optional only if one port is defined.
+ */
+ 'name'?: string;
+ /**
+ * The port number of the endpoint.
+ */
+ 'port': number;
+ /**
+ * The IP protocol for this port. Must be UDP, TCP, or SCTP. Default is TCP.
+ */
+ 'protocol'?: string;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/v1EndpointPort.js b/dist/gen/model/v1EndpointPort.js
new file mode 100644
index 0000000000..743f6f486d
--- /dev/null
+++ b/dist/gen/model/v1EndpointPort.js
@@ -0,0 +1,41 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* EndpointPort is a tuple that describes a single port.
+*/
+class V1EndpointPort {
+ static getAttributeTypeMap() {
+ return V1EndpointPort.attributeTypeMap;
+ }
+}
+V1EndpointPort.discriminator = undefined;
+V1EndpointPort.attributeTypeMap = [
+ {
+ "name": "name",
+ "baseName": "name",
+ "type": "string"
+ },
+ {
+ "name": "port",
+ "baseName": "port",
+ "type": "number"
+ },
+ {
+ "name": "protocol",
+ "baseName": "protocol",
+ "type": "string"
+ }
+];
+exports.V1EndpointPort = V1EndpointPort;
+//# sourceMappingURL=v1EndpointPort.js.map
\ No newline at end of file
diff --git a/dist/gen/model/v1EndpointPort.js.map b/dist/gen/model/v1EndpointPort.js.map
new file mode 100644
index 0000000000..3f8731902c
--- /dev/null
+++ b/dist/gen/model/v1EndpointPort.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"v1EndpointPort.js","sourceRoot":"","sources":["../../../src/gen/model/v1EndpointPort.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAGH;;EAEE;AACF,MAAa,cAAc;IAiCvB,MAAM,CAAC,mBAAmB;QACtB,OAAO,cAAc,CAAC,gBAAgB,CAAC;IAC3C,CAAC;;AArBM,4BAAa,GAAuB,SAAS,CAAC;AAE9C,+BAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,UAAU;QAClB,UAAU,EAAE,UAAU;QACtB,MAAM,EAAE,QAAQ;KACnB;CAAK,CAAC;AA/Bf,wCAoCC"}
\ No newline at end of file
diff --git a/dist/gen/model/v1EndpointSubset.d.ts b/dist/gen/model/v1EndpointSubset.d.ts
new file mode 100644
index 0000000000..3ac042172e
--- /dev/null
+++ b/dist/gen/model/v1EndpointSubset.d.ts
@@ -0,0 +1,41 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+import { V1EndpointAddress } from './v1EndpointAddress';
+import { V1EndpointPort } from './v1EndpointPort';
+/**
+* EndpointSubset is a group of addresses with a common set of ports. The expanded set of endpoints is the Cartesian product of Addresses x Ports. For example, given: { Addresses: [{\"ip\": \"10.10.1.1\"}, {\"ip\": \"10.10.2.2\"}], Ports: [{\"name\": \"a\", \"port\": 8675}, {\"name\": \"b\", \"port\": 309}] } The resulting set of endpoints can be viewed as: a: [ 10.10.1.1:8675, 10.10.2.2:8675 ], b: [ 10.10.1.1:309, 10.10.2.2:309 ]
+*/
+export declare class V1EndpointSubset {
+ /**
+ * IP addresses which offer the related ports that are marked as ready. These endpoints should be considered safe for load balancers and clients to utilize.
+ */
+ 'addresses'?: Array;
+ /**
+ * IP addresses which offer the related ports but are not currently marked as ready because they have not yet finished starting, have recently failed a readiness check, or have recently failed a liveness check.
+ */
+ 'notReadyAddresses'?: Array;
+ /**
+ * Port numbers available on the related IP addresses.
+ */
+ 'ports'?: Array;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/v1EndpointSubset.js b/dist/gen/model/v1EndpointSubset.js
new file mode 100644
index 0000000000..d5e90402ea
--- /dev/null
+++ b/dist/gen/model/v1EndpointSubset.js
@@ -0,0 +1,41 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* EndpointSubset is a group of addresses with a common set of ports. The expanded set of endpoints is the Cartesian product of Addresses x Ports. For example, given: { Addresses: [{\"ip\": \"10.10.1.1\"}, {\"ip\": \"10.10.2.2\"}], Ports: [{\"name\": \"a\", \"port\": 8675}, {\"name\": \"b\", \"port\": 309}] } The resulting set of endpoints can be viewed as: a: [ 10.10.1.1:8675, 10.10.2.2:8675 ], b: [ 10.10.1.1:309, 10.10.2.2:309 ]
+*/
+class V1EndpointSubset {
+ static getAttributeTypeMap() {
+ return V1EndpointSubset.attributeTypeMap;
+ }
+}
+V1EndpointSubset.discriminator = undefined;
+V1EndpointSubset.attributeTypeMap = [
+ {
+ "name": "addresses",
+ "baseName": "addresses",
+ "type": "Array"
+ },
+ {
+ "name": "notReadyAddresses",
+ "baseName": "notReadyAddresses",
+ "type": "Array"
+ },
+ {
+ "name": "ports",
+ "baseName": "ports",
+ "type": "Array"
+ }
+];
+exports.V1EndpointSubset = V1EndpointSubset;
+//# sourceMappingURL=v1EndpointSubset.js.map
\ No newline at end of file
diff --git a/dist/gen/model/v1EndpointSubset.js.map b/dist/gen/model/v1EndpointSubset.js.map
new file mode 100644
index 0000000000..8397b3f176
--- /dev/null
+++ b/dist/gen/model/v1EndpointSubset.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"v1EndpointSubset.js","sourceRoot":"","sources":["../../../src/gen/model/v1EndpointSubset.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAKH;;EAEE;AACF,MAAa,gBAAgB;IAiCzB,MAAM,CAAC,mBAAmB;QACtB,OAAO,gBAAgB,CAAC,gBAAgB,CAAC;IAC7C,CAAC;;AArBM,8BAAa,GAAuB,SAAS,CAAC;AAE9C,iCAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,WAAW;QACnB,UAAU,EAAE,WAAW;QACvB,MAAM,EAAE,0BAA0B;KACrC;IACD;QACI,MAAM,EAAE,mBAAmB;QAC3B,UAAU,EAAE,mBAAmB;QAC/B,MAAM,EAAE,0BAA0B;KACrC;IACD;QACI,MAAM,EAAE,OAAO;QACf,UAAU,EAAE,OAAO;QACnB,MAAM,EAAE,uBAAuB;KAClC;CAAK,CAAC;AA/Bf,4CAoCC"}
\ No newline at end of file
diff --git a/dist/gen/model/v1Endpoints.d.ts b/dist/gen/model/v1Endpoints.d.ts
new file mode 100644
index 0000000000..ef9a83d672
--- /dev/null
+++ b/dist/gen/model/v1Endpoints.d.ts
@@ -0,0 +1,42 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+import { V1EndpointSubset } from './v1EndpointSubset';
+import { V1ObjectMeta } from './v1ObjectMeta';
+/**
+* Endpoints is a collection of endpoints that implement the actual service. Example: Name: \"mysvc\", Subsets: [ { Addresses: [{\"ip\": \"10.10.1.1\"}, {\"ip\": \"10.10.2.2\"}], Ports: [{\"name\": \"a\", \"port\": 8675}, {\"name\": \"b\", \"port\": 309}] }, { Addresses: [{\"ip\": \"10.10.3.3\"}], Ports: [{\"name\": \"a\", \"port\": 93}, {\"name\": \"b\", \"port\": 76}] }, ]
+*/
+export declare class V1Endpoints {
+ /**
+ * APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources
+ */
+ 'apiVersion'?: string;
+ /**
+ * Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
+ */
+ 'kind'?: string;
+ 'metadata'?: V1ObjectMeta;
+ /**
+ * The set of all endpoints is the union of all subsets. Addresses are placed into subsets according to the IPs they share. A single address with multiple ports, some of which are ready and some of which are not (because they come from different containers) will result in the address being displayed in different subsets for the different ports. No address will appear in both Addresses and NotReadyAddresses in the same subset. Sets of addresses and ports that comprise a service.
+ */
+ 'subsets'?: Array;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/v1Endpoints.js b/dist/gen/model/v1Endpoints.js
new file mode 100644
index 0000000000..df2d46246f
--- /dev/null
+++ b/dist/gen/model/v1Endpoints.js
@@ -0,0 +1,46 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* Endpoints is a collection of endpoints that implement the actual service. Example: Name: \"mysvc\", Subsets: [ { Addresses: [{\"ip\": \"10.10.1.1\"}, {\"ip\": \"10.10.2.2\"}], Ports: [{\"name\": \"a\", \"port\": 8675}, {\"name\": \"b\", \"port\": 309}] }, { Addresses: [{\"ip\": \"10.10.3.3\"}], Ports: [{\"name\": \"a\", \"port\": 93}, {\"name\": \"b\", \"port\": 76}] }, ]
+*/
+class V1Endpoints {
+ static getAttributeTypeMap() {
+ return V1Endpoints.attributeTypeMap;
+ }
+}
+V1Endpoints.discriminator = undefined;
+V1Endpoints.attributeTypeMap = [
+ {
+ "name": "apiVersion",
+ "baseName": "apiVersion",
+ "type": "string"
+ },
+ {
+ "name": "kind",
+ "baseName": "kind",
+ "type": "string"
+ },
+ {
+ "name": "metadata",
+ "baseName": "metadata",
+ "type": "V1ObjectMeta"
+ },
+ {
+ "name": "subsets",
+ "baseName": "subsets",
+ "type": "Array"
+ }
+];
+exports.V1Endpoints = V1Endpoints;
+//# sourceMappingURL=v1Endpoints.js.map
\ No newline at end of file
diff --git a/dist/gen/model/v1Endpoints.js.map b/dist/gen/model/v1Endpoints.js.map
new file mode 100644
index 0000000000..cf2d8b3c8a
--- /dev/null
+++ b/dist/gen/model/v1Endpoints.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"v1Endpoints.js","sourceRoot":"","sources":["../../../src/gen/model/v1Endpoints.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAKH;;EAEE;AACF,MAAa,WAAW;IAuCpB,MAAM,CAAC,mBAAmB;QACtB,OAAO,WAAW,CAAC,gBAAgB,CAAC;IACxC,CAAC;;AA1BM,yBAAa,GAAuB,SAAS,CAAC;AAE9C,4BAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,YAAY;QACpB,UAAU,EAAE,YAAY;QACxB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,UAAU;QAClB,UAAU,EAAE,UAAU;QACtB,MAAM,EAAE,cAAc;KACzB;IACD;QACI,MAAM,EAAE,SAAS;QACjB,UAAU,EAAE,SAAS;QACrB,MAAM,EAAE,yBAAyB;KACpC;CAAK,CAAC;AArCf,kCA0CC"}
\ No newline at end of file
diff --git a/dist/gen/model/v1EndpointsList.d.ts b/dist/gen/model/v1EndpointsList.d.ts
new file mode 100644
index 0000000000..cc48324dc6
--- /dev/null
+++ b/dist/gen/model/v1EndpointsList.d.ts
@@ -0,0 +1,42 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+import { V1Endpoints } from './v1Endpoints';
+import { V1ListMeta } from './v1ListMeta';
+/**
+* EndpointsList is a list of endpoints.
+*/
+export declare class V1EndpointsList {
+ /**
+ * APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources
+ */
+ 'apiVersion'?: string;
+ /**
+ * List of endpoints.
+ */
+ 'items': Array;
+ /**
+ * Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
+ */
+ 'kind'?: string;
+ 'metadata'?: V1ListMeta;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/v1EndpointsList.js b/dist/gen/model/v1EndpointsList.js
new file mode 100644
index 0000000000..a03d1589ef
--- /dev/null
+++ b/dist/gen/model/v1EndpointsList.js
@@ -0,0 +1,46 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* EndpointsList is a list of endpoints.
+*/
+class V1EndpointsList {
+ static getAttributeTypeMap() {
+ return V1EndpointsList.attributeTypeMap;
+ }
+}
+V1EndpointsList.discriminator = undefined;
+V1EndpointsList.attributeTypeMap = [
+ {
+ "name": "apiVersion",
+ "baseName": "apiVersion",
+ "type": "string"
+ },
+ {
+ "name": "items",
+ "baseName": "items",
+ "type": "Array"
+ },
+ {
+ "name": "kind",
+ "baseName": "kind",
+ "type": "string"
+ },
+ {
+ "name": "metadata",
+ "baseName": "metadata",
+ "type": "V1ListMeta"
+ }
+];
+exports.V1EndpointsList = V1EndpointsList;
+//# sourceMappingURL=v1EndpointsList.js.map
\ No newline at end of file
diff --git a/dist/gen/model/v1EndpointsList.js.map b/dist/gen/model/v1EndpointsList.js.map
new file mode 100644
index 0000000000..c579d90465
--- /dev/null
+++ b/dist/gen/model/v1EndpointsList.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"v1EndpointsList.js","sourceRoot":"","sources":["../../../src/gen/model/v1EndpointsList.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAKH;;EAEE;AACF,MAAa,eAAe;IAuCxB,MAAM,CAAC,mBAAmB;QACtB,OAAO,eAAe,CAAC,gBAAgB,CAAC;IAC5C,CAAC;;AA1BM,6BAAa,GAAuB,SAAS,CAAC;AAE9C,gCAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,YAAY;QACpB,UAAU,EAAE,YAAY;QACxB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,OAAO;QACf,UAAU,EAAE,OAAO;QACnB,MAAM,EAAE,oBAAoB;KAC/B;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,UAAU;QAClB,UAAU,EAAE,UAAU;QACtB,MAAM,EAAE,YAAY;KACvB;CAAK,CAAC;AArCf,0CA0CC"}
\ No newline at end of file
diff --git a/dist/gen/model/v1EnvFromSource.d.ts b/dist/gen/model/v1EnvFromSource.d.ts
new file mode 100644
index 0000000000..81a5dc3ff7
--- /dev/null
+++ b/dist/gen/model/v1EnvFromSource.d.ts
@@ -0,0 +1,35 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+import { V1ConfigMapEnvSource } from './v1ConfigMapEnvSource';
+import { V1SecretEnvSource } from './v1SecretEnvSource';
+/**
+* EnvFromSource represents the source of a set of ConfigMaps
+*/
+export declare class V1EnvFromSource {
+ 'configMapRef'?: V1ConfigMapEnvSource;
+ /**
+ * An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER.
+ */
+ 'prefix'?: string;
+ 'secretRef'?: V1SecretEnvSource;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/v1EnvFromSource.js b/dist/gen/model/v1EnvFromSource.js
new file mode 100644
index 0000000000..53b2bbc040
--- /dev/null
+++ b/dist/gen/model/v1EnvFromSource.js
@@ -0,0 +1,41 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* EnvFromSource represents the source of a set of ConfigMaps
+*/
+class V1EnvFromSource {
+ static getAttributeTypeMap() {
+ return V1EnvFromSource.attributeTypeMap;
+ }
+}
+V1EnvFromSource.discriminator = undefined;
+V1EnvFromSource.attributeTypeMap = [
+ {
+ "name": "configMapRef",
+ "baseName": "configMapRef",
+ "type": "V1ConfigMapEnvSource"
+ },
+ {
+ "name": "prefix",
+ "baseName": "prefix",
+ "type": "string"
+ },
+ {
+ "name": "secretRef",
+ "baseName": "secretRef",
+ "type": "V1SecretEnvSource"
+ }
+];
+exports.V1EnvFromSource = V1EnvFromSource;
+//# sourceMappingURL=v1EnvFromSource.js.map
\ No newline at end of file
diff --git a/dist/gen/model/v1EnvFromSource.js.map b/dist/gen/model/v1EnvFromSource.js.map
new file mode 100644
index 0000000000..bcc27770be
--- /dev/null
+++ b/dist/gen/model/v1EnvFromSource.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"v1EnvFromSource.js","sourceRoot":"","sources":["../../../src/gen/model/v1EnvFromSource.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAKH;;EAEE;AACF,MAAa,eAAe;IA2BxB,MAAM,CAAC,mBAAmB;QACtB,OAAO,eAAe,CAAC,gBAAgB,CAAC;IAC5C,CAAC;;AArBM,6BAAa,GAAuB,SAAS,CAAC;AAE9C,gCAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,cAAc;QACtB,UAAU,EAAE,cAAc;QAC1B,MAAM,EAAE,sBAAsB;KACjC;IACD;QACI,MAAM,EAAE,QAAQ;QAChB,UAAU,EAAE,QAAQ;QACpB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,WAAW;QACnB,UAAU,EAAE,WAAW;QACvB,MAAM,EAAE,mBAAmB;KAC9B;CAAK,CAAC;AAzBf,0CA8BC"}
\ No newline at end of file
diff --git a/dist/gen/model/v1EnvVar.d.ts b/dist/gen/model/v1EnvVar.d.ts
new file mode 100644
index 0000000000..4755d50da7
--- /dev/null
+++ b/dist/gen/model/v1EnvVar.d.ts
@@ -0,0 +1,37 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+import { V1EnvVarSource } from './v1EnvVarSource';
+/**
+* EnvVar represents an environment variable present in a Container.
+*/
+export declare class V1EnvVar {
+ /**
+ * Name of the environment variable. Must be a C_IDENTIFIER.
+ */
+ 'name': string;
+ /**
+ * Variable references $(VAR_NAME) are expanded using the previous defined environment variables in the container and any service environment variables. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Defaults to \"\".
+ */
+ 'value'?: string;
+ 'valueFrom'?: V1EnvVarSource;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/v1EnvVar.js b/dist/gen/model/v1EnvVar.js
new file mode 100644
index 0000000000..7f1828b458
--- /dev/null
+++ b/dist/gen/model/v1EnvVar.js
@@ -0,0 +1,41 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* EnvVar represents an environment variable present in a Container.
+*/
+class V1EnvVar {
+ static getAttributeTypeMap() {
+ return V1EnvVar.attributeTypeMap;
+ }
+}
+V1EnvVar.discriminator = undefined;
+V1EnvVar.attributeTypeMap = [
+ {
+ "name": "name",
+ "baseName": "name",
+ "type": "string"
+ },
+ {
+ "name": "value",
+ "baseName": "value",
+ "type": "string"
+ },
+ {
+ "name": "valueFrom",
+ "baseName": "valueFrom",
+ "type": "V1EnvVarSource"
+ }
+];
+exports.V1EnvVar = V1EnvVar;
+//# sourceMappingURL=v1EnvVar.js.map
\ No newline at end of file
diff --git a/dist/gen/model/v1EnvVar.js.map b/dist/gen/model/v1EnvVar.js.map
new file mode 100644
index 0000000000..f4b13d2753
--- /dev/null
+++ b/dist/gen/model/v1EnvVar.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"v1EnvVar.js","sourceRoot":"","sources":["../../../src/gen/model/v1EnvVar.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAIH;;EAEE;AACF,MAAa,QAAQ;IA8BjB,MAAM,CAAC,mBAAmB;QACtB,OAAO,QAAQ,CAAC,gBAAgB,CAAC;IACrC,CAAC;;AArBM,sBAAa,GAAuB,SAAS,CAAC;AAE9C,yBAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,OAAO;QACf,UAAU,EAAE,OAAO;QACnB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,WAAW;QACnB,UAAU,EAAE,WAAW;QACvB,MAAM,EAAE,gBAAgB;KAC3B;CAAK,CAAC;AA5Bf,4BAiCC"}
\ No newline at end of file
diff --git a/dist/gen/model/v1EnvVarSource.d.ts b/dist/gen/model/v1EnvVarSource.d.ts
new file mode 100644
index 0000000000..0afb2950de
--- /dev/null
+++ b/dist/gen/model/v1EnvVarSource.d.ts
@@ -0,0 +1,35 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+import { V1ConfigMapKeySelector } from './v1ConfigMapKeySelector';
+import { V1ObjectFieldSelector } from './v1ObjectFieldSelector';
+import { V1ResourceFieldSelector } from './v1ResourceFieldSelector';
+import { V1SecretKeySelector } from './v1SecretKeySelector';
+/**
+* EnvVarSource represents a source for the value of an EnvVar.
+*/
+export declare class V1EnvVarSource {
+ 'configMapKeyRef'?: V1ConfigMapKeySelector;
+ 'fieldRef'?: V1ObjectFieldSelector;
+ 'resourceFieldRef'?: V1ResourceFieldSelector;
+ 'secretKeyRef'?: V1SecretKeySelector;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/v1EnvVarSource.js b/dist/gen/model/v1EnvVarSource.js
new file mode 100644
index 0000000000..8a029aef22
--- /dev/null
+++ b/dist/gen/model/v1EnvVarSource.js
@@ -0,0 +1,46 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* EnvVarSource represents a source for the value of an EnvVar.
+*/
+class V1EnvVarSource {
+ static getAttributeTypeMap() {
+ return V1EnvVarSource.attributeTypeMap;
+ }
+}
+V1EnvVarSource.discriminator = undefined;
+V1EnvVarSource.attributeTypeMap = [
+ {
+ "name": "configMapKeyRef",
+ "baseName": "configMapKeyRef",
+ "type": "V1ConfigMapKeySelector"
+ },
+ {
+ "name": "fieldRef",
+ "baseName": "fieldRef",
+ "type": "V1ObjectFieldSelector"
+ },
+ {
+ "name": "resourceFieldRef",
+ "baseName": "resourceFieldRef",
+ "type": "V1ResourceFieldSelector"
+ },
+ {
+ "name": "secretKeyRef",
+ "baseName": "secretKeyRef",
+ "type": "V1SecretKeySelector"
+ }
+];
+exports.V1EnvVarSource = V1EnvVarSource;
+//# sourceMappingURL=v1EnvVarSource.js.map
\ No newline at end of file
diff --git a/dist/gen/model/v1EnvVarSource.js.map b/dist/gen/model/v1EnvVarSource.js.map
new file mode 100644
index 0000000000..15a4f9895c
--- /dev/null
+++ b/dist/gen/model/v1EnvVarSource.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"v1EnvVarSource.js","sourceRoot":"","sources":["../../../src/gen/model/v1EnvVarSource.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAOH;;EAEE;AACF,MAAa,cAAc;IA8BvB,MAAM,CAAC,mBAAmB;QACtB,OAAO,cAAc,CAAC,gBAAgB,CAAC;IAC3C,CAAC;;AA1BM,4BAAa,GAAuB,SAAS,CAAC;AAE9C,+BAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,iBAAiB;QACzB,UAAU,EAAE,iBAAiB;QAC7B,MAAM,EAAE,wBAAwB;KACnC;IACD;QACI,MAAM,EAAE,UAAU;QAClB,UAAU,EAAE,UAAU;QACtB,MAAM,EAAE,uBAAuB;KAClC;IACD;QACI,MAAM,EAAE,kBAAkB;QAC1B,UAAU,EAAE,kBAAkB;QAC9B,MAAM,EAAE,yBAAyB;KACpC;IACD;QACI,MAAM,EAAE,cAAc;QACtB,UAAU,EAAE,cAAc;QAC1B,MAAM,EAAE,qBAAqB;KAChC;CAAK,CAAC;AA5Bf,wCAiCC"}
\ No newline at end of file
diff --git a/dist/gen/model/v1Event.d.ts b/dist/gen/model/v1Event.d.ts
new file mode 100644
index 0000000000..53ad8bbf09
--- /dev/null
+++ b/dist/gen/model/v1Event.d.ts
@@ -0,0 +1,84 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+import { V1EventSeries } from './v1EventSeries';
+import { V1EventSource } from './v1EventSource';
+import { V1ObjectMeta } from './v1ObjectMeta';
+import { V1ObjectReference } from './v1ObjectReference';
+/**
+* Event is a report of an event somewhere in the cluster.
+*/
+export declare class V1Event {
+ /**
+ * What action was taken/failed regarding to the Regarding object.
+ */
+ 'action'?: string;
+ /**
+ * APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources
+ */
+ 'apiVersion'?: string;
+ /**
+ * The number of times this event has occurred.
+ */
+ 'count'?: number;
+ /**
+ * Time when this Event was first observed.
+ */
+ 'eventTime'?: Date;
+ /**
+ * The time at which the event was first recorded. (Time of server receipt is in TypeMeta.)
+ */
+ 'firstTimestamp'?: Date;
+ 'involvedObject': V1ObjectReference;
+ /**
+ * Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
+ */
+ 'kind'?: string;
+ /**
+ * The time at which the most recent occurrence of this event was recorded.
+ */
+ 'lastTimestamp'?: Date;
+ /**
+ * A human-readable description of the status of this operation.
+ */
+ 'message'?: string;
+ 'metadata': V1ObjectMeta;
+ /**
+ * This should be a short, machine understandable string that gives the reason for the transition into the object\'s current status.
+ */
+ 'reason'?: string;
+ 'related'?: V1ObjectReference;
+ /**
+ * Name of the controller that emitted this Event, e.g. `kubernetes.io/kubelet`.
+ */
+ 'reportingComponent'?: string;
+ /**
+ * ID of the controller instance, e.g. `kubelet-xyzf`.
+ */
+ 'reportingInstance'?: string;
+ 'series'?: V1EventSeries;
+ 'source'?: V1EventSource;
+ /**
+ * Type of this event (Normal, Warning), new types could be added in the future
+ */
+ 'type'?: string;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/v1Event.js b/dist/gen/model/v1Event.js
new file mode 100644
index 0000000000..d2177561e3
--- /dev/null
+++ b/dist/gen/model/v1Event.js
@@ -0,0 +1,111 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* Event is a report of an event somewhere in the cluster.
+*/
+class V1Event {
+ static getAttributeTypeMap() {
+ return V1Event.attributeTypeMap;
+ }
+}
+V1Event.discriminator = undefined;
+V1Event.attributeTypeMap = [
+ {
+ "name": "action",
+ "baseName": "action",
+ "type": "string"
+ },
+ {
+ "name": "apiVersion",
+ "baseName": "apiVersion",
+ "type": "string"
+ },
+ {
+ "name": "count",
+ "baseName": "count",
+ "type": "number"
+ },
+ {
+ "name": "eventTime",
+ "baseName": "eventTime",
+ "type": "Date"
+ },
+ {
+ "name": "firstTimestamp",
+ "baseName": "firstTimestamp",
+ "type": "Date"
+ },
+ {
+ "name": "involvedObject",
+ "baseName": "involvedObject",
+ "type": "V1ObjectReference"
+ },
+ {
+ "name": "kind",
+ "baseName": "kind",
+ "type": "string"
+ },
+ {
+ "name": "lastTimestamp",
+ "baseName": "lastTimestamp",
+ "type": "Date"
+ },
+ {
+ "name": "message",
+ "baseName": "message",
+ "type": "string"
+ },
+ {
+ "name": "metadata",
+ "baseName": "metadata",
+ "type": "V1ObjectMeta"
+ },
+ {
+ "name": "reason",
+ "baseName": "reason",
+ "type": "string"
+ },
+ {
+ "name": "related",
+ "baseName": "related",
+ "type": "V1ObjectReference"
+ },
+ {
+ "name": "reportingComponent",
+ "baseName": "reportingComponent",
+ "type": "string"
+ },
+ {
+ "name": "reportingInstance",
+ "baseName": "reportingInstance",
+ "type": "string"
+ },
+ {
+ "name": "series",
+ "baseName": "series",
+ "type": "V1EventSeries"
+ },
+ {
+ "name": "source",
+ "baseName": "source",
+ "type": "V1EventSource"
+ },
+ {
+ "name": "type",
+ "baseName": "type",
+ "type": "string"
+ }
+];
+exports.V1Event = V1Event;
+//# sourceMappingURL=v1Event.js.map
\ No newline at end of file
diff --git a/dist/gen/model/v1Event.js.map b/dist/gen/model/v1Event.js.map
new file mode 100644
index 0000000000..a46517539d
--- /dev/null
+++ b/dist/gen/model/v1Event.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"v1Event.js","sourceRoot":"","sources":["../../../src/gen/model/v1Event.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAOH;;EAEE;AACF,MAAa,OAAO;IAgJhB,MAAM,CAAC,mBAAmB;QACtB,OAAO,OAAO,CAAC,gBAAgB,CAAC;IACpC,CAAC;;AA3FM,qBAAa,GAAuB,SAAS,CAAC;AAE9C,wBAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,QAAQ;QAChB,UAAU,EAAE,QAAQ;QACpB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,YAAY;QACpB,UAAU,EAAE,YAAY;QACxB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,OAAO;QACf,UAAU,EAAE,OAAO;QACnB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,WAAW;QACnB,UAAU,EAAE,WAAW;QACvB,MAAM,EAAE,MAAM;KACjB;IACD;QACI,MAAM,EAAE,gBAAgB;QACxB,UAAU,EAAE,gBAAgB;QAC5B,MAAM,EAAE,MAAM;KACjB;IACD;QACI,MAAM,EAAE,gBAAgB;QACxB,UAAU,EAAE,gBAAgB;QAC5B,MAAM,EAAE,mBAAmB;KAC9B;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,eAAe;QACvB,UAAU,EAAE,eAAe;QAC3B,MAAM,EAAE,MAAM;KACjB;IACD;QACI,MAAM,EAAE,SAAS;QACjB,UAAU,EAAE,SAAS;QACrB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,UAAU;QAClB,UAAU,EAAE,UAAU;QACtB,MAAM,EAAE,cAAc;KACzB;IACD;QACI,MAAM,EAAE,QAAQ;QAChB,UAAU,EAAE,QAAQ;QACpB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,SAAS;QACjB,UAAU,EAAE,SAAS;QACrB,MAAM,EAAE,mBAAmB;KAC9B;IACD;QACI,MAAM,EAAE,oBAAoB;QAC5B,UAAU,EAAE,oBAAoB;QAChC,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,mBAAmB;QAC3B,UAAU,EAAE,mBAAmB;QAC/B,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,QAAQ;QAChB,UAAU,EAAE,QAAQ;QACpB,MAAM,EAAE,eAAe;KAC1B;IACD;QACI,MAAM,EAAE,QAAQ;QAChB,UAAU,EAAE,QAAQ;QACpB,MAAM,EAAE,eAAe;KAC1B;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,QAAQ;KACnB;CAAK,CAAC;AA9If,0BAmJC"}
\ No newline at end of file
diff --git a/dist/gen/model/v1EventList.d.ts b/dist/gen/model/v1EventList.d.ts
new file mode 100644
index 0000000000..4bfbbb345a
--- /dev/null
+++ b/dist/gen/model/v1EventList.d.ts
@@ -0,0 +1,42 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+import { V1Event } from './v1Event';
+import { V1ListMeta } from './v1ListMeta';
+/**
+* EventList is a list of events.
+*/
+export declare class V1EventList {
+ /**
+ * APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources
+ */
+ 'apiVersion'?: string;
+ /**
+ * List of events
+ */
+ 'items': Array;
+ /**
+ * Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
+ */
+ 'kind'?: string;
+ 'metadata'?: V1ListMeta;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/v1EventList.js b/dist/gen/model/v1EventList.js
new file mode 100644
index 0000000000..83d8f8b1f7
--- /dev/null
+++ b/dist/gen/model/v1EventList.js
@@ -0,0 +1,46 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* EventList is a list of events.
+*/
+class V1EventList {
+ static getAttributeTypeMap() {
+ return V1EventList.attributeTypeMap;
+ }
+}
+V1EventList.discriminator = undefined;
+V1EventList.attributeTypeMap = [
+ {
+ "name": "apiVersion",
+ "baseName": "apiVersion",
+ "type": "string"
+ },
+ {
+ "name": "items",
+ "baseName": "items",
+ "type": "Array"
+ },
+ {
+ "name": "kind",
+ "baseName": "kind",
+ "type": "string"
+ },
+ {
+ "name": "metadata",
+ "baseName": "metadata",
+ "type": "V1ListMeta"
+ }
+];
+exports.V1EventList = V1EventList;
+//# sourceMappingURL=v1EventList.js.map
\ No newline at end of file
diff --git a/dist/gen/model/v1EventList.js.map b/dist/gen/model/v1EventList.js.map
new file mode 100644
index 0000000000..0ec5a4887f
--- /dev/null
+++ b/dist/gen/model/v1EventList.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"v1EventList.js","sourceRoot":"","sources":["../../../src/gen/model/v1EventList.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAKH;;EAEE;AACF,MAAa,WAAW;IAuCpB,MAAM,CAAC,mBAAmB;QACtB,OAAO,WAAW,CAAC,gBAAgB,CAAC;IACxC,CAAC;;AA1BM,yBAAa,GAAuB,SAAS,CAAC;AAE9C,4BAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,YAAY;QACpB,UAAU,EAAE,YAAY;QACxB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,OAAO;QACf,UAAU,EAAE,OAAO;QACnB,MAAM,EAAE,gBAAgB;KAC3B;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,UAAU;QAClB,UAAU,EAAE,UAAU;QACtB,MAAM,EAAE,YAAY;KACvB;CAAK,CAAC;AArCf,kCA0CC"}
\ No newline at end of file
diff --git a/dist/gen/model/v1EventSeries.d.ts b/dist/gen/model/v1EventSeries.d.ts
new file mode 100644
index 0000000000..e16089fb1e
--- /dev/null
+++ b/dist/gen/model/v1EventSeries.d.ts
@@ -0,0 +1,39 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+/**
+* EventSeries contain information on series of events, i.e. thing that was/is happening continuously for some time.
+*/
+export declare class V1EventSeries {
+ /**
+ * Number of occurrences in this series up to the last heartbeat time
+ */
+ 'count'?: number;
+ /**
+ * Time of the last occurrence observed
+ */
+ 'lastObservedTime'?: Date;
+ /**
+ * State of this Series: Ongoing or Finished Deprecated. Planned removal for 1.18
+ */
+ 'state'?: string;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/v1EventSeries.js b/dist/gen/model/v1EventSeries.js
new file mode 100644
index 0000000000..1dd1e9ccd4
--- /dev/null
+++ b/dist/gen/model/v1EventSeries.js
@@ -0,0 +1,41 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* EventSeries contain information on series of events, i.e. thing that was/is happening continuously for some time.
+*/
+class V1EventSeries {
+ static getAttributeTypeMap() {
+ return V1EventSeries.attributeTypeMap;
+ }
+}
+V1EventSeries.discriminator = undefined;
+V1EventSeries.attributeTypeMap = [
+ {
+ "name": "count",
+ "baseName": "count",
+ "type": "number"
+ },
+ {
+ "name": "lastObservedTime",
+ "baseName": "lastObservedTime",
+ "type": "Date"
+ },
+ {
+ "name": "state",
+ "baseName": "state",
+ "type": "string"
+ }
+];
+exports.V1EventSeries = V1EventSeries;
+//# sourceMappingURL=v1EventSeries.js.map
\ No newline at end of file
diff --git a/dist/gen/model/v1EventSeries.js.map b/dist/gen/model/v1EventSeries.js.map
new file mode 100644
index 0000000000..ed4e7672a2
--- /dev/null
+++ b/dist/gen/model/v1EventSeries.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"v1EventSeries.js","sourceRoot":"","sources":["../../../src/gen/model/v1EventSeries.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAGH;;EAEE;AACF,MAAa,aAAa;IAiCtB,MAAM,CAAC,mBAAmB;QACtB,OAAO,aAAa,CAAC,gBAAgB,CAAC;IAC1C,CAAC;;AArBM,2BAAa,GAAuB,SAAS,CAAC;AAE9C,8BAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,OAAO;QACf,UAAU,EAAE,OAAO;QACnB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,kBAAkB;QAC1B,UAAU,EAAE,kBAAkB;QAC9B,MAAM,EAAE,MAAM;KACjB;IACD;QACI,MAAM,EAAE,OAAO;QACf,UAAU,EAAE,OAAO;QACnB,MAAM,EAAE,QAAQ;KACnB;CAAK,CAAC;AA/Bf,sCAoCC"}
\ No newline at end of file
diff --git a/dist/gen/model/v1EventSource.d.ts b/dist/gen/model/v1EventSource.d.ts
new file mode 100644
index 0000000000..eea3d99126
--- /dev/null
+++ b/dist/gen/model/v1EventSource.d.ts
@@ -0,0 +1,35 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+/**
+* EventSource contains information for an event.
+*/
+export declare class V1EventSource {
+ /**
+ * Component from which the event is generated.
+ */
+ 'component'?: string;
+ /**
+ * Node name on which the event is generated.
+ */
+ 'host'?: string;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/v1EventSource.js b/dist/gen/model/v1EventSource.js
new file mode 100644
index 0000000000..0d54f73617
--- /dev/null
+++ b/dist/gen/model/v1EventSource.js
@@ -0,0 +1,36 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* EventSource contains information for an event.
+*/
+class V1EventSource {
+ static getAttributeTypeMap() {
+ return V1EventSource.attributeTypeMap;
+ }
+}
+V1EventSource.discriminator = undefined;
+V1EventSource.attributeTypeMap = [
+ {
+ "name": "component",
+ "baseName": "component",
+ "type": "string"
+ },
+ {
+ "name": "host",
+ "baseName": "host",
+ "type": "string"
+ }
+];
+exports.V1EventSource = V1EventSource;
+//# sourceMappingURL=v1EventSource.js.map
\ No newline at end of file
diff --git a/dist/gen/model/v1EventSource.js.map b/dist/gen/model/v1EventSource.js.map
new file mode 100644
index 0000000000..84056c014e
--- /dev/null
+++ b/dist/gen/model/v1EventSource.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"v1EventSource.js","sourceRoot":"","sources":["../../../src/gen/model/v1EventSource.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAGH;;EAEE;AACF,MAAa,aAAa;IAwBtB,MAAM,CAAC,mBAAmB;QACtB,OAAO,aAAa,CAAC,gBAAgB,CAAC;IAC1C,CAAC;;AAhBM,2BAAa,GAAuB,SAAS,CAAC;AAE9C,8BAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,WAAW;QACnB,UAAU,EAAE,WAAW;QACvB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,QAAQ;KACnB;CAAK,CAAC;AAtBf,sCA2BC"}
\ No newline at end of file
diff --git a/dist/gen/model/v1ExecAction.d.ts b/dist/gen/model/v1ExecAction.d.ts
new file mode 100644
index 0000000000..0953938087
--- /dev/null
+++ b/dist/gen/model/v1ExecAction.d.ts
@@ -0,0 +1,31 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+/**
+* ExecAction describes a \"run in container\" action.
+*/
+export declare class V1ExecAction {
+ /**
+ * Command is the command line to execute inside the container, the working directory for the command is root (\'/\') in the container\'s filesystem. The command is simply exec\'d, it is not run inside a shell, so traditional shell instructions (\'|\', etc) won\'t work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.
+ */
+ 'command'?: Array;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/v1ExecAction.js b/dist/gen/model/v1ExecAction.js
new file mode 100644
index 0000000000..79797f683b
--- /dev/null
+++ b/dist/gen/model/v1ExecAction.js
@@ -0,0 +1,31 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* ExecAction describes a \"run in container\" action.
+*/
+class V1ExecAction {
+ static getAttributeTypeMap() {
+ return V1ExecAction.attributeTypeMap;
+ }
+}
+V1ExecAction.discriminator = undefined;
+V1ExecAction.attributeTypeMap = [
+ {
+ "name": "command",
+ "baseName": "command",
+ "type": "Array"
+ }
+];
+exports.V1ExecAction = V1ExecAction;
+//# sourceMappingURL=v1ExecAction.js.map
\ No newline at end of file
diff --git a/dist/gen/model/v1ExecAction.js.map b/dist/gen/model/v1ExecAction.js.map
new file mode 100644
index 0000000000..58742bed69
--- /dev/null
+++ b/dist/gen/model/v1ExecAction.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"v1ExecAction.js","sourceRoot":"","sources":["../../../src/gen/model/v1ExecAction.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAGH;;EAEE;AACF,MAAa,YAAY;IAerB,MAAM,CAAC,mBAAmB;QACtB,OAAO,YAAY,CAAC,gBAAgB,CAAC;IACzC,CAAC;;AAXM,0BAAa,GAAuB,SAAS,CAAC;AAE9C,6BAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,SAAS;QACjB,UAAU,EAAE,SAAS;QACrB,MAAM,EAAE,eAAe;KAC1B;CAAK,CAAC;AAbf,oCAkBC"}
\ No newline at end of file
diff --git a/dist/gen/model/v1FCVolumeSource.d.ts b/dist/gen/model/v1FCVolumeSource.d.ts
new file mode 100644
index 0000000000..85e7faa94f
--- /dev/null
+++ b/dist/gen/model/v1FCVolumeSource.d.ts
@@ -0,0 +1,47 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+/**
+* Represents a Fibre Channel volume. Fibre Channel volumes can only be mounted as read/write once. Fibre Channel volumes support ownership management and SELinux relabeling.
+*/
+export declare class V1FCVolumeSource {
+ /**
+ * Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.
+ */
+ 'fsType'?: string;
+ /**
+ * Optional: FC target lun number
+ */
+ 'lun'?: number;
+ /**
+ * Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.
+ */
+ 'readOnly'?: boolean;
+ /**
+ * Optional: FC target worldwide names (WWNs)
+ */
+ 'targetWWNs'?: Array;
+ /**
+ * Optional: FC volume world wide identifiers (wwids) Either wwids or combination of targetWWNs and lun must be set, but not both simultaneously.
+ */
+ 'wwids'?: Array;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/v1FCVolumeSource.js b/dist/gen/model/v1FCVolumeSource.js
new file mode 100644
index 0000000000..f74f2ac0df
--- /dev/null
+++ b/dist/gen/model/v1FCVolumeSource.js
@@ -0,0 +1,51 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* Represents a Fibre Channel volume. Fibre Channel volumes can only be mounted as read/write once. Fibre Channel volumes support ownership management and SELinux relabeling.
+*/
+class V1FCVolumeSource {
+ static getAttributeTypeMap() {
+ return V1FCVolumeSource.attributeTypeMap;
+ }
+}
+V1FCVolumeSource.discriminator = undefined;
+V1FCVolumeSource.attributeTypeMap = [
+ {
+ "name": "fsType",
+ "baseName": "fsType",
+ "type": "string"
+ },
+ {
+ "name": "lun",
+ "baseName": "lun",
+ "type": "number"
+ },
+ {
+ "name": "readOnly",
+ "baseName": "readOnly",
+ "type": "boolean"
+ },
+ {
+ "name": "targetWWNs",
+ "baseName": "targetWWNs",
+ "type": "Array"
+ },
+ {
+ "name": "wwids",
+ "baseName": "wwids",
+ "type": "Array"
+ }
+];
+exports.V1FCVolumeSource = V1FCVolumeSource;
+//# sourceMappingURL=v1FCVolumeSource.js.map
\ No newline at end of file
diff --git a/dist/gen/model/v1FCVolumeSource.js.map b/dist/gen/model/v1FCVolumeSource.js.map
new file mode 100644
index 0000000000..47b1ce9721
--- /dev/null
+++ b/dist/gen/model/v1FCVolumeSource.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"v1FCVolumeSource.js","sourceRoot":"","sources":["../../../src/gen/model/v1FCVolumeSource.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAGH;;EAEE;AACF,MAAa,gBAAgB;IAmDzB,MAAM,CAAC,mBAAmB;QACtB,OAAO,gBAAgB,CAAC,gBAAgB,CAAC;IAC7C,CAAC;;AA/BM,8BAAa,GAAuB,SAAS,CAAC;AAE9C,iCAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,QAAQ;QAChB,UAAU,EAAE,QAAQ;QACpB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,KAAK;QACb,UAAU,EAAE,KAAK;QACjB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,UAAU;QAClB,UAAU,EAAE,UAAU;QACtB,MAAM,EAAE,SAAS;KACpB;IACD;QACI,MAAM,EAAE,YAAY;QACpB,UAAU,EAAE,YAAY;QACxB,MAAM,EAAE,eAAe;KAC1B;IACD;QACI,MAAM,EAAE,OAAO;QACf,UAAU,EAAE,OAAO;QACnB,MAAM,EAAE,eAAe;KAC1B;CAAK,CAAC;AAjDf,4CAsDC"}
\ No newline at end of file
diff --git a/dist/gen/model/v1FlexPersistentVolumeSource.d.ts b/dist/gen/model/v1FlexPersistentVolumeSource.d.ts
new file mode 100644
index 0000000000..ecab42dd85
--- /dev/null
+++ b/dist/gen/model/v1FlexPersistentVolumeSource.d.ts
@@ -0,0 +1,47 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+import { V1SecretReference } from './v1SecretReference';
+/**
+* FlexPersistentVolumeSource represents a generic persistent volume resource that is provisioned/attached using an exec based plugin.
+*/
+export declare class V1FlexPersistentVolumeSource {
+ /**
+ * Driver is the name of the driver to use for this volume.
+ */
+ 'driver': string;
+ /**
+ * Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". The default filesystem depends on FlexVolume script.
+ */
+ 'fsType'?: string;
+ /**
+ * Optional: Extra command options if any.
+ */
+ 'options'?: {
+ [key: string]: string;
+ };
+ /**
+ * Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.
+ */
+ 'readOnly'?: boolean;
+ 'secretRef'?: V1SecretReference;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/v1FlexPersistentVolumeSource.js b/dist/gen/model/v1FlexPersistentVolumeSource.js
new file mode 100644
index 0000000000..ff2f39acbb
--- /dev/null
+++ b/dist/gen/model/v1FlexPersistentVolumeSource.js
@@ -0,0 +1,51 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* FlexPersistentVolumeSource represents a generic persistent volume resource that is provisioned/attached using an exec based plugin.
+*/
+class V1FlexPersistentVolumeSource {
+ static getAttributeTypeMap() {
+ return V1FlexPersistentVolumeSource.attributeTypeMap;
+ }
+}
+V1FlexPersistentVolumeSource.discriminator = undefined;
+V1FlexPersistentVolumeSource.attributeTypeMap = [
+ {
+ "name": "driver",
+ "baseName": "driver",
+ "type": "string"
+ },
+ {
+ "name": "fsType",
+ "baseName": "fsType",
+ "type": "string"
+ },
+ {
+ "name": "options",
+ "baseName": "options",
+ "type": "{ [key: string]: string; }"
+ },
+ {
+ "name": "readOnly",
+ "baseName": "readOnly",
+ "type": "boolean"
+ },
+ {
+ "name": "secretRef",
+ "baseName": "secretRef",
+ "type": "V1SecretReference"
+ }
+];
+exports.V1FlexPersistentVolumeSource = V1FlexPersistentVolumeSource;
+//# sourceMappingURL=v1FlexPersistentVolumeSource.js.map
\ No newline at end of file
diff --git a/dist/gen/model/v1FlexPersistentVolumeSource.js.map b/dist/gen/model/v1FlexPersistentVolumeSource.js.map
new file mode 100644
index 0000000000..4e3e5e5c81
--- /dev/null
+++ b/dist/gen/model/v1FlexPersistentVolumeSource.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"v1FlexPersistentVolumeSource.js","sourceRoot":"","sources":["../../../src/gen/model/v1FlexPersistentVolumeSource.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAIH;;EAEE;AACF,MAAa,4BAA4B;IAgDrC,MAAM,CAAC,mBAAmB;QACtB,OAAO,4BAA4B,CAAC,gBAAgB,CAAC;IACzD,CAAC;;AA/BM,0CAAa,GAAuB,SAAS,CAAC;AAE9C,6CAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,QAAQ;QAChB,UAAU,EAAE,QAAQ;QACpB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,QAAQ;QAChB,UAAU,EAAE,QAAQ;QACpB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,SAAS;QACjB,UAAU,EAAE,SAAS;QACrB,MAAM,EAAE,4BAA4B;KACvC;IACD;QACI,MAAM,EAAE,UAAU;QAClB,UAAU,EAAE,UAAU;QACtB,MAAM,EAAE,SAAS;KACpB;IACD;QACI,MAAM,EAAE,WAAW;QACnB,UAAU,EAAE,WAAW;QACvB,MAAM,EAAE,mBAAmB;KAC9B;CAAK,CAAC;AA9Cf,oEAmDC"}
\ No newline at end of file
diff --git a/dist/gen/model/v1FlexVolumeSource.d.ts b/dist/gen/model/v1FlexVolumeSource.d.ts
new file mode 100644
index 0000000000..130f7f013c
--- /dev/null
+++ b/dist/gen/model/v1FlexVolumeSource.d.ts
@@ -0,0 +1,47 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+import { V1LocalObjectReference } from './v1LocalObjectReference';
+/**
+* FlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin.
+*/
+export declare class V1FlexVolumeSource {
+ /**
+ * Driver is the name of the driver to use for this volume.
+ */
+ 'driver': string;
+ /**
+ * Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". The default filesystem depends on FlexVolume script.
+ */
+ 'fsType'?: string;
+ /**
+ * Optional: Extra command options if any.
+ */
+ 'options'?: {
+ [key: string]: string;
+ };
+ /**
+ * Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.
+ */
+ 'readOnly'?: boolean;
+ 'secretRef'?: V1LocalObjectReference;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/v1FlexVolumeSource.js b/dist/gen/model/v1FlexVolumeSource.js
new file mode 100644
index 0000000000..11762f5672
--- /dev/null
+++ b/dist/gen/model/v1FlexVolumeSource.js
@@ -0,0 +1,51 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* FlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin.
+*/
+class V1FlexVolumeSource {
+ static getAttributeTypeMap() {
+ return V1FlexVolumeSource.attributeTypeMap;
+ }
+}
+V1FlexVolumeSource.discriminator = undefined;
+V1FlexVolumeSource.attributeTypeMap = [
+ {
+ "name": "driver",
+ "baseName": "driver",
+ "type": "string"
+ },
+ {
+ "name": "fsType",
+ "baseName": "fsType",
+ "type": "string"
+ },
+ {
+ "name": "options",
+ "baseName": "options",
+ "type": "{ [key: string]: string; }"
+ },
+ {
+ "name": "readOnly",
+ "baseName": "readOnly",
+ "type": "boolean"
+ },
+ {
+ "name": "secretRef",
+ "baseName": "secretRef",
+ "type": "V1LocalObjectReference"
+ }
+];
+exports.V1FlexVolumeSource = V1FlexVolumeSource;
+//# sourceMappingURL=v1FlexVolumeSource.js.map
\ No newline at end of file
diff --git a/dist/gen/model/v1FlexVolumeSource.js.map b/dist/gen/model/v1FlexVolumeSource.js.map
new file mode 100644
index 0000000000..39901210a2
--- /dev/null
+++ b/dist/gen/model/v1FlexVolumeSource.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"v1FlexVolumeSource.js","sourceRoot":"","sources":["../../../src/gen/model/v1FlexVolumeSource.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAIH;;EAEE;AACF,MAAa,kBAAkB;IAgD3B,MAAM,CAAC,mBAAmB;QACtB,OAAO,kBAAkB,CAAC,gBAAgB,CAAC;IAC/C,CAAC;;AA/BM,gCAAa,GAAuB,SAAS,CAAC;AAE9C,mCAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,QAAQ;QAChB,UAAU,EAAE,QAAQ;QACpB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,QAAQ;QAChB,UAAU,EAAE,QAAQ;QACpB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,SAAS;QACjB,UAAU,EAAE,SAAS;QACrB,MAAM,EAAE,4BAA4B;KACvC;IACD;QACI,MAAM,EAAE,UAAU;QAClB,UAAU,EAAE,UAAU;QACtB,MAAM,EAAE,SAAS;KACpB;IACD;QACI,MAAM,EAAE,WAAW;QACnB,UAAU,EAAE,WAAW;QACvB,MAAM,EAAE,wBAAwB;KACnC;CAAK,CAAC;AA9Cf,gDAmDC"}
\ No newline at end of file
diff --git a/dist/gen/model/v1FlockerVolumeSource.d.ts b/dist/gen/model/v1FlockerVolumeSource.d.ts
new file mode 100644
index 0000000000..d703a3d879
--- /dev/null
+++ b/dist/gen/model/v1FlockerVolumeSource.d.ts
@@ -0,0 +1,35 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+/**
+* Represents a Flocker volume mounted by the Flocker agent. One and only one of datasetName and datasetUUID should be set. Flocker volumes do not support ownership management or SELinux relabeling.
+*/
+export declare class V1FlockerVolumeSource {
+ /**
+ * Name of the dataset stored as metadata -> name on the dataset for Flocker should be considered as deprecated
+ */
+ 'datasetName'?: string;
+ /**
+ * UUID of the dataset. This is unique identifier of a Flocker dataset
+ */
+ 'datasetUUID'?: string;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/v1FlockerVolumeSource.js b/dist/gen/model/v1FlockerVolumeSource.js
new file mode 100644
index 0000000000..af89fbfd41
--- /dev/null
+++ b/dist/gen/model/v1FlockerVolumeSource.js
@@ -0,0 +1,36 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* Represents a Flocker volume mounted by the Flocker agent. One and only one of datasetName and datasetUUID should be set. Flocker volumes do not support ownership management or SELinux relabeling.
+*/
+class V1FlockerVolumeSource {
+ static getAttributeTypeMap() {
+ return V1FlockerVolumeSource.attributeTypeMap;
+ }
+}
+V1FlockerVolumeSource.discriminator = undefined;
+V1FlockerVolumeSource.attributeTypeMap = [
+ {
+ "name": "datasetName",
+ "baseName": "datasetName",
+ "type": "string"
+ },
+ {
+ "name": "datasetUUID",
+ "baseName": "datasetUUID",
+ "type": "string"
+ }
+];
+exports.V1FlockerVolumeSource = V1FlockerVolumeSource;
+//# sourceMappingURL=v1FlockerVolumeSource.js.map
\ No newline at end of file
diff --git a/dist/gen/model/v1FlockerVolumeSource.js.map b/dist/gen/model/v1FlockerVolumeSource.js.map
new file mode 100644
index 0000000000..b1c9c0502f
--- /dev/null
+++ b/dist/gen/model/v1FlockerVolumeSource.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"v1FlockerVolumeSource.js","sourceRoot":"","sources":["../../../src/gen/model/v1FlockerVolumeSource.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAGH;;EAEE;AACF,MAAa,qBAAqB;IAwB9B,MAAM,CAAC,mBAAmB;QACtB,OAAO,qBAAqB,CAAC,gBAAgB,CAAC;IAClD,CAAC;;AAhBM,mCAAa,GAAuB,SAAS,CAAC;AAE9C,sCAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,aAAa;QACrB,UAAU,EAAE,aAAa;QACzB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,aAAa;QACrB,UAAU,EAAE,aAAa;QACzB,MAAM,EAAE,QAAQ;KACnB;CAAK,CAAC;AAtBf,sDA2BC"}
\ No newline at end of file
diff --git a/dist/gen/model/v1GCEPersistentDiskVolumeSource.d.ts b/dist/gen/model/v1GCEPersistentDiskVolumeSource.d.ts
new file mode 100644
index 0000000000..7c207bd3ef
--- /dev/null
+++ b/dist/gen/model/v1GCEPersistentDiskVolumeSource.d.ts
@@ -0,0 +1,43 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+/**
+* Represents a Persistent Disk resource in Google Compute Engine. A GCE PD must exist before mounting to a container. The disk must also be in the same GCE project and zone as the kubelet. A GCE PD can only be mounted as read/write once or read-only many times. GCE PDs support ownership management and SELinux relabeling.
+*/
+export declare class V1GCEPersistentDiskVolumeSource {
+ /**
+ * Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk
+ */
+ 'fsType'?: string;
+ /**
+ * The partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as \"1\". Similarly, the volume partition for /dev/sda is \"0\" (or you can leave the property empty). More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk
+ */
+ 'partition'?: number;
+ /**
+ * Unique name of the PD resource in GCE. Used to identify the disk in GCE. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk
+ */
+ 'pdName': string;
+ /**
+ * ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk
+ */
+ 'readOnly'?: boolean;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/v1GCEPersistentDiskVolumeSource.js b/dist/gen/model/v1GCEPersistentDiskVolumeSource.js
new file mode 100644
index 0000000000..840b1836b5
--- /dev/null
+++ b/dist/gen/model/v1GCEPersistentDiskVolumeSource.js
@@ -0,0 +1,46 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* Represents a Persistent Disk resource in Google Compute Engine. A GCE PD must exist before mounting to a container. The disk must also be in the same GCE project and zone as the kubelet. A GCE PD can only be mounted as read/write once or read-only many times. GCE PDs support ownership management and SELinux relabeling.
+*/
+class V1GCEPersistentDiskVolumeSource {
+ static getAttributeTypeMap() {
+ return V1GCEPersistentDiskVolumeSource.attributeTypeMap;
+ }
+}
+V1GCEPersistentDiskVolumeSource.discriminator = undefined;
+V1GCEPersistentDiskVolumeSource.attributeTypeMap = [
+ {
+ "name": "fsType",
+ "baseName": "fsType",
+ "type": "string"
+ },
+ {
+ "name": "partition",
+ "baseName": "partition",
+ "type": "number"
+ },
+ {
+ "name": "pdName",
+ "baseName": "pdName",
+ "type": "string"
+ },
+ {
+ "name": "readOnly",
+ "baseName": "readOnly",
+ "type": "boolean"
+ }
+];
+exports.V1GCEPersistentDiskVolumeSource = V1GCEPersistentDiskVolumeSource;
+//# sourceMappingURL=v1GCEPersistentDiskVolumeSource.js.map
\ No newline at end of file
diff --git a/dist/gen/model/v1GCEPersistentDiskVolumeSource.js.map b/dist/gen/model/v1GCEPersistentDiskVolumeSource.js.map
new file mode 100644
index 0000000000..572e8d4b85
--- /dev/null
+++ b/dist/gen/model/v1GCEPersistentDiskVolumeSource.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"v1GCEPersistentDiskVolumeSource.js","sourceRoot":"","sources":["../../../src/gen/model/v1GCEPersistentDiskVolumeSource.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAGH;;EAEE;AACF,MAAa,+BAA+B;IA0CxC,MAAM,CAAC,mBAAmB;QACtB,OAAO,+BAA+B,CAAC,gBAAgB,CAAC;IAC5D,CAAC;;AA1BM,6CAAa,GAAuB,SAAS,CAAC;AAE9C,gDAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,QAAQ;QAChB,UAAU,EAAE,QAAQ;QACpB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,WAAW;QACnB,UAAU,EAAE,WAAW;QACvB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,QAAQ;QAChB,UAAU,EAAE,QAAQ;QACpB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,UAAU;QAClB,UAAU,EAAE,UAAU;QACtB,MAAM,EAAE,SAAS;KACpB;CAAK,CAAC;AAxCf,0EA6CC"}
\ No newline at end of file
diff --git a/dist/gen/model/v1GitRepoVolumeSource.d.ts b/dist/gen/model/v1GitRepoVolumeSource.d.ts
new file mode 100644
index 0000000000..83e04bc58d
--- /dev/null
+++ b/dist/gen/model/v1GitRepoVolumeSource.d.ts
@@ -0,0 +1,39 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+/**
+* Represents a volume that is populated with the contents of a git repository. Git repo volumes do not support ownership management. Git repo volumes support SELinux relabeling. DEPRECATED: GitRepo is deprecated. To provision a container with a git repo, mount an EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir into the Pod\'s container.
+*/
+export declare class V1GitRepoVolumeSource {
+ /**
+ * Target directory name. Must not contain or start with \'..\'. If \'.\' is supplied, the volume directory will be the git repository. Otherwise, if specified, the volume will contain the git repository in the subdirectory with the given name.
+ */
+ 'directory'?: string;
+ /**
+ * Repository URL
+ */
+ 'repository': string;
+ /**
+ * Commit hash for the specified revision.
+ */
+ 'revision'?: string;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/v1GitRepoVolumeSource.js b/dist/gen/model/v1GitRepoVolumeSource.js
new file mode 100644
index 0000000000..f49bcf1475
--- /dev/null
+++ b/dist/gen/model/v1GitRepoVolumeSource.js
@@ -0,0 +1,41 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* Represents a volume that is populated with the contents of a git repository. Git repo volumes do not support ownership management. Git repo volumes support SELinux relabeling. DEPRECATED: GitRepo is deprecated. To provision a container with a git repo, mount an EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir into the Pod\'s container.
+*/
+class V1GitRepoVolumeSource {
+ static getAttributeTypeMap() {
+ return V1GitRepoVolumeSource.attributeTypeMap;
+ }
+}
+V1GitRepoVolumeSource.discriminator = undefined;
+V1GitRepoVolumeSource.attributeTypeMap = [
+ {
+ "name": "directory",
+ "baseName": "directory",
+ "type": "string"
+ },
+ {
+ "name": "repository",
+ "baseName": "repository",
+ "type": "string"
+ },
+ {
+ "name": "revision",
+ "baseName": "revision",
+ "type": "string"
+ }
+];
+exports.V1GitRepoVolumeSource = V1GitRepoVolumeSource;
+//# sourceMappingURL=v1GitRepoVolumeSource.js.map
\ No newline at end of file
diff --git a/dist/gen/model/v1GitRepoVolumeSource.js.map b/dist/gen/model/v1GitRepoVolumeSource.js.map
new file mode 100644
index 0000000000..ba2aa8e782
--- /dev/null
+++ b/dist/gen/model/v1GitRepoVolumeSource.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"v1GitRepoVolumeSource.js","sourceRoot":"","sources":["../../../src/gen/model/v1GitRepoVolumeSource.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAGH;;EAEE;AACF,MAAa,qBAAqB;IAiC9B,MAAM,CAAC,mBAAmB;QACtB,OAAO,qBAAqB,CAAC,gBAAgB,CAAC;IAClD,CAAC;;AArBM,mCAAa,GAAuB,SAAS,CAAC;AAE9C,sCAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,WAAW;QACnB,UAAU,EAAE,WAAW;QACvB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,YAAY;QACpB,UAAU,EAAE,YAAY;QACxB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,UAAU;QAClB,UAAU,EAAE,UAAU;QACtB,MAAM,EAAE,QAAQ;KACnB;CAAK,CAAC;AA/Bf,sDAoCC"}
\ No newline at end of file
diff --git a/dist/gen/model/v1GlusterfsPersistentVolumeSource.d.ts b/dist/gen/model/v1GlusterfsPersistentVolumeSource.d.ts
new file mode 100644
index 0000000000..aaeb24d276
--- /dev/null
+++ b/dist/gen/model/v1GlusterfsPersistentVolumeSource.d.ts
@@ -0,0 +1,43 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+/**
+* Represents a Glusterfs mount that lasts the lifetime of a pod. Glusterfs volumes do not support ownership management or SELinux relabeling.
+*/
+export declare class V1GlusterfsPersistentVolumeSource {
+ /**
+ * EndpointsName is the endpoint name that details Glusterfs topology. More info: https://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md#create-a-pod
+ */
+ 'endpoints': string;
+ /**
+ * EndpointsNamespace is the namespace that contains Glusterfs endpoint. If this field is empty, the EndpointNamespace defaults to the same namespace as the bound PVC. More info: https://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md#create-a-pod
+ */
+ 'endpointsNamespace'?: string;
+ /**
+ * Path is the Glusterfs volume path. More info: https://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md#create-a-pod
+ */
+ 'path': string;
+ /**
+ * ReadOnly here will force the Glusterfs volume to be mounted with read-only permissions. Defaults to false. More info: https://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md#create-a-pod
+ */
+ 'readOnly'?: boolean;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/v1GlusterfsPersistentVolumeSource.js b/dist/gen/model/v1GlusterfsPersistentVolumeSource.js
new file mode 100644
index 0000000000..46f19c1dd0
--- /dev/null
+++ b/dist/gen/model/v1GlusterfsPersistentVolumeSource.js
@@ -0,0 +1,46 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* Represents a Glusterfs mount that lasts the lifetime of a pod. Glusterfs volumes do not support ownership management or SELinux relabeling.
+*/
+class V1GlusterfsPersistentVolumeSource {
+ static getAttributeTypeMap() {
+ return V1GlusterfsPersistentVolumeSource.attributeTypeMap;
+ }
+}
+V1GlusterfsPersistentVolumeSource.discriminator = undefined;
+V1GlusterfsPersistentVolumeSource.attributeTypeMap = [
+ {
+ "name": "endpoints",
+ "baseName": "endpoints",
+ "type": "string"
+ },
+ {
+ "name": "endpointsNamespace",
+ "baseName": "endpointsNamespace",
+ "type": "string"
+ },
+ {
+ "name": "path",
+ "baseName": "path",
+ "type": "string"
+ },
+ {
+ "name": "readOnly",
+ "baseName": "readOnly",
+ "type": "boolean"
+ }
+];
+exports.V1GlusterfsPersistentVolumeSource = V1GlusterfsPersistentVolumeSource;
+//# sourceMappingURL=v1GlusterfsPersistentVolumeSource.js.map
\ No newline at end of file
diff --git a/dist/gen/model/v1GlusterfsPersistentVolumeSource.js.map b/dist/gen/model/v1GlusterfsPersistentVolumeSource.js.map
new file mode 100644
index 0000000000..dde2a97a35
--- /dev/null
+++ b/dist/gen/model/v1GlusterfsPersistentVolumeSource.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"v1GlusterfsPersistentVolumeSource.js","sourceRoot":"","sources":["../../../src/gen/model/v1GlusterfsPersistentVolumeSource.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAGH;;EAEE;AACF,MAAa,iCAAiC;IA0C1C,MAAM,CAAC,mBAAmB;QACtB,OAAO,iCAAiC,CAAC,gBAAgB,CAAC;IAC9D,CAAC;;AA1BM,+CAAa,GAAuB,SAAS,CAAC;AAE9C,kDAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,WAAW;QACnB,UAAU,EAAE,WAAW;QACvB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,oBAAoB;QAC5B,UAAU,EAAE,oBAAoB;QAChC,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,UAAU;QAClB,UAAU,EAAE,UAAU;QACtB,MAAM,EAAE,SAAS;KACpB;CAAK,CAAC;AAxCf,8EA6CC"}
\ No newline at end of file
diff --git a/dist/gen/model/v1GlusterfsVolumeSource.d.ts b/dist/gen/model/v1GlusterfsVolumeSource.d.ts
new file mode 100644
index 0000000000..df23538c7e
--- /dev/null
+++ b/dist/gen/model/v1GlusterfsVolumeSource.d.ts
@@ -0,0 +1,39 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+/**
+* Represents a Glusterfs mount that lasts the lifetime of a pod. Glusterfs volumes do not support ownership management or SELinux relabeling.
+*/
+export declare class V1GlusterfsVolumeSource {
+ /**
+ * EndpointsName is the endpoint name that details Glusterfs topology. More info: https://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md#create-a-pod
+ */
+ 'endpoints': string;
+ /**
+ * Path is the Glusterfs volume path. More info: https://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md#create-a-pod
+ */
+ 'path': string;
+ /**
+ * ReadOnly here will force the Glusterfs volume to be mounted with read-only permissions. Defaults to false. More info: https://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md#create-a-pod
+ */
+ 'readOnly'?: boolean;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/v1GlusterfsVolumeSource.js b/dist/gen/model/v1GlusterfsVolumeSource.js
new file mode 100644
index 0000000000..ae6b5bb8fd
--- /dev/null
+++ b/dist/gen/model/v1GlusterfsVolumeSource.js
@@ -0,0 +1,41 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* Represents a Glusterfs mount that lasts the lifetime of a pod. Glusterfs volumes do not support ownership management or SELinux relabeling.
+*/
+class V1GlusterfsVolumeSource {
+ static getAttributeTypeMap() {
+ return V1GlusterfsVolumeSource.attributeTypeMap;
+ }
+}
+V1GlusterfsVolumeSource.discriminator = undefined;
+V1GlusterfsVolumeSource.attributeTypeMap = [
+ {
+ "name": "endpoints",
+ "baseName": "endpoints",
+ "type": "string"
+ },
+ {
+ "name": "path",
+ "baseName": "path",
+ "type": "string"
+ },
+ {
+ "name": "readOnly",
+ "baseName": "readOnly",
+ "type": "boolean"
+ }
+];
+exports.V1GlusterfsVolumeSource = V1GlusterfsVolumeSource;
+//# sourceMappingURL=v1GlusterfsVolumeSource.js.map
\ No newline at end of file
diff --git a/dist/gen/model/v1GlusterfsVolumeSource.js.map b/dist/gen/model/v1GlusterfsVolumeSource.js.map
new file mode 100644
index 0000000000..8db9b1212d
--- /dev/null
+++ b/dist/gen/model/v1GlusterfsVolumeSource.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"v1GlusterfsVolumeSource.js","sourceRoot":"","sources":["../../../src/gen/model/v1GlusterfsVolumeSource.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAGH;;EAEE;AACF,MAAa,uBAAuB;IAiChC,MAAM,CAAC,mBAAmB;QACtB,OAAO,uBAAuB,CAAC,gBAAgB,CAAC;IACpD,CAAC;;AArBM,qCAAa,GAAuB,SAAS,CAAC;AAE9C,wCAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,WAAW;QACnB,UAAU,EAAE,WAAW;QACvB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,UAAU;QAClB,UAAU,EAAE,UAAU;QACtB,MAAM,EAAE,SAAS;KACpB;CAAK,CAAC;AA/Bf,0DAoCC"}
\ No newline at end of file
diff --git a/dist/gen/model/v1GroupVersionForDiscovery.d.ts b/dist/gen/model/v1GroupVersionForDiscovery.d.ts
new file mode 100644
index 0000000000..a34cd80cce
--- /dev/null
+++ b/dist/gen/model/v1GroupVersionForDiscovery.d.ts
@@ -0,0 +1,35 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+/**
+* GroupVersion contains the \"group/version\" and \"version\" string of a version. It is made a struct to keep extensibility.
+*/
+export declare class V1GroupVersionForDiscovery {
+ /**
+ * groupVersion specifies the API group and version in the form \"group/version\"
+ */
+ 'groupVersion': string;
+ /**
+ * version specifies the version in the form of \"version\". This is to save the clients the trouble of splitting the GroupVersion.
+ */
+ 'version': string;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/v1GroupVersionForDiscovery.js b/dist/gen/model/v1GroupVersionForDiscovery.js
new file mode 100644
index 0000000000..fe0948f31a
--- /dev/null
+++ b/dist/gen/model/v1GroupVersionForDiscovery.js
@@ -0,0 +1,36 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* GroupVersion contains the \"group/version\" and \"version\" string of a version. It is made a struct to keep extensibility.
+*/
+class V1GroupVersionForDiscovery {
+ static getAttributeTypeMap() {
+ return V1GroupVersionForDiscovery.attributeTypeMap;
+ }
+}
+V1GroupVersionForDiscovery.discriminator = undefined;
+V1GroupVersionForDiscovery.attributeTypeMap = [
+ {
+ "name": "groupVersion",
+ "baseName": "groupVersion",
+ "type": "string"
+ },
+ {
+ "name": "version",
+ "baseName": "version",
+ "type": "string"
+ }
+];
+exports.V1GroupVersionForDiscovery = V1GroupVersionForDiscovery;
+//# sourceMappingURL=v1GroupVersionForDiscovery.js.map
\ No newline at end of file
diff --git a/dist/gen/model/v1GroupVersionForDiscovery.js.map b/dist/gen/model/v1GroupVersionForDiscovery.js.map
new file mode 100644
index 0000000000..0c92200b45
--- /dev/null
+++ b/dist/gen/model/v1GroupVersionForDiscovery.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"v1GroupVersionForDiscovery.js","sourceRoot":"","sources":["../../../src/gen/model/v1GroupVersionForDiscovery.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAGH;;EAEE;AACF,MAAa,0BAA0B;IAwBnC,MAAM,CAAC,mBAAmB;QACtB,OAAO,0BAA0B,CAAC,gBAAgB,CAAC;IACvD,CAAC;;AAhBM,wCAAa,GAAuB,SAAS,CAAC;AAE9C,2CAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,cAAc;QACtB,UAAU,EAAE,cAAc;QAC1B,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,SAAS;QACjB,UAAU,EAAE,SAAS;QACrB,MAAM,EAAE,QAAQ;KACnB;CAAK,CAAC;AAtBf,gEA2BC"}
\ No newline at end of file
diff --git a/dist/gen/model/v1HTTPGetAction.d.ts b/dist/gen/model/v1HTTPGetAction.d.ts
new file mode 100644
index 0000000000..a22895289e
--- /dev/null
+++ b/dist/gen/model/v1HTTPGetAction.d.ts
@@ -0,0 +1,48 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+import { V1HTTPHeader } from './v1HTTPHeader';
+/**
+* HTTPGetAction describes an action based on HTTP Get requests.
+*/
+export declare class V1HTTPGetAction {
+ /**
+ * Host name to connect to, defaults to the pod IP. You probably want to set \"Host\" in httpHeaders instead.
+ */
+ 'host'?: string;
+ /**
+ * Custom headers to set in the request. HTTP allows repeated headers.
+ */
+ 'httpHeaders'?: Array;
+ /**
+ * Path to access on the HTTP server.
+ */
+ 'path'?: string;
+ /**
+ * Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.
+ */
+ 'port': object;
+ /**
+ * Scheme to use for connecting to the host. Defaults to HTTP.
+ */
+ 'scheme'?: string;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/v1HTTPGetAction.js b/dist/gen/model/v1HTTPGetAction.js
new file mode 100644
index 0000000000..d236b35b71
--- /dev/null
+++ b/dist/gen/model/v1HTTPGetAction.js
@@ -0,0 +1,51 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* HTTPGetAction describes an action based on HTTP Get requests.
+*/
+class V1HTTPGetAction {
+ static getAttributeTypeMap() {
+ return V1HTTPGetAction.attributeTypeMap;
+ }
+}
+V1HTTPGetAction.discriminator = undefined;
+V1HTTPGetAction.attributeTypeMap = [
+ {
+ "name": "host",
+ "baseName": "host",
+ "type": "string"
+ },
+ {
+ "name": "httpHeaders",
+ "baseName": "httpHeaders",
+ "type": "Array"
+ },
+ {
+ "name": "path",
+ "baseName": "path",
+ "type": "string"
+ },
+ {
+ "name": "port",
+ "baseName": "port",
+ "type": "object"
+ },
+ {
+ "name": "scheme",
+ "baseName": "scheme",
+ "type": "string"
+ }
+];
+exports.V1HTTPGetAction = V1HTTPGetAction;
+//# sourceMappingURL=v1HTTPGetAction.js.map
\ No newline at end of file
diff --git a/dist/gen/model/v1HTTPGetAction.js.map b/dist/gen/model/v1HTTPGetAction.js.map
new file mode 100644
index 0000000000..87521804ee
--- /dev/null
+++ b/dist/gen/model/v1HTTPGetAction.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"v1HTTPGetAction.js","sourceRoot":"","sources":["../../../src/gen/model/v1HTTPGetAction.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAIH;;EAEE;AACF,MAAa,eAAe;IAmDxB,MAAM,CAAC,mBAAmB;QACtB,OAAO,eAAe,CAAC,gBAAgB,CAAC;IAC5C,CAAC;;AA/BM,6BAAa,GAAuB,SAAS,CAAC;AAE9C,gCAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,aAAa;QACrB,UAAU,EAAE,aAAa;QACzB,MAAM,EAAE,qBAAqB;KAChC;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,QAAQ;QAChB,UAAU,EAAE,QAAQ;QACpB,MAAM,EAAE,QAAQ;KACnB;CAAK,CAAC;AAjDf,0CAsDC"}
\ No newline at end of file
diff --git a/dist/gen/model/v1HTTPHeader.d.ts b/dist/gen/model/v1HTTPHeader.d.ts
new file mode 100644
index 0000000000..254c466184
--- /dev/null
+++ b/dist/gen/model/v1HTTPHeader.d.ts
@@ -0,0 +1,35 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+/**
+* HTTPHeader describes a custom header to be used in HTTP probes
+*/
+export declare class V1HTTPHeader {
+ /**
+ * The header field name
+ */
+ 'name': string;
+ /**
+ * The header field value
+ */
+ 'value': string;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/v1HTTPHeader.js b/dist/gen/model/v1HTTPHeader.js
new file mode 100644
index 0000000000..158ca6e3ed
--- /dev/null
+++ b/dist/gen/model/v1HTTPHeader.js
@@ -0,0 +1,36 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* HTTPHeader describes a custom header to be used in HTTP probes
+*/
+class V1HTTPHeader {
+ static getAttributeTypeMap() {
+ return V1HTTPHeader.attributeTypeMap;
+ }
+}
+V1HTTPHeader.discriminator = undefined;
+V1HTTPHeader.attributeTypeMap = [
+ {
+ "name": "name",
+ "baseName": "name",
+ "type": "string"
+ },
+ {
+ "name": "value",
+ "baseName": "value",
+ "type": "string"
+ }
+];
+exports.V1HTTPHeader = V1HTTPHeader;
+//# sourceMappingURL=v1HTTPHeader.js.map
\ No newline at end of file
diff --git a/dist/gen/model/v1HTTPHeader.js.map b/dist/gen/model/v1HTTPHeader.js.map
new file mode 100644
index 0000000000..65d1b3ac7c
--- /dev/null
+++ b/dist/gen/model/v1HTTPHeader.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"v1HTTPHeader.js","sourceRoot":"","sources":["../../../src/gen/model/v1HTTPHeader.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAGH;;EAEE;AACF,MAAa,YAAY;IAwBrB,MAAM,CAAC,mBAAmB;QACtB,OAAO,YAAY,CAAC,gBAAgB,CAAC;IACzC,CAAC;;AAhBM,0BAAa,GAAuB,SAAS,CAAC;AAE9C,6BAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,OAAO;QACf,UAAU,EAAE,OAAO;QACnB,MAAM,EAAE,QAAQ;KACnB;CAAK,CAAC;AAtBf,oCA2BC"}
\ No newline at end of file
diff --git a/dist/gen/model/v1Handler.d.ts b/dist/gen/model/v1Handler.d.ts
new file mode 100644
index 0000000000..c3edccb24f
--- /dev/null
+++ b/dist/gen/model/v1Handler.d.ts
@@ -0,0 +1,33 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+import { V1ExecAction } from './v1ExecAction';
+import { V1HTTPGetAction } from './v1HTTPGetAction';
+import { V1TCPSocketAction } from './v1TCPSocketAction';
+/**
+* Handler defines a specific action that should be taken
+*/
+export declare class V1Handler {
+ 'exec'?: V1ExecAction;
+ 'httpGet'?: V1HTTPGetAction;
+ 'tcpSocket'?: V1TCPSocketAction;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/v1Handler.js b/dist/gen/model/v1Handler.js
new file mode 100644
index 0000000000..34140bdf75
--- /dev/null
+++ b/dist/gen/model/v1Handler.js
@@ -0,0 +1,41 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* Handler defines a specific action that should be taken
+*/
+class V1Handler {
+ static getAttributeTypeMap() {
+ return V1Handler.attributeTypeMap;
+ }
+}
+V1Handler.discriminator = undefined;
+V1Handler.attributeTypeMap = [
+ {
+ "name": "exec",
+ "baseName": "exec",
+ "type": "V1ExecAction"
+ },
+ {
+ "name": "httpGet",
+ "baseName": "httpGet",
+ "type": "V1HTTPGetAction"
+ },
+ {
+ "name": "tcpSocket",
+ "baseName": "tcpSocket",
+ "type": "V1TCPSocketAction"
+ }
+];
+exports.V1Handler = V1Handler;
+//# sourceMappingURL=v1Handler.js.map
\ No newline at end of file
diff --git a/dist/gen/model/v1Handler.js.map b/dist/gen/model/v1Handler.js.map
new file mode 100644
index 0000000000..eee56991f5
--- /dev/null
+++ b/dist/gen/model/v1Handler.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"v1Handler.js","sourceRoot":"","sources":["../../../src/gen/model/v1Handler.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAMH;;EAEE;AACF,MAAa,SAAS;IAwBlB,MAAM,CAAC,mBAAmB;QACtB,OAAO,SAAS,CAAC,gBAAgB,CAAC;IACtC,CAAC;;AArBM,uBAAa,GAAuB,SAAS,CAAC;AAE9C,0BAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,cAAc;KACzB;IACD;QACI,MAAM,EAAE,SAAS;QACjB,UAAU,EAAE,SAAS;QACrB,MAAM,EAAE,iBAAiB;KAC5B;IACD;QACI,MAAM,EAAE,WAAW;QACnB,UAAU,EAAE,WAAW;QACvB,MAAM,EAAE,mBAAmB;KAC9B;CAAK,CAAC;AAtBf,8BA2BC"}
\ No newline at end of file
diff --git a/dist/gen/model/v1HorizontalPodAutoscaler.d.ts b/dist/gen/model/v1HorizontalPodAutoscaler.d.ts
new file mode 100644
index 0000000000..cd104cd40b
--- /dev/null
+++ b/dist/gen/model/v1HorizontalPodAutoscaler.d.ts
@@ -0,0 +1,41 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+import { V1HorizontalPodAutoscalerSpec } from './v1HorizontalPodAutoscalerSpec';
+import { V1HorizontalPodAutoscalerStatus } from './v1HorizontalPodAutoscalerStatus';
+import { V1ObjectMeta } from './v1ObjectMeta';
+/**
+* configuration of a horizontal pod autoscaler.
+*/
+export declare class V1HorizontalPodAutoscaler {
+ /**
+ * APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources
+ */
+ 'apiVersion'?: string;
+ /**
+ * Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
+ */
+ 'kind'?: string;
+ 'metadata'?: V1ObjectMeta;
+ 'spec'?: V1HorizontalPodAutoscalerSpec;
+ 'status'?: V1HorizontalPodAutoscalerStatus;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/v1HorizontalPodAutoscaler.js b/dist/gen/model/v1HorizontalPodAutoscaler.js
new file mode 100644
index 0000000000..f0923fb10f
--- /dev/null
+++ b/dist/gen/model/v1HorizontalPodAutoscaler.js
@@ -0,0 +1,51 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* configuration of a horizontal pod autoscaler.
+*/
+class V1HorizontalPodAutoscaler {
+ static getAttributeTypeMap() {
+ return V1HorizontalPodAutoscaler.attributeTypeMap;
+ }
+}
+V1HorizontalPodAutoscaler.discriminator = undefined;
+V1HorizontalPodAutoscaler.attributeTypeMap = [
+ {
+ "name": "apiVersion",
+ "baseName": "apiVersion",
+ "type": "string"
+ },
+ {
+ "name": "kind",
+ "baseName": "kind",
+ "type": "string"
+ },
+ {
+ "name": "metadata",
+ "baseName": "metadata",
+ "type": "V1ObjectMeta"
+ },
+ {
+ "name": "spec",
+ "baseName": "spec",
+ "type": "V1HorizontalPodAutoscalerSpec"
+ },
+ {
+ "name": "status",
+ "baseName": "status",
+ "type": "V1HorizontalPodAutoscalerStatus"
+ }
+];
+exports.V1HorizontalPodAutoscaler = V1HorizontalPodAutoscaler;
+//# sourceMappingURL=v1HorizontalPodAutoscaler.js.map
\ No newline at end of file
diff --git a/dist/gen/model/v1HorizontalPodAutoscaler.js.map b/dist/gen/model/v1HorizontalPodAutoscaler.js.map
new file mode 100644
index 0000000000..9903f7eb24
--- /dev/null
+++ b/dist/gen/model/v1HorizontalPodAutoscaler.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"v1HorizontalPodAutoscaler.js","sourceRoot":"","sources":["../../../src/gen/model/v1HorizontalPodAutoscaler.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAMH;;EAEE;AACF,MAAa,yBAAyB;IA0ClC,MAAM,CAAC,mBAAmB;QACtB,OAAO,yBAAyB,CAAC,gBAAgB,CAAC;IACtD,CAAC;;AA/BM,uCAAa,GAAuB,SAAS,CAAC;AAE9C,0CAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,YAAY;QACpB,UAAU,EAAE,YAAY;QACxB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,UAAU;QAClB,UAAU,EAAE,UAAU;QACtB,MAAM,EAAE,cAAc;KACzB;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,+BAA+B;KAC1C;IACD;QACI,MAAM,EAAE,QAAQ;QAChB,UAAU,EAAE,QAAQ;QACpB,MAAM,EAAE,iCAAiC;KAC5C;CAAK,CAAC;AAxCf,8DA6CC"}
\ No newline at end of file
diff --git a/dist/gen/model/v1HorizontalPodAutoscalerList.d.ts b/dist/gen/model/v1HorizontalPodAutoscalerList.d.ts
new file mode 100644
index 0000000000..cd8083ce18
--- /dev/null
+++ b/dist/gen/model/v1HorizontalPodAutoscalerList.d.ts
@@ -0,0 +1,42 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+import { V1HorizontalPodAutoscaler } from './v1HorizontalPodAutoscaler';
+import { V1ListMeta } from './v1ListMeta';
+/**
+* list of horizontal pod autoscaler objects.
+*/
+export declare class V1HorizontalPodAutoscalerList {
+ /**
+ * APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources
+ */
+ 'apiVersion'?: string;
+ /**
+ * list of horizontal pod autoscaler objects.
+ */
+ 'items': Array;
+ /**
+ * Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
+ */
+ 'kind'?: string;
+ 'metadata'?: V1ListMeta;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/v1HorizontalPodAutoscalerList.js b/dist/gen/model/v1HorizontalPodAutoscalerList.js
new file mode 100644
index 0000000000..654d01ac80
--- /dev/null
+++ b/dist/gen/model/v1HorizontalPodAutoscalerList.js
@@ -0,0 +1,46 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* list of horizontal pod autoscaler objects.
+*/
+class V1HorizontalPodAutoscalerList {
+ static getAttributeTypeMap() {
+ return V1HorizontalPodAutoscalerList.attributeTypeMap;
+ }
+}
+V1HorizontalPodAutoscalerList.discriminator = undefined;
+V1HorizontalPodAutoscalerList.attributeTypeMap = [
+ {
+ "name": "apiVersion",
+ "baseName": "apiVersion",
+ "type": "string"
+ },
+ {
+ "name": "items",
+ "baseName": "items",
+ "type": "Array"
+ },
+ {
+ "name": "kind",
+ "baseName": "kind",
+ "type": "string"
+ },
+ {
+ "name": "metadata",
+ "baseName": "metadata",
+ "type": "V1ListMeta"
+ }
+];
+exports.V1HorizontalPodAutoscalerList = V1HorizontalPodAutoscalerList;
+//# sourceMappingURL=v1HorizontalPodAutoscalerList.js.map
\ No newline at end of file
diff --git a/dist/gen/model/v1HorizontalPodAutoscalerList.js.map b/dist/gen/model/v1HorizontalPodAutoscalerList.js.map
new file mode 100644
index 0000000000..a27660b373
--- /dev/null
+++ b/dist/gen/model/v1HorizontalPodAutoscalerList.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"v1HorizontalPodAutoscalerList.js","sourceRoot":"","sources":["../../../src/gen/model/v1HorizontalPodAutoscalerList.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAKH;;EAEE;AACF,MAAa,6BAA6B;IAuCtC,MAAM,CAAC,mBAAmB;QACtB,OAAO,6BAA6B,CAAC,gBAAgB,CAAC;IAC1D,CAAC;;AA1BM,2CAAa,GAAuB,SAAS,CAAC;AAE9C,8CAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,YAAY;QACpB,UAAU,EAAE,YAAY;QACxB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,OAAO;QACf,UAAU,EAAE,OAAO;QACnB,MAAM,EAAE,kCAAkC;KAC7C;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,UAAU;QAClB,UAAU,EAAE,UAAU;QACtB,MAAM,EAAE,YAAY;KACvB;CAAK,CAAC;AArCf,sEA0CC"}
\ No newline at end of file
diff --git a/dist/gen/model/v1HorizontalPodAutoscalerSpec.d.ts b/dist/gen/model/v1HorizontalPodAutoscalerSpec.d.ts
new file mode 100644
index 0000000000..e8093dab38
--- /dev/null
+++ b/dist/gen/model/v1HorizontalPodAutoscalerSpec.d.ts
@@ -0,0 +1,41 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+import { V1CrossVersionObjectReference } from './v1CrossVersionObjectReference';
+/**
+* specification of a horizontal pod autoscaler.
+*/
+export declare class V1HorizontalPodAutoscalerSpec {
+ /**
+ * upper limit for the number of pods that can be set by the autoscaler; cannot be smaller than MinReplicas.
+ */
+ 'maxReplicas': number;
+ /**
+ * lower limit for the number of pods that can be set by the autoscaler, default 1.
+ */
+ 'minReplicas'?: number;
+ 'scaleTargetRef': V1CrossVersionObjectReference;
+ /**
+ * target average CPU utilization (represented as a percentage of requested CPU) over all the pods; if not specified the default autoscaling policy will be used.
+ */
+ 'targetCPUUtilizationPercentage'?: number;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/v1HorizontalPodAutoscalerSpec.js b/dist/gen/model/v1HorizontalPodAutoscalerSpec.js
new file mode 100644
index 0000000000..ecfd45eb38
--- /dev/null
+++ b/dist/gen/model/v1HorizontalPodAutoscalerSpec.js
@@ -0,0 +1,46 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* specification of a horizontal pod autoscaler.
+*/
+class V1HorizontalPodAutoscalerSpec {
+ static getAttributeTypeMap() {
+ return V1HorizontalPodAutoscalerSpec.attributeTypeMap;
+ }
+}
+V1HorizontalPodAutoscalerSpec.discriminator = undefined;
+V1HorizontalPodAutoscalerSpec.attributeTypeMap = [
+ {
+ "name": "maxReplicas",
+ "baseName": "maxReplicas",
+ "type": "number"
+ },
+ {
+ "name": "minReplicas",
+ "baseName": "minReplicas",
+ "type": "number"
+ },
+ {
+ "name": "scaleTargetRef",
+ "baseName": "scaleTargetRef",
+ "type": "V1CrossVersionObjectReference"
+ },
+ {
+ "name": "targetCPUUtilizationPercentage",
+ "baseName": "targetCPUUtilizationPercentage",
+ "type": "number"
+ }
+];
+exports.V1HorizontalPodAutoscalerSpec = V1HorizontalPodAutoscalerSpec;
+//# sourceMappingURL=v1HorizontalPodAutoscalerSpec.js.map
\ No newline at end of file
diff --git a/dist/gen/model/v1HorizontalPodAutoscalerSpec.js.map b/dist/gen/model/v1HorizontalPodAutoscalerSpec.js.map
new file mode 100644
index 0000000000..712f42fb63
--- /dev/null
+++ b/dist/gen/model/v1HorizontalPodAutoscalerSpec.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"v1HorizontalPodAutoscalerSpec.js","sourceRoot":"","sources":["../../../src/gen/model/v1HorizontalPodAutoscalerSpec.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAIH;;EAEE;AACF,MAAa,6BAA6B;IAuCtC,MAAM,CAAC,mBAAmB;QACtB,OAAO,6BAA6B,CAAC,gBAAgB,CAAC;IAC1D,CAAC;;AA1BM,2CAAa,GAAuB,SAAS,CAAC;AAE9C,8CAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,aAAa;QACrB,UAAU,EAAE,aAAa;QACzB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,aAAa;QACrB,UAAU,EAAE,aAAa;QACzB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,gBAAgB;QACxB,UAAU,EAAE,gBAAgB;QAC5B,MAAM,EAAE,+BAA+B;KAC1C;IACD;QACI,MAAM,EAAE,gCAAgC;QACxC,UAAU,EAAE,gCAAgC;QAC5C,MAAM,EAAE,QAAQ;KACnB;CAAK,CAAC;AArCf,sEA0CC"}
\ No newline at end of file
diff --git a/dist/gen/model/v1HorizontalPodAutoscalerStatus.d.ts b/dist/gen/model/v1HorizontalPodAutoscalerStatus.d.ts
new file mode 100644
index 0000000000..2b21708242
--- /dev/null
+++ b/dist/gen/model/v1HorizontalPodAutoscalerStatus.d.ts
@@ -0,0 +1,47 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+/**
+* current status of a horizontal pod autoscaler
+*/
+export declare class V1HorizontalPodAutoscalerStatus {
+ /**
+ * current average CPU utilization over all pods, represented as a percentage of requested CPU, e.g. 70 means that an average pod is using now 70% of its requested CPU.
+ */
+ 'currentCPUUtilizationPercentage'?: number;
+ /**
+ * current number of replicas of pods managed by this autoscaler.
+ */
+ 'currentReplicas': number;
+ /**
+ * desired number of replicas of pods managed by this autoscaler.
+ */
+ 'desiredReplicas': number;
+ /**
+ * last time the HorizontalPodAutoscaler scaled the number of pods; used by the autoscaler to control how often the number of pods is changed.
+ */
+ 'lastScaleTime'?: Date;
+ /**
+ * most recent generation observed by this autoscaler.
+ */
+ 'observedGeneration'?: number;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/v1HorizontalPodAutoscalerStatus.js b/dist/gen/model/v1HorizontalPodAutoscalerStatus.js
new file mode 100644
index 0000000000..1d27d45baf
--- /dev/null
+++ b/dist/gen/model/v1HorizontalPodAutoscalerStatus.js
@@ -0,0 +1,51 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* current status of a horizontal pod autoscaler
+*/
+class V1HorizontalPodAutoscalerStatus {
+ static getAttributeTypeMap() {
+ return V1HorizontalPodAutoscalerStatus.attributeTypeMap;
+ }
+}
+V1HorizontalPodAutoscalerStatus.discriminator = undefined;
+V1HorizontalPodAutoscalerStatus.attributeTypeMap = [
+ {
+ "name": "currentCPUUtilizationPercentage",
+ "baseName": "currentCPUUtilizationPercentage",
+ "type": "number"
+ },
+ {
+ "name": "currentReplicas",
+ "baseName": "currentReplicas",
+ "type": "number"
+ },
+ {
+ "name": "desiredReplicas",
+ "baseName": "desiredReplicas",
+ "type": "number"
+ },
+ {
+ "name": "lastScaleTime",
+ "baseName": "lastScaleTime",
+ "type": "Date"
+ },
+ {
+ "name": "observedGeneration",
+ "baseName": "observedGeneration",
+ "type": "number"
+ }
+];
+exports.V1HorizontalPodAutoscalerStatus = V1HorizontalPodAutoscalerStatus;
+//# sourceMappingURL=v1HorizontalPodAutoscalerStatus.js.map
\ No newline at end of file
diff --git a/dist/gen/model/v1HorizontalPodAutoscalerStatus.js.map b/dist/gen/model/v1HorizontalPodAutoscalerStatus.js.map
new file mode 100644
index 0000000000..90bc97a14f
--- /dev/null
+++ b/dist/gen/model/v1HorizontalPodAutoscalerStatus.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"v1HorizontalPodAutoscalerStatus.js","sourceRoot":"","sources":["../../../src/gen/model/v1HorizontalPodAutoscalerStatus.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;AAGH;;EAEE;AACF,MAAa,+BAA+B;IAmDxC,MAAM,CAAC,mBAAmB;QACtB,OAAO,+BAA+B,CAAC,gBAAgB,CAAC;IAC5D,CAAC;;AA/BM,6CAAa,GAAuB,SAAS,CAAC;AAE9C,gDAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,iCAAiC;QACzC,UAAU,EAAE,iCAAiC;QAC7C,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,iBAAiB;QACzB,UAAU,EAAE,iBAAiB;QAC7B,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,iBAAiB;QACzB,UAAU,EAAE,iBAAiB;QAC7B,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,eAAe;QACvB,UAAU,EAAE,eAAe;QAC3B,MAAM,EAAE,MAAM;KACjB;IACD;QACI,MAAM,EAAE,oBAAoB;QAC5B,UAAU,EAAE,oBAAoB;QAChC,MAAM,EAAE,QAAQ;KACnB;CAAK,CAAC;AAjDf,0EAsDC"}
\ No newline at end of file
diff --git a/dist/gen/model/v1HostAlias.d.ts b/dist/gen/model/v1HostAlias.d.ts
new file mode 100644
index 0000000000..fccde4cc50
--- /dev/null
+++ b/dist/gen/model/v1HostAlias.d.ts
@@ -0,0 +1,35 @@
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+/**
+* HostAlias holds the mapping between IP and hostnames that will be injected as an entry in the pod\'s hosts file.
+*/
+export declare class V1HostAlias {
+ /**
+ * Hostnames for the above IP address.
+ */
+ 'hostnames'?: Array;
+ /**
+ * IP address of the host file entry.
+ */
+ 'ip'?: string;
+ static discriminator: string | undefined;
+ static attributeTypeMap: Array<{
+ name: string;
+ baseName: string;
+ type: string;
+ }>;
+ static getAttributeTypeMap(): {
+ name: string;
+ baseName: string;
+ type: string;
+ }[];
+}
diff --git a/dist/gen/model/v1HostAlias.js b/dist/gen/model/v1HostAlias.js
new file mode 100644
index 0000000000..e782ef91e6
--- /dev/null
+++ b/dist/gen/model/v1HostAlias.js
@@ -0,0 +1,36 @@
+"use strict";
+/**
+ * Kubernetes
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: v1.15.5
+ *
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+/**
+* HostAlias holds the mapping between IP and hostnames that will be injected as an entry in the pod\'s hosts file.
+*/
+class V1HostAlias {
+ static getAttributeTypeMap() {
+ return V1HostAlias.attributeTypeMap;
+ }
+}
+V1HostAlias.discriminator = undefined;
+V1HostAlias.attributeTypeMap = [
+ {
+ "name": "hostnames",
+ "baseName": "hostnames",
+ "type": "Array